/*==================================================
                    HERO SECTION
==================================================*/

.hero-section {
    position: relative;
    overflow: hidden;
}

/* Swiper */

.heroSwiper {
    width: 100%;
}

.heroSwiper .swiper-slide {
    overflow: hidden;
}

/*==================================================
                HERO BACKGROUND
==================================================*/

.hero-bg {

    min-height: 650px;

    display: flex;

    align-items: flex-start;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    position: relative;

    padding-top: 60px;

    padding-bottom: 90px;
}

/* white overlay on left */

.hero-bg::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .95) 30%,
            rgba(255, 255, 255, .70) 45%,
            rgba(255, 255, 255, 0) 62%);
}

/*==================================================
                LAYOUT
==================================================*/

.hero-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-radius: 35px;
}

/*==================================================
            CONTENT CARD
==================================================*/

.hero-content {
    position: relative;
    z-index: 3;
    width: 48%;
    max-width: 640px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/*==================================================
                CONTENT
==================================================*/

.hero-title {

    font-family: 'Playfair Display', serif;

    font-size: 57px;
    line-height: 1.08;
    color: #1B3A6B;
    margin: 0 0 14px 0;
}

.hero-highlight {
    display: block;
    color: #F5A623;
    min-height: 1.1em;
    letter-spacing: normal;
    font-style: italic;
}

.hero-highlight .char {
    display: inline-block;
    opacity: 0;
    margin: 0;
    padding: 0;
    transform: translateY(10px) scale(0.88);
    transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.swiper-slide-active .hero-highlight .char {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(0.35s + var(--char-index) * 0.11s);
}

.swiper-slide:not(.swiper-slide-active) .hero-highlight .char {
    opacity: 0;
    transform: translateY(10px) scale(0.88);
    transition: none;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px; /* Increased to give more space between title and paragraph */
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px; /* Increased to push buttons/badges down */
}

/*==================================================
                BUTTONS
==================================================*/
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
    height: 58px;
    padding: 0 34px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1655c5;
    color: #fff;
}

.btn-primary:hover {
    background: #1245a3;
    transform: translateY(-2px);
}

/* Shine Effect */
.btn-primary::before,
.why-choose-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 1.6s ease-in-out;
    z-index: 1;
}

.btn-primary:hover::before,
.why-choose-btn:hover::before {
    left: 150%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #1655c5;
    color: #1655c5;
}

.btn-secondary:hover {
    background: #1655c5;
    color: #fff;
}

.show-on-mobile {
    display: none !important;
}

/*==================================================
                    BADGES
==================================================*/
.hero-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 0;
    flex-wrap: nowrap;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.hero-badge i {
    font-size: 18px;
    color: #F5A623;
}

.hero-badge span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.badge-divider {
    font-size: 20px;
    color: #B5B5B5;
    font-weight: 300;
    line-height: 1;
}

/*==================================================
            EXPERIENCE CARD
==================================================*/
.experience-badge {
    position: absolute;
    top: -20px;
    left: 45%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 20;
    animation: floatBadge 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBadge {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/*==================================================
                SWIPER
==================================================*/
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    color: #016002;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.heroSwiper .swiper-pagination {
    bottom: 25px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #016002;
}

/*==================================================
                ANIMATION
==================================================*/
.swiper-slide-active .hero-content-card {
    animation: slideLeft .8s ease;
}

.swiper-slide-active .experience-card {
    animation: fadeUp .8s ease;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=================
Floating heightlight bar
================*/

.hero-highlights {
    position: relative;
    margin-top: -25px;
    z-index: 30;
}

.highlight-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.highlight-item i {
    font-size: 32px;
    color: #F5A623;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1B3A6B;
}

.highlight-item p {
    color: #1B3A6B;
    font-size: 15px;
}

.divider {
    width: 2px;
    height: 65px;
    background: #ececec;
    margin: 0 24px; /* Added margin to give space between divider and adjacent elements */
}

/*==================================================
        FEATURED CATEGORIES
==================================================*/

.featured-categories {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.featured-categories::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: #0D3D68;
    opacity: .04;
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(80px);
}

.featured-categories::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #F5A623;
    opacity: .06;
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
    filter: blur(80px);
}

/*==========================
        Heading
===========================*/

.featured-categories .fea-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.featured-categories .fea-section-heading h2 {
    font-size: 44px;
    margin: 8px 0;
    color: #1B3A6B;
}

.featured-categories .fea-section-heading h2 span {
    color: #F5A623;
    font-weight: 600;
    font-style: italic;
}

.featured-categories .fea-section-heading p {
    color: #666;
    font-size: 17px;
}

/*==========================
        ROW
===========================*/

.category-row {

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    z-index: 2;

}

/*==========================
        CARD
===========================*/

.category-card {

    width: 260px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    transition: .45s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

/*==========================
      Zig Zag Effect
===========================*/
.category-card.up {
    margin-top: 0;
}

.category-card.down {
    margin-top: 70px;
}

/*==========================
        IMAGE
===========================*/

.category-image {
    height: 210px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.category-card:hover img {
    transform: scale(1.08);
}

/*==========================
        ICON
===========================*/
.category-icon {
    width: 72px;
    height: 72px;
    background: #0D3D68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 175px;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(13, 61, 104, .25);
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-icon i {
    font-size: 26px;
    color: #ffffff;
    line-height: 1;
}

.category-icon img {
    width: 34px;
}

.category-card:hover .category-icon {
    transform: translateX(-50%) scale(1.08);
}

/*==========================
      CONTENT
===========================*/

.category-content {
    text-align: center;
    padding: 55px 25px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1B3A6B;
    line-height: 1.2;
}

.category-content p {
    font-size: 15px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 25px;
}

/*==========================
        BUTTON
===========================*/

.category-content a {

    color: #3B82C4;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .35s;
    margin-top: auto;

}

.category-content a:hover {

    gap: 15px;
    color: #F5A623;

}

/*==========================
      Hover Border
===========================*/

.category-card::after {

    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 24px;
    transition: .4s;
    pointer-events: none;
    /* Prevents pseudo-element from blocking clicks */

}

.category-card:hover::after {

    border-color: #F5A623;

}

/*==========================
        Responsive
===========================*/

@media(max-width:1200px) {

    .category-row {

        flex-wrap: wrap;

    }

    .category-card {

        width: 300px;

    }

    .category-card.down {

        margin-top: 0;

    }

}

@media (max-width: 768px) {

    /* Product Categories Mobile Grid */
    .category-row {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
    }

    .category-card {
        width: calc(50% - 8px);
        /* 2 columns with 15px gap */
    }

    .category-card.up,
    .category-card.down {
        margin-top: 0;
    }

    .category-content {
        padding: 40px 10px 20px;
    }

    .category-content h3 {
        font-size: 16px;
    }

    .category-content p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .category-content a {
        font-size: 13px;
    }

    .category-image {
        height: 120px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        top: 95px;
    }

    .category-icon i {
        font-size: 18px;
    }
}


/*=====================================
        PRODUCT SHOWCASE
======================================*/

.product-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f7f9fc 100%);
    /*background:
        linear-gradient(
            120deg,
            #1B3A6B 0%,
            #1B3A6B 18%,
            #f8fbff 38%,
            #ffffff 65%,
            #fff8e9 82%,
            #F5A623 100%
        );*/
    position: relative;
    overflow: hidden;
}

/* Decorative Background */

.product-showcase::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #0D3D68;
    opacity: .05;
    border-radius: 50%;
    top: -180px;
    left: -180px;
    filter: blur(60px);
}

.product-showcase::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #F5A623;
    opacity: .08;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    filter: blur(60px);
}

/*==========================
      SECTION HEADING
==========================*/

.pdt-section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/*.pdt-section-heading span{
    color:#1B3A6B;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}*/

.pdt-section-heading h2 {
    font-size: 44px;
    margin: 15px 0;
    color: #1B3A6B;
    font-weight: 700;
}

.pdt-section-heading h2 span {
    color: #F5A623;
    font-weight: 600;
    font-style: italic;
}

.pdt-section-heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/*==========================
      GRID
==========================*/

.showcase-grid {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    grid-template-rows: 320px 320px 360px;

    gap: 28px;

    position: relative;

    z-index: 2;

}

/*==========================
      CARD
==========================*/

.showcase-card {

    /*background:#fff;*/
    background: rgba(244, 244, 244, 0.96);
    border-radius: 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    overflow: hidden;

    padding: 40px;

    position: relative;
    /*border:1px solid rgba(27,58,107,.08);*/
    box-shadow: 0 15px 40px rgba(27, 58, 107, .2);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.showcase-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #1B3A6B,
            #F5A623);

    opacity: .9;
}

.showcase-card:hover {
    /*
    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.12);
*/
    transform: translateY(-8px);

    border-color: rgba(245, 166, 35, .45);

    box-shadow:
        0 25px 55px rgba(27, 58, 107, .16);
}

/*==========================
      GRID POSITION
==========================*/

.storage {

    grid-column: 1;

    grid-row: 1 / span 2;

}

.classroom {

    grid-column: 2;

    grid-row: 1;

}

.hostel {

    grid-column: 2;

    grid-row: 2;

}

.hospital {

    grid-column: 1 / span 2;

    grid-row: 3;

}

/*==========================
      SMALL CARD PADDING
==========================*/

.classroom,
.hostel {

    padding: 28px 35px;

}

.hospital {

    padding: 35px 40px;

}

/*==========================
      CONTENT AREA
==========================*/

.showcase-content {

    width: 42%;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    position: relative;

    z-index: 2;

}

.item-count {

    color: #F5A623;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 12px;

    flex-shrink: 0;

}

.showcase-content h3 {

    font-size: 35px;

    line-height: 1.1;

    color: #111;

    margin-bottom: 14px;

    flex-shrink: 0;

}

.showcase-content p {

    color: #666;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 18px;

    flex-shrink: 0;

}

/*==========================
      PRODUCT LIST
==========================*/

.product-list {

    list-style: none;

    flex: 1;

    margin: 0;

    padding: 0 8px 0 0;

    position: relative;

    overflow-y: auto;

    overflow-x: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    -ms-overflow-style: none;

}

/* Hide scrollbar by default */

.product-list::-webkit-scrollbar {

    width: 0;

}

/* Storage */

.storage .product-list {

    height: auto;

    overflow: visible;

    padding-right: 0;

}

/* Classroom */

.classroom .product-list {

    height: 110px;

}

/* Hostel */

.hostel .product-list {

    height: 165px;

}

/* Hospital */

.hospital .product-list {

    height: 220px;

}

/*==========================
      LIST ITEM
==========================*/

.product-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 55px;

    padding: 12px 0;

    font-size: 13px;

    line-height: 1.35;

    color: #333;

    cursor: pointer;

    transition: all .35s ease;

    position: relative;

    animation: slideFade .35s ease;

}

/* Bullet */

.product-list li::before {

    content: "";

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #D5DCE3;

    flex-shrink: 0;

    transition: .35s;

}

/* Hover */

.product-list li:hover {

    color: #0D3D68;

    transform: translateX(8px);

}

.product-list li:hover::before {

    background: #0D3D68;

}

/* Active */

.product-list li.active {

    color: #0D3D68;

    font-weight: 700;

}

.product-list li.active::before {

    width: 12px;

    height: 12px;

    background: #F5A623;

}

/*==========================
 STORAGE SHOW ALL
==========================*/

.storage .product-list li {

    display: flex;

}

/*==========================
 Hover Scrollbar
==========================*/

.classroom .product-list:hover,

.hostel .product-list:hover,

.hospital .product-list:hover {

    scrollbar-width: thin;

    scrollbar-color: #0D3D68 #F4F6F8;

}

.classroom .product-list:hover::-webkit-scrollbar,

.hostel .product-list:hover::-webkit-scrollbar,

.hospital .product-list:hover::-webkit-scrollbar {

    width: 6px;

}

.classroom .product-list:hover::-webkit-scrollbar-thumb,

.hostel .product-list:hover::-webkit-scrollbar-thumb,

.hospital .product-list:hover::-webkit-scrollbar-thumb {

    background: #0D3D68;

    border-radius: 30px;

}

.classroom .product-list:hover::-webkit-scrollbar-track,

.hostel .product-list:hover::-webkit-scrollbar-track,

.hospital .product-list:hover::-webkit-scrollbar-track {

    background: #F4F6F8;

}

/*==========================
 Prevent Layout Jump
==========================*/

.showcase-content {

    overflow: hidden;

}

.product-list {

    will-change: scroll-position;

}

/*==========================
 Smooth Animation
==========================*/

@keyframes slideFade {

    from {

        opacity: 0;

        transform: translateY(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================
ANIMATIONS
==================================*/

@keyframes slideFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==================================
IMAGE AREA
==================================*/

.showcase-image {

    width: 60%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    position: relative;

    flex-shrink: 0;

}

.showcase-image img {

    width: 115%;
    max-width: 650px;
    max-height: 95%;

    object-fit: contain;

    transition:
        opacity .35s ease,
        transform .45s ease;

    opacity: 1;

}

.showcase-image img.change {

    opacity: 0;
    transform: scale(.96);

}

.showcase-card:hover .showcase-image img {

    transform: scale(1.04);

}

/*==================================
STORAGE IMAGE
==================================*/

.storage .showcase-image {

    width: 58%;
    height: 100%;

    align-items: flex-end;
    justify-content: center;

}

.storage .showcase-image img {

    width: auto;
    height: 125%;

    max-width: none;
    object-fit: contain;

}

/*==================================
CLASSROOM IMAGE
==================================*/

.classroom {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 35px;

}

.classroom .showcase-image {

    width: 58%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: scale(1.15);

}

.classroom .showcase-image img {

    width: 130%;
    height: 130%;

    max-width: none;
    object-fit: contain;

}

/*==================================
HOSTEL IMAGE
==================================*/

.hostel {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 35px;

}

.hostel .showcase-image {

    width: 58%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: scale(1.15);

}

.hostel .showcase-image img {

    width: 130%;
    height: 130%;

    max-width: none;
    object-fit: contain;

}

/*==================================
HOSPITAL IMAGE
==================================*/

.hospital .showcase-image {

    width: 60%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    transform: scale(1.20);
}

.hospital .showcase-image img {

    width: 260%;
    height: 220%;

    max-width: none;

    object-fit: contain;

    transition:
        opacity .35s ease,
        transform .45s ease;
}

/*==================================
STOP LAYOUT SHIFT
VERY IMPORTANT
==================================*/

.storage,
.classroom,
.hostel,
.hospital {

    min-height: 100%;

}

.showcase-content {

    overflow: hidden;

}

.showcase-image {

    overflow: hidden;

}

/*==================================
OPTIONAL HOVER
==================================*/

.showcase-card {

    will-change: transform;

}

.showcase-image img {

    will-change: transform, opacity;

}


/* =====================================================
   OUR MANUFACTURING PROCESS
===================================================== */
.manufacturing-process {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

.manufacturing-process .container {
    width: min(1250px, 92%);
    margin: 0 auto;
}

/* =====================================================
   SECTION HEADER
===================================================== */
.process-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.process-eyebrow {
    display: block;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1B3A6B;
}

.process-header h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    color: #1B3A6B;
}

.process-header h2 span {
    color: #F5A623;
    font-style: italic;
}

.process-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 25px auto;
}

.process-header-line span {
    width: 50px;
    height: 2px;
    background: #F5A623;
}

.process-header-line i {
    color: #F5A623;
    font-size: 20px;
}

.process-header p {
    max-width: 680px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #4d5863;
}

/* ===================
   PROCESS TIMELINE
======================*/
.process-timeline {

    position: relative;

}

/* =====================================================
   PROCESS ITEM
===================================================== */
.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 130px;
    align-items: center;
    min-height: auto;
    margin-bottom: 45px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item::before {
    content: "";
    position: absolute;
    top: calc(50% + 29px);
    left: 50%;
    width: 2px;
    height: 50px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            #1B3A6B 0%,
            rgba(27, 58, 107, 0.75) 35%,
            rgba(27, 58, 107, 0.35) 70%,
            rgba(27, 58, 107, 0) 100%);
}

.process-item:last-child::before {
    display: none;
}

/* =====================================================
   LEFT IMAGE / RIGHT CONTENT
===================================================== */
.process-item-left .process-media {
    grid-column: 1;
    grid-row: 1;
}

.process-item-left .process-content {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    padding-left: 35px;
}

/* =================================
   RIGHT IMAGE / LEFT CONTENT
====================================*/
.process-item-right .process-media {
    grid-column: 2;
    grid-row: 1;
}

.process-item-right .process-content {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    padding-right: 35px;
}

/* =====================================================
   PROCESS IMAGE
===================================================== */
.process-media {
    position: relative;
    height: 370px;
    overflow: hidden;
    border-radius: 0 75px 0 75px;
    box-shadow:
        0 15px 35px rgba(27, 58, 107, 0.12);
}

/* Alternating image shape */
.process-item-right .process-media {
    border-radius: 75px 0 75px 0;
}

.process-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s ease;
}

.process-media:hover img {
    transform: scale(1.06);
}

/* =====================================================
   PROCESS CONTENT
===================================================== */
.process-content {
    max-width: 480px;
}

.process-item-left .process-content {
    justify-self: start;
}

.process-item-right .process-content {
    justify-self: end;
}

.process-content h3 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #1B3A6B;
}

.process-green-line {
    width: 42px;
    height: 3px;
    margin: 14px 0 20px;
    background: #F5A623;
}

.process-content p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4d5863;
}

/* =====================================================
   CENTER PROCESS NODe
===================================================== */
.process-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #1B3A6B;
    border: 4px solid #ffffff;
    box-shadow:
        0 5px 20px rgba(27, 58, 107, 0.15);
}

.process-node::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1B3A6B;
}

.process-node i {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 20px;
}

/* Small gold accent */
.process-node::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F5A623;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */
.process-item {
    opacity: 0;
    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LEFT SIDE ENTERS FROM LEFT */
.process-item-left {
    transform: translateX(-120px);
}

/* RIGHT SIDE ENTERS FROM RIGHT */
.process-item-right {
    transform: translateX(120px);
}

/* ACTIVE */
.process-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 767px) {
    .manufacturing-process {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-header h2 {
        font-size: 38px;
    }

    .process-timeline {
        padding-left: 35px;
        padding-right: 35px;
    }

    /* Ensure the fading line starts directly below the content and stays in the middle */
    .process-item::before {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .process-content h3 {
        font-size: 23px;
    }

    .process-item {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
        min-height: auto;
        margin-bottom: 45px;
    }

    .process-item-left .process-media,
    .process-item-right .process-media {
        order: 1;
    }

    .process-item-left .process-content,
    .process-item-right .process-content {
        order: 2;
        justify-self: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .process-media {
        height: 240px;
        border-radius: 0 40px 0 40px;
    }

    .process-item-right .process-media {
        border-radius: 40px 0 40px 0;
    }

    /* Hide desktop center nodes */
    .process-node {
        left: -23px;
        top: 0;
        transform: none;
        width: 48px;
        height: 48px;
    }

    .process-node::before {
        width: 34px;
        height: 34px;
    }

    .process-node i {
        font-size: 15px;
    }

    /* Mobile animation */
    .process-item-left,
    .process-item-right {
        transform: translateY(70px);
    }

    .process-item.show {

        transform: translateY(0);
    }
}



/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-choose-section {

    padding: 40px 0;
    background: #ffffff;
}

/*.why-choose-section .container {
    width: min(1400px, 92%);
    margin: 0 auto;
}*/
/* =====================================================
   MAIN GRID
===================================================== */

.why-choose-grid {
    display: grid;
    grid-template-columns:
        1.1fr 1.5fr 1.1fr;

    gap: 0;
    align-items: stretch;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 10px 35px rgba(27, 58, 107, 0.2);
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.why-choose-content {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-content .section-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
}

.why-choose-content h2 {
    margin: 2px 0 25px;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.1;
    color: #1B3A6B;
}



/* =====================================================
   LIST
==================================================== */

.why-choose-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #293746;
}

.why-choose-list li i {
    flex-shrink: 0;
    font-size: 17px;
    color: #F5A623 !important;
}

/* =====================================================
   BUTTON
===================================================== */
.why-choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    margin-top: 18px;
    padding: 14px 22px;
    border-radius: 50px;
    background: #1655c5;
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-btn span {
    font-size: 20px;
    line-height: 1;
}

.why-choose-btn:hover {
    background: #1245a3;
}

/* =====================================================
   CENTER IMAGE
===================================================== */
.why-choose-image {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 16px; /* Added slight curve */
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-choose-image:hover img {
    transform: scale(1.04);
}

/* =====================================================
   RIGHT STATS
===================================================== */
.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #ffffff;
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-align: center;
    border-bottom: 1px solid #e5ebf2;
}

.why-stat:nth-child(odd) {
    border-right: 1px solid #e5ebf2;
}

.why-stat:nth-child(3),
.why-stat:nth-child(4) {
    border-bottom: none;
}

/* =====================================================
   STAT ICON
===================================================== */
.why-stat-icon {
    margin-bottom: 8px;
}

.why-stat-icon i {
    font-size: 27px;
    color: #1655c5;
}

/* =====================================================
   STAT NUMBER
===================================================== */
.why-stat strong {
    font-family: "Inter", sans-serif;
    font-size: 46px;
    /* Increased font size */
    line-height: 1.2;
    font-weight: 800;
    /* Made slightly bolder */
    color: #1655c5;
}

.why-stat span {
    margin-top: 5px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #34527a;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
    .why-choose-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .why-choose-content {
        padding: 40px;
    }

    .why-choose-image {
        min-height: 400px;
    }

    .why-choose-stats {
        grid-column: span 2;
        min-height: 250px;
    }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        display: flex;
        flex-direction: column;
        border-radius: 15px;
    }

    .why-choose-content {
        padding: 35px 25px;
    }

    .why-choose-content h2 {
        font-size: 36px;
    }

    .why-choose-image {
        min-height: 300px;
        order: 2;
    }

    .why-choose-stats {
        order: 3;
        min-height: auto;
    }

    .why-stat {
        min-height: 170px;
    }
}



/* =====================================================
   GLOBAL SCROLL REVEAL ANIMATIONS
===================================================== */

/* Common initial state */

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-down,
.reveal-scale {

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    will-change: opacity, transform;

}


/* =========================
   FROM LEFT
========================= */

.reveal-left {

    transform: translateX(-80px);

}


/* =========================
   FROM RIGHT
========================= */

.reveal-right {

    transform: translateX(80px);

}


/* =========================
   FROM BOTTOM
========================= */

.reveal-up {

    transform: translateY(70px);

}


/* =========================
   FROM TOP
========================= */

.reveal-down {

    transform: translateY(-70px);

}


/* =========================
   SCALE + FADE
========================= */

.reveal-scale {

    transform: scale(0.92);

}


/* =========================
   ACTIVE STATE
========================= */

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-down.active,
.reveal-scale.active {

    opacity: 1;

    transform: translate(0) scale(1);

}


/* =====================================================
   OPTIONAL DELAYS
===================================================== */

.reveal-delay-1 {

    transition-delay: 0.1s;

}

.reveal-delay-2 {

    transition-delay: 0.2s;

}

.reveal-delay-3 {

    transition-delay: 0.3s;

}

.reveal-delay-4 {

    transition-delay: 0.4s;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {

        transform: translateY(50px);

    }

    .reveal-left.active,
    .reveal-right.active {

        transform: translateY(0);

    }

}


/* =========================================================
   TRUSTED CLIENTS SECTION
========================================================= */

.trusted-clients-section {

    width: 100%;

    padding: 40px 0 35px;
    /* Decreased gap from top and bottom */

    background: #f7f9fc;

    overflow: hidden;

}

.trusted-clients-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.trusted-clients-heading {
    text-align: center;
    padding: 0 30px;
    margin-bottom: 55px;
}

.trusted-clients-eyebrow {
    display: inline-block;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;

    color: #1b4fd8;

    margin-bottom: 18px;
}

.trusted-clients-heading h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    text-wrap: nowrap;
    font-weight: 600;
    color: #1B3A6B;
    font-family: "Inter", sans-serif;
    letter-spacing: -1.5px;
}

.trusted-clients-heading h2 span {
    color: #F5A623;
    font-style: italic;
    font-weight: 600;
}

.trusted-clients-heading p {
    max-width: 650px;

    margin: 24px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: #52647a;
}


/* =========================================================
   MARQUEE CONTAINER
========================================================= */

.trusted-clients-marquee {
    position: relative;

    width: calc(100% - 40px);
    max-width: 1540px;

    height: 140px;
    /* Decreased height */

    margin: 0 auto;

    overflow: hidden;

    display: flex;
    align-items: center;
}

/* =========================================================
   EDGE FADE OVERLAYS
========================================================= */

.trusted-clients-marquee::before,
.trusted-clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 5;
    pointer-events: none;
}

.trusted-clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f7f9fc 0%, transparent 100%);
}

.trusted-clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f7f9fc 0%, transparent 100%);
}


/* =========================================================
   MOVING TRACK
========================================================= */

.trusted-clients-track {
    display: flex;

    width: max-content;

    animation: trustedClientsScroll 30s linear infinite;

    will-change: transform;
}


/* =========================================================
   LOGO GROUP
========================================================= */

.trusted-clients-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 85px;

    padding: 0 42px;
}


/* =========================================================
   INDIVIDUAL LOGO
========================================================= */

.trusted-client-logo {
    width: 145px;
    height: 110px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.trusted-client-logo img {
    display: block;

    max-width: 145px;
    max-height: 75px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.trusted-clients-marquee:hover .trusted-clients-track {
    animation-play-state: paused;
}

.trusted-client-logo:hover {
    transform: scale(1.08);
}

.trusted-client-logo:hover img {
    filter: none;
}


/* =========================================================
   EDGE FADE
========================================================= */

.trusted-clients-marquee {
    isolation: isolate;
}

.trusted-clients-marquee::selection {
    background: transparent;
}


/* =========================================================
   ARROWS
========================================================= */

.trusted-clients-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    pointer-events: none;
}

.trusted-arrow-left {
    left: 18px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0.82));
}

.trusted-arrow-right {
    right: 18px;

    background:
        linear-gradient(270deg,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0.82));
}

.trusted-clients-arrow span {
    width: 12px;
    height: 12px;

    border-top: 3px solid #1b4fd8;
    border-left: 3px solid #1b4fd8;

    display: block;
}

.trusted-arrow-left span {
    transform: rotate(-45deg);
}

.trusted-arrow-right span {
    transform: rotate(135deg);
}


/* =========================================================
   INFINITE RIGHT → LEFT ANIMATION
========================================================= */

@keyframes trustedClientsScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .trusted-clients-section {
        padding: 75px 0;
    }

    .trusted-clients-marquee {
        height: 200px;

        border-radius: 0 60px 0 60px;
    }

    .trusted-clients-group {
        gap: 60px;
    }

    .trusted-client-logo {
        width: 125px;
    }

    .trusted-client-logo img {
        max-width: 125px;
        max-height: 65px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .trusted-clients-section {
        padding: 65px 0;
    }

    .trusted-clients-heading {
        margin-bottom: 40px;
    }

    .trusted-clients-eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .trusted-clients-heading h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .trusted-clients-heading p {
        font-size: 15px;

        max-width: 90%;
    }

    .trusted-clients-marquee {
        width: calc(100% - 25px);

        height: 165px;

        border-radius: 0 45px 0 45px;
    }

    .trusted-clients-group {
        gap: 45px;

        padding: 0 30px;
    }

    .trusted-client-logo {
        width: 105px;
        height: 90px;
    }

    .trusted-client-logo img {
        max-width: 105px;
        max-height: 55px;
    }

    .trusted-clients-arrow {
        width: 40px;
        height: 40px;
    }

    .trusted-arrow-left {
        left: 8px;
    }

    .trusted-arrow-right {
        right: 8px;
    }

    .trusted-clients-arrow span {
        width: 9px;
        height: 9px;

        border-width: 2px;
    }

    /* Hero Section Mobile */
    .hero-bg {
        min-height: 550px;
        padding-top: 30px;
        padding-bottom: 40px;
        background-position: 65% center;
    }

    .hero-bg::before {
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.95) 45%,
                rgba(255, 255, 255, 0.70) 65%,
                rgba(255, 255, 255, 0) 80%);
    }

    .hero-content {
        width: 65%;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .experience-badge {
        left: auto;
        right: 10px;
        top: -15px;
        transform: none;
        width: 100px;
        animation: floatBadgeMobile 4s ease-in-out infinite;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .show-on-mobile {
        display: inline-flex !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        height: 45px;
        font-size: 14px;
        padding: 0 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-badges {
        flex-wrap: nowrap;
        gap: 3px;
        justify-content: space-between;
        width: 100%;
    }

    .hero-badge i {
        font-size: 10px;
    }

    .hero-badge span {
        font-size: 9.5px;
        white-space: normal;
        line-height: 1.2;
    }

    .badge-divider {
        display: block;
        font-size: 10px;
        color: #ccc;
    }

    /* Hero Highlights Mobile */
    .hero-highlights {
        margin-top: -40px;
    }

    .highlight-wrapper {
        padding: 18px 12px;
        flex-wrap: nowrap;
        gap: 5px;
        justify-content: space-between;
    }

    .highlight-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        flex: 1;
        padding: 0;
    }

    .highlight-item i {
        font-size: 20px;
    }

    .highlight-item h4 {
        font-size: 9.5px;
        white-space: normal;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .highlight-item p {
        display: none;
    }

    .highlight-wrapper .divider {
        display: block;
        width: 1px;
        height: 35px;
        background: #ececec;
        margin: 0;
    }

    /* Product Showcase Mobile */
    .showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .showcase-card {
        padding: 30px 20px;
        height: 350px !important;
    }

    .showcase-content {
        width: 55%;
    }

    .showcase-image {
        width: 45%;
        height: 250px !important;
        justify-content: center;
        align-items: center;
    }

    .showcase-content h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .showcase-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .item-count {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .product-list li {
        min-height: auto;
        padding: 8px 0;
        font-size: 13px;
    }

    /* Reset Storage card to match others on mobile */
    .storage .showcase-image {
        width: 45%;
        align-items: center;
    }

    .classroom .product-list,
    .hostel .product-list,
    .hospital .product-list,
    .storage .product-list {
        height: 115px !important;
        overflow: hidden !important;
    }

    .storage .showcase-image img {
        width: 140% !important;
        height: 140% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain;
        transform: scale(1.15);
    }

    .hospital .showcase-image img {
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        object-fit: contain;
        transform: scale(1);
    }

}

@keyframes floatBadgeMobile {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .trusted-clients-track {
        animation: none;
    }

}

/* =========================================================
   FREQUENTLY ASKED QUESTIONS (FAQ) SECTION
========================================================= */

.mn-faq-section {
    position: relative;
    padding: 60px 0 70px;
    background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
    overflow: hidden;
}

/* Watermark Background */
.mn-faq-bg-watermark {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 380px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.mn-faq-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.mn-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #092d5c;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mn-faq-eyebrow::before,
.mn-faq-eyebrow::after {
    content: "";
    width: 38px;
    height: 1.5px;
    background: #092d5c;
    opacity: 0.75;
}

.mn-faq-title {
    font-family: 'Inter', 'Playfair Display', sans-serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 800;
    color: #092d5c;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mn-faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.1vw, 16.5px);
    color: #59636d;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Filter Navigation & Tabs */
.mn-faq-filter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 25px;
    max-width: 1080px;
    position: relative;
    z-index: 1;
}

.mn-faq-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #092d5c;
    background: #ffffff;
    color: #092d5c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 8px rgba(10, 40, 80, 0.05);
}

.mn-faq-nav-btn:hover {
    background: #092d5c;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(9, 45, 92, 0.2);
}

.mn-faq-tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 6px 4px;
}

.mn-faq-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.mn-faq-tabs-track {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.mn-faq-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #dce4ee;
    color: #092d5c;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 6px rgba(10, 40, 80, 0.02);
    flex-shrink: 0;
}

.mn-faq-tab-btn .mn-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #092d5c;
    transition: color 0.25s ease;
}

.mn-faq-tab-btn .mn-tab-text {
    font-weight: 600;
    line-height: 1;
}

.mn-faq-tab-btn:hover {
    border-color: #092d5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 45, 92, 0.08);
}

.mn-faq-tab-btn.active {
    background: #092d5c;
    border-color: #092d5c;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(9, 45, 92, 0.24);
    transform: translateY(-1px);
}

.mn-faq-tab-btn.active .mn-tab-icon {
    color: #ffffff;
}

/* Accordion List */
.mn-faq-accordion-list {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mn-faq-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 40, 80, 0.02);
}

.mn-faq-item.hidden {
    display: none !important;
}

.mn-faq-item:hover {
    border-color: #cbdcf0;
    box-shadow: 0 6px 20px rgba(10, 40, 80, 0.06);
}

.mn-faq-item.active {
    border-color: #092d5c;
    box-shadow: 0 8px 25px rgba(9, 45, 92, 0.08);
}

.mn-faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    gap: 16px;
}

.mn-faq-question-text {
    font-size: clamp(15.5px, 1.15vw, 17px);
    font-weight: 700;
    color: #092d5c;
    line-height: 1.45;
    transition: color 0.25s ease;
}

.mn-faq-item:hover .mn-faq-question-text {
    color: #0d3d68;
}

.mn-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: 600;
    color: #092d5c;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease;
}

.mn-faq-item.active .mn-faq-icon {
    transform: rotate(45deg);
    color: #092d5c;
}

/* Answer Wrapper */
.mn-faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.mn-faq-item.active .mn-faq-answer-wrapper {
    max-height: 600px;
    opacity: 1;
}

.mn-faq-answer-content {
    padding: 0 26px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
    padding-top: 16px;
}

.mn-faq-answer-content p {
    margin: 0 0 12px;
}

.mn-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.mn-faq-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .mn-faq-section {
        padding: 70px 0 80px;
    }

    .mn-faq-header {
        margin-bottom: 30px;
    }

    .mn-faq-filter-container {
        margin-bottom: 30px;
        gap: 8px;
    }

    .mn-faq-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .mn-faq-tab-btn {
        padding: 10px 16px;
        font-size: 13.5px;
        gap: 8px;
    }

    .mn-faq-question-btn {
        padding: 16px 18px;
    }

    .mn-faq-answer-content {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}