/* ------------------------------------------------Navbar section------------------------------------------------- */
.navbar {
    background: #FFF8F6;
    padding: 20px 0;
    width: 100%;
    padding: 0 82px;

    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    border-bottom: 1px solid #9AA093;
    /* width: 90%;
    max-width: 1300px; */
    width: 100%;
    /* margin: 0 auto; */
    padding: 25px 0px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    width: 62px;
    height: 47px;
}

/* Menu */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

/* Mobile menu header (hidden on desktop) */
.mobile-menu-header {
    display: none;
}

.nav-links>li>a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.4s;
}

/* Active Item */
/* .nav-links li.active a { */
.nav-links>li.active>a {
    color: var(--primary-color);
    font-family: "clashGrotesk-bold";
}

/* Underline Image */
/* .nav-links li.active::after { */
.nav-links>li.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    width: 50px;
    height: 12px;
    background: url("../icons/underline.svg") no-repeat center;
    background-size: contain;
}

/* Hover Effect */
.nav-links>li>a:hover {
    color: var(--primary-color);
}

.nav-links.show>li>a:hover {
    color: var(--text-color);
    transform: translateX(5px);

}

.nav-btn {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
}

.nav-btn li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-btn,
.contact-btn {
    background-color: transparent;
    padding: 12px 24px;
    color: var(--primary-color);
    border-radius: 40px;
    border: 2px solid var(--primary-color);
    /* transition: transform 0.4s ease; */

    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-btn a,
.contact-btn a {
    color: var(--primary-color);

}

.admission-btn:hover,
.contact-btn:hover {
    background-color: var(--primary-color);
}

.admission-btn:hover a,
.contact-btn:hover a {
    color: #FFF8F6;
}


/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    cursor: pointer;
    /* padding: 8px; */
    background: none;
    border: none;
    z-index: 99;
    margin-right: 12px;
}

.hamburger img {
    /* width: 28px; */
    /* height: 28px; */
    display: block;
    transition: transform 0.3s ease;
}

.admission-mobile {
    background-color: var(--primary-color);
    padding: 12px 24px;
    color: var(--secondary-color);
    border-radius: 40px;
    border: 2px solid var(--primary-color);

    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    transition: 0.3s;
    display: none;
}

.admission-mobile a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-family: "clashGrotesk-semibold";
    /* line-height: 1.2; */
    transition: 0.3s;
}

.admission-mobile:hover {
    background-color: transparent;
}

.admission-mobile:hover a {
    color: var(--primary-color);
}

.logo-menu {
    display: flex;
}

.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

@media (max-width: 1400px) {
    .navbar {
        padding: 0px 40px;
    }

    .nav-links {
        gap: 14px;
    }

}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        gap: 18px;
        text-align: center;
    }

    .nav-links a {
        font-size: 14px;
    }
}

/* Mobile Navbar */
@media (max-width: 980px) {
    .navbar {
        padding: 0 16px;
        position: relative;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 17px 0;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu - hidden by default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        width: auto;
        background: #C04A1A;
        /* padding: 20px 20px 28px; */
        gap: 0;
        margin: 0;
        margin-top: 10px;
        list-style: none;
        border-radius: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 101;
        overflow-y: auto;
    }

    .nav-links.show {
        display: flex;
        max-height: calc(100vh - 80px);
        text-align: left;
        padding: 24px;
        align-items: flex-start;
        width: 246px;
    }

    .nav-links.show>li>a {
        color: #ffffff;
        font-size: 14px;
    }

    .nav-links li {
        width: 100%;
    }


    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: #FFF8F6;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        /* margin-bottom: 10px; */
        border-bottom: 2px solid #ffffff;
    }

    .mobile-menu-title {
        font-family: "butterpop-regular";
        font-size: 18px;
        color: #ffffff;
    }

    /* .mobile-menu-close {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #FFF8F6;
        background: transparent;
        color: #FFF8F6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    } */

    /* .admission-btn,
    .contact-btn {
        margin-top: 8px;
    } */

    .nav-btn {
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
        width: 198px;
    }

    .nav-btn li a {

        text-decoration: none;
        color: var(--secondary-color);
        font-size: 16px;
        font-family: "clashGrotesk-semibold";
        /* line-height: 1.2; */
        transition: 0.3s;
        padding: 0;
        text-align: center;

    }

    .admission-btn {
        display: none;

    }

    .admission-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-radius: 40px;
        border: 2px solid #FFF8F6;
        color: #C04A1A;
        background-color: #FFF8F6;

        display: none;
    }

    .contact-btn {
        background-color: var(--primary-color);
        padding: 12px 24px;
        color: var(--secondary-color);
        border-radius: 40px;
        border: 2px solid var(--secondary-color);

        font-size: 16px;
        font-family: "clashGrotesk-semibold";
        transition: 0.3s;
    }

    .contact-btn:hover {
        background-color: var(--secondary-color);
    }


    .contact-btn:hover a {
        color: var(--primary-color);
    }



    /* Remove underline in mobile */
    .nav-links li.active::after {
        display: none;
    }

    /* Optional: hamburger rotates when open */
    .hamburger.is-open img {
        transform: rotate(90deg);
    }

    .hamburger.is-open {
        display: none;
    }

    .admission-mobile {
        display: block;
    }

    .nav-links>li.active>a {
        color: #0f0f0f;
    }
}

@media (max-width: 480px) {
    .nav-container {
        border: none;
    }

    .navbar {
        border-bottom: 1px solid #9AA093;
    }
}


/* ------------------------------------------------hero section------------------------------------------------- */
a {
    width: 100%;
}

.hero {
    background: #FFF8F6;
    /* padding: 100px 60px; */
    padding: 82px 72px 65px;
    /* Desktop padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: "butterpop-regular";
    color: var(--text-color);
    font-size: 52px;
    /* Desktop size */
    max-width: 1000px;
    margin: 0 auto;
}

.highlight {
    display: block;
    color: var(--primary-color);
    font-size: 52px;
    margin-top: 8px;
}

.hero-span {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;

}

.decor {
    position: absolute;
}

.decor-bag {
    top: 5%;
    left: 6%;
    /* width: 60px; */
    width: clamp(14px, 5vw, 60px);
}

.decor-pencil {
    top: 3%;
    right: 11%;
    width: clamp(35px, 7vw, 98px);
}

.decor-ball {
    top: 15%;
    left: 15%;
    /* width: clamp(14px, 4vw, 85px); */
}

.decor-puzzle {
    top: 10%;
    right: 4%;
}

.decor-abc {
    top: 17%;
    right: 17%;
    width: clamp(25px, 10vw, 142px);
}

.decor-spark {
    top: 21%;
    right: 4%;
    width: clamp(25px, 5vw, 87px);
}

.decor-bottom {
    display: none;
}

.hero-image-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-image {
    border-radius: 150px;
    overflow: hidden;
    background: white;
    width: 100%;
    padding: 10px;
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08); */
}

.hero-image img {
    width: 100%;
    /* max-width: 1350px; */
    border-radius: 135px;
    display: block;
}

.hero-text h2 {
    margin-top: 44px;
    color: var(--primary-color);
    font-family: "butterpop-regular";
    font-size: 50px;
}

/* @keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
} */

/* =========================
   TABLET (≤1024px)
========================= */

@media (max-width: 1024px) {

    .hero {
        padding: 80px 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .highlight {
        font-size: 40px;
    }

    .hero-image img {
        max-width: 900px;
    }

    .hero-text h2 {
        font-size: 40px;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */

@media (max-width: 768px) {

    .hero {
        padding: 55px 15px;
    }

    .hero-title {
        font-size: 26px;
        width: 90%;
    }

    .highlight {
        font-size: 26px;
    }

    .hero-text h2 {
        font-size: 26px;
    }

    .hero-span {
        display: flex;
        /* flex-direction: column; */
        gap: 10px;
        margin-top: 34px;
    }

    .hero-span img {
        width: 35px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .hero-image {
        border-radius: 75px;
        height: 312px;
    }

    .hero-image img {
        border-radius: 70px;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Optional: hide some decorations on mobile */
    .decor-spark,
    .decor-abc,
    .decor-pencil {
        display: none;
    }

    .decor-bottom {
        display: block;
        bottom: 5%;
        right: 0%;
    }

    .decor-bag {
        top: 3%;
        left: 1%;
        width: 31px;
    }

    .decor-puzzle {
        top: 17%;
        right: 17%;
        width: 35px;
    }

    .decor-ball {
        top: 30%;
        left: 88%;
        width: 30px;
    }
}





/* ================= SECTION 2 – Why Lady Andal ================= */

.section2 {
    background: #FFF8F6;
    padding: clamp(55px, 5vw, 65px) clamp(16px, 5.6vw, 83px);
    position: relative;
}

.section2 .container {
    /* max-width: 1280px; */
    width: 100%;
    margin: 0 auto;
}

.section2 .section-title {
    text-align: center;
    font-family: "butterpop-regular";
    font-size: 42px;
    color: #000000;
    margin-bottom: 32px;
}

/* Main grid: 2 cols desktop – left (classroom + features), right (info + tall image) */
.s2-grid {
    display: grid;
    grid-template-columns: 11fr 6fr;
    gap: clamp(20px, 3vw, 42px);
}

.grid-1 {
    grid-column: 1;
    grid-row: 1;
}

.grid-2 {
    grid-column: 2;
    grid-row: 1;
}

/* .grid-3 {
    grid-column: 1;
    grid-row: 2;
}

.grid-5 {
    grid-column: 2;
    grid-row: 2;
} */

/* Image cards */
.s2-image {
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
    height: 100%;
    border: 1px solid var(--secondary-color);
}

.s2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

/* .s2-image:hover .s2-image img {
    transform: scale(1.05);
} */


.s2-grid .s2-image.tall img {
    min-height: 320px;
}

/* Info card */
.s2-grid .info-card {
    background: #fff;
    border-radius: 40px;
    padding: 24px;
    text-align: center;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.s2-grid .info-logo {
    width: 100px;
    height: 77px;
    /* margin-bottom: 34px; */
}

.s2-grid .info-text {
    font-family: "clashgrotesk-semibold";
    font-size: 22px;
    color: var(--text-color);
    /* margin-bottom: 20px; */
}

.s2-grid .stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--secondary-color);
    padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 64px);
    border-radius: 40px;
    /* margin-bottom: 24px; */
    width: 100%;
    /* max-width: 280px; */
}

.s2-grid .stat {
    text-align: center;
    /* padding: 0px 32px; */
    /* width: 50%; */
    flex: 1;
}

.s2-grid .stat h3 {
    color: var(--primary-color);
    font-family: "butterpop-regular";
    font-size: 32px;
    /* margin: 0 0 16px 0; */
    margin: 0 auto 16px auto;
}

.s2-grid .stat span {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(15px, 1.2vw + 10px, 22px);
    color: #000000;
}

.s2-grid .divider {
    width: 1px;
    height: 85%;
    background: #9AA093;
    flex-shrink: 0;

    /* margin: 0 32px; */
}

/* 
.section2 .wrap {
    position: relative;
    overflow: hidden;
}

.s2-grid .features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.s2-grid .feature-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;

    height: 100%;
    border: 1px solid var(--secondary-color);
}

.s2-grid .feature-card .icon-wrap {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    background: #EBF5DF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.s2-grid .feature-card .icon-wrap img {
    width: 130px;
    height: 130px;
    margin: 0;
}

.s2-grid .feature-card p {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 24px;
} */

.s2-grid .btn-outline {
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 40px;
    color: var(--primary-color);
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;

    width: 100%;
    margin-top: 8px;
}

.s2-grid .btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}



.section2 .decor {
    position: absolute;
}

.decor-spark1 {
    top: 13%;
    left: 4%;
}

.decor-puzzles {
    top: 6%;
    right: 3%;
    z-index: 1;
}

/* .decor-spark2 {
    top: 43%;
    right: 3%;
}

.decor-flower {
    bottom: 0%;
    left: 0%;
}

.decor-ruler {
    bottom: 1%;
    right: 1%;
} */


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Tablet: keep 2 cols, adjust spacing */
@media (max-width: 1024px) {
    .s2-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .s2-grid .features-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: single column, order as in image */
@media (max-width: 900px) {
    .s2-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .grid-1 {
        grid-column: 1;
        grid-row: auto;
    }

    .grid-2 {
        grid-column: 1;
        grid-row: auto;
    }

    /* .grid-3 {
        grid-column: 1;
        grid-row: auto;
    }

    .grid-5 {
        grid-column: 1;
        grid-row: auto;
    } */

    .s2-grid .s2-image.tall img {
        min-height: 260px;
    }

    /* Make features wrapper a horizontal slider track on mobile */
    .s2-grid .features-wrapper {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }



    .s2-grid .stats {
        flex-direction: row;
        border-radius: 24px;
    }

    .s2-grid .divider {
        display: block;
    }


    .decor-spark1 {
        top: 16%;
        left: 4%;
        width: 30px;
    }

    .decor-puzzles {
        top: 3%;
        right: 3%;
        width: 40px;
    }

    .decor-spark2 {
        display: none;
    }

    .decor-flower {
        bottom: 0%;
        left: 0%;
        width: 40px;
    }

    .decor-ruler {
        display: none;
    }

    /* Slider card sizing */
    /* .s2-grid .feature-card {
        padding: 22px 20px;
        flex: 0 0 80vw;
        max-width: 320px;
        height: auto;
    } */

    /* .section2 .wrap {
        margin-inline: -24px;
    } */

    /* .grid-5 {
        display: none;
    } */
}

@media (max-width: 480px) {
    .section2 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section2 .section-title {
        margin-bottom: 32px;
        font-size: 24px;
    }

    .s2-grid .s2-image {
        height: 296px;
    }

    .s2-grid .feature-card {
        padding: 20px;
        /* height: 335px; */
    }

    .s2-grid .btn-outline {
        width: 100%;
        /* margin-top: auto; */
    }

    .s2-grid .feature-card .icon-wrap {
        margin-bottom: 32px;
    }

    /* .s2-grid .stat h3 {
        font-size: 28px;
    }

    .s2-grid .stat span {
        font-size: 15px;
    } */

    .s2-image.tall {
        width: 100%;
        height: 100%;
    }
}


/* ------------------------------------------------section3------------------------------------------------- */

.section3 {
    background: #FFF8F6;
    padding: 65px clamp(16px, 5.6vw, 82px) clamp(40px, 5.6vw, 70px);
    position: relative;
}

.section3-container {
    /* max-width: 1300px; */
    width: 100%;
    margin: 0 auto;
}

/* .section3-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;

    text-align: center;
    margin-bottom: 32px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
} */

.section3-header {
    text-align: center;
    max-width: 832px;
    margin: 0 auto 56px;
}

.section3-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section3-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    /* line-height: 1.7; */
    color: var(--text-color);
}


.s3-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(20px, 3vw, 42px);
}

/* Features 2x2 grid */
.section3 .wrap {
    position: relative;
    overflow: hidden;
}

.s3-grid .features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
    /* height: 100%; -------------*/
}

.s3-grid .feature-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 24px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    text-align: left;
    justify-content: space-around;

    height: 100%;
    /* max-height: 363px; */
    border: 1px solid var(--secondary-color);
}

.s3-grid .feature-card .icon-wrap {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    background: #EBF5DF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.s3-grid .feature-card .icon-wrap img {
    width: 130px;
    height: 130px;
    margin: 0;
}

.s3-grid .feature-card p {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 24px;
    /* flex-grow: 1; */
}

.s3-grid .btn-outline {
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 40px;
    color: var(--primary-color);
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;

    width: 100%;
    margin-top: 8px;
}


.s3-grid .btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}



.s3-gird .grid-1 {
    grid-column: 1;
    grid-row: 2;
}

.s3-grid .grid-2 {
    grid-column: 2;
    grid-row: 1;
}


.section3 .decor {
    position: absolute;
}


.section3 .decor-spark2 {
    top: 12%;
    right: 3%;
    /* width: clamp(25px, 5vw, 58px); */
}


.section3 .decor-flower {
    top: 0%;
    left: 0%;
    /* width: clamp(14px, 4vw, 71px); */
}


.section3 .decor-ruler {
    bottom: 1%;
    right: 1%;
    /* width: clamp(25px, 7vw, 100px); */
}






.s3-grid .therapies-card {
    border-radius: 50px;
    overflow: hidden;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    min-height: 0;

    height: 100%;


}

.s3-grid .therapies-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
    overflow: hidden;

    height: 100%;

}



/* Second row: 2 cards, each spans 3 columns */
/* .therapies-card-wide {
    grid-column: span 3;
} */

.s3-grid .therapies-card-image {
    /* position: relative; */
    width: 100%;
    /* aspect-ratio: 1; */
    overflow: hidden;
    /* background: #fff; */
    /* padding: 10px; */
    border-radius: 40px;

    height: 100%;

}

/* .s3-grid .therapies-card-wide .therapies-card-image {

    height: 528px;
} */

.s3-grid .therapies-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.8s ease;


}




.s3-grid .dot {
    border-radius: 99px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    cursor: pointer;

}

.s3-grid .active-dot {
    width: 68px;
    background-color: var(--primary-color);
    border-radius: 99px;
}

.s3-grid .splide__pagination {
    bottom: 20px;
    gap: 8px !important;
    bottom: 1.5em !important;

}

.s3-grid .splide__pagination__page {
    border-radius: 99px;
    width: 12px !important;
    height: 12px !important;
    background-color: #ffffff;
    cursor: pointer;

    transition: all .3s;
}

.s3-grid .splide__pagination__page.is-active {
    width: 68px !important;
    background: var(--primary-color) !important;
    border-radius: 99px;

    transform: none !important;
}

.s3-grid .splide__pagination__page {
    background: #ffffff;
    margin: 0 !important;
    opacity: 1 !important;
}

/* .splide__list {
    display: flex !important;
    grid-area: 20px !important;
} */










/* .therapies-card {
    height: 100%;
}

.therapies-card-inner {
    height: 100%;
}

.therapies-card-image {
    height: 100%;
} */

.splide__track,
.splide__list,
.splide__slide {
    height: 100%;
}

/* 
.therapies-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.therapy-img3 {
    object-position: 80% 25%;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Tablet: keep 2 cols, adjust spacing */
@media (max-width: 1024px) {
    .s3-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .s3-grid .features-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: single column, order as in image */
@media (max-width: 900px) {
    .s3-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .grid-1 {
        grid-column: 1;
        grid-row: auto;
    }

    .grid-2 {
        grid-column: 1;
        grid-row: auto;
    }


    .s3-grid .s3-image.tall img {
        min-height: 260px;
    }

    /* Make features wrapper a horizontal slider track on mobile */
    .s3-grid .features-wrapper {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }



    .decor-spark2 {
        display: none;
    }

    .decor-flower {
        bottom: 0%;
        left: 0%;
        width: 40px;
    }

    .decor-ruler {
        /* bottom: 2%;
        right: 1%;
        width: 40px; */
        display: none;
    }

    /* Slider card sizing */
    .s3-grid .feature-card {
        padding: 22px 20px;
        flex: 0 0 80vw;
        max-width: 320px;
        height: auto;
    }

    .section3 .wrap {
        margin-inline: -24px;
    }

    .grid-2 {
        display: none;
    }

    .s3-grid .therapies-card-inner {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .section3 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section3 .section-title {
        margin-bottom: 32px;
    }


    .s3-grid .feature-card {
        padding: 20px;
        /* height: 335px; */
    }

    .s3-grid .btn-outline {
        width: 100%;
        /* margin-top: auto; */
    }

    .s3-grid .feature-card .icon-wrap {
        margin-bottom: 32px;
    }

    .s3-image.tall {
        width: 100%;
        height: 100%;
    }


}

/* ------------------------------------------------section3b------------------------------------------------- */


.section3b {
    background: #FFF8F6;
    padding: 65px clamp(16px, 5.6vw, 82px) clamp(40px, 5.6vw, 70px);
    position: relative;
}

.section3b-container {
    /* max-width: 1300px; */
    width: 100%;
    margin: 0 auto;
}

/* 
.section3b-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;

    text-align: center;
    margin-bottom: 32px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
} */

.section3b-header {
    text-align: center;
    margin: 0 auto 56px;
}

.section3b-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section3b-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    /* line-height: 1.7; */
    color: var(--text-color);
    max-width: 750px;
    margin: 0 auto;
}


.s3b-grid {
    display: grid;
    grid-template-columns: 6fr 13fr;
    gap: clamp(20px, 3vw, 42px);
}

/* Features 2x2 grid */
.section3b .wrap {
    position: relative;
    overflow: hidden;
}

.s3b-grid .features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
    /* height: 100%; -------------*/
}

.s3b-grid .feature-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 24px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    text-align: left;
    justify-content: space-around;

    height: 100%;
    /* max-height: 363px; */
    border: 1px solid var(--secondary-color);
}

.s3b-grid .feature-card .icon-wrap {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    background: #EBF5DF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.s3b-grid .feature-card .icon-wrap img {
    width: 130px;
    height: 130px;
    margin: 0;
}

.s3b-grid .feature-card h3 {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 24px);
    color: #000000;
    margin-bottom: 12px;
    /* flex-grow: 1; */
}

.s3b-grid .feature-card p {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.45;
    margin-bottom: 24px;
    /* flex-grow: 1; */
}

.s3b-grid .btn-outline {
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 40px;
    color: var(--primary-color);
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;

    width: 100%;
    margin-top: 8px;
}


.s3b-grid .btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}



.s3b-gird .grid-1 {
    grid-column: 1;
    grid-row: 1;
}

.s3b-grid .grid-2 {
    grid-column: 2;
    grid-row: 1;
}


.section3b .decor {
    position: absolute;
}


.section3b .decor-spark2 {
    top: 12%;
    right: 3%;
    /* width: clamp(25px, 5vw, 58px); */
}


.section3b .decor-flower {
    top: 0%;
    left: 0%;
    /* width: clamp(14px, 4vw, 71px); */
}


.section3b .decor-ruler {
    bottom: 1%;
    right: 1%;
    /* width: clamp(25px, 7vw, 100px); */
}









.s3b-grid .therapies-card {
    border-radius: 50px;
    overflow: hidden;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    min-height: 0;

    height: 100%;


}

.s3b-grid .therapies-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
    overflow: hidden;

    height: 100%;

}



/* Second row: 2 cards, each spans 3 columns */
/* .therapies-card-wide {
    grid-column: span 3;
} */

.s3b-grid .therapies-card-image {
    /* position: relative; */
    width: 100%;
    /* aspect-ratio: 1; */
    overflow: hidden;
    /* background: #fff; */
    /* padding: 10px; */
    border-radius: 40px;

    height: 100%;

}

/* .s3b-grid .therapies-card-wide .therapies-card-image {

    height: 528px;
} */

.s3b-grid .therapies-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.8s ease;


}




.s3b-grid .dot {
    border-radius: 99px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    cursor: pointer;

}

.s3b-grid .active-dot {
    width: 68px;
    background-color: var(--primary-color);
    border-radius: 99px;
}

.s3b-grid .splide__pagination {
    bottom: 20px;
    gap: 8px !important;
    bottom: 1.5em !important;

}

.s3b-grid .splide__pagination__page {
    border-radius: 99px;
    width: 12px !important;
    height: 12px !important;
    background-color: #ffffff;
    cursor: pointer;

    transition: all .3s;
}

.s3b-grid .splide__pagination__page.is-active {
    width: 68px !important;
    background: var(--primary-color) !important;
    border-radius: 99px;

    transform: none !important;
}

.s3b-grid .splide__pagination__page {
    background: #ffffff;
    margin: 0 !important;
    opacity: 1 !important;
}

/* .splide__list {
    display: flex !important;
    grid-area: 20px !important;
} */










/* .therapies-card {
    height: 100%;
}

.therapies-card-inner {
    height: 100%;
}

.therapies-card-image {
    height: 100%;
} */

.splide__track,
.splide__list,
.splide__slide {
    height: 100%;
}

/* 
.therapies-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */








@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Tablet: keep 2 cols, adjust spacing */
@media (max-width: 1024px) {
    .s3b-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .s3b-grid .features-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile: single column, order as in image */
@media (max-width: 900px) {
    .s3b-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .section3b .grid-1 {
        grid-column: 1;
        grid-row: auto;
    }

    .section3b .grid-2 {
        grid-column: 1;
        grid-row: auto;
    }


    .s3b-grid .s3b-image.tall img {
        min-height: 260px;
    }

    /* Make features wrapper a horizontal slider track on mobile */
    .s3b-grid .features-wrapper {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }



    .section3b .decor-spark2 {
        display: none;
    }

    .section3b .decor-flower {
        bottom: 0%;
        left: 0%;
        width: 40px;
    }

    .section3b .decor-ruler {
        /* bottom: 2%;
        right: 1%;
        width: 40px; */
        display: none;
    }

    /* Slider card sizing */
    .s3b-grid .feature-card {
        padding: 22px 20px;
        flex: 0 0 80vw;
        max-width: 320px;
        height: auto;
    }

    .section3b .wrap {
        margin-inline: -24px;
    }

    .grid-2 {
        display: none;
    }

    .s3b-grid .therapies-card-inner {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .section3b {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section3b .section-title {
        margin-bottom: 32px;
    }


    .s3b-grid .feature-card {
        padding: 20px;
        /* height: 335px; */
    }

    .s3b-grid .btn-outline {
        width: 100%;
        /* margin-top: auto; */
    }

    .s3b-grid .feature-card .icon-wrap {
        margin-bottom: 32px;
    }

    .s3b-image.tall {
        width: 100%;
        height: 100%;
    }


}


/* ------------------------------------------------section4------------------------------------------------- */
.section4 {
    background: #FFF8F6;
    padding: clamp(40px, 5.6vw, 70px) clamp(16px, 5.6vw, 82px);
    position: relative;
}

.section4-container {
    /* max-width: 1300px; */
    margin: 0 auto;
}

.section4-header {
    text-align: center;
    max-width: 832px;
    margin: 0 auto 56px;
}

.section4-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section4-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    /* line-height: 1.7; */
    color: var(--text-color);
}

.section4 .wrap {
    position: relative;
    overflow: hidden;
}

.section4-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 41px;
    box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05);
}

.edu-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    /* max-height: 660px; */
    height: 100%;
}

.edu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}


.edu-image-wrap {
    /* width: 140px; */
    /* height: 120px; */
    border-radius: 70px;
    /* background: var(--secondary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;

    /* border-top-left-radius: 150px; */
}

.edu-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edu-title {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 24px;
    color: #000000;
}

.edu-text {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-color);
}

.s4-decor-bag {
    top: 7%;
    left: 2%;
}

.s4-decor-pencil {
    top: 7%;
    right: 3%;
}

.s4-decor-globe {
    top: 39%;
    left: -0.5%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* section4 breakpoints */

@media (max-width: 1200px) {
    .section4-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    /* .section4 {
        padding-inline: 40px;
    } */

    .section4-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    /* .section4 {
        padding: 50px 24px;
    } */

    .section4-grid {
        grid-template-columns: 1fr;
    }

    .section4-grid {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 40px 16px;
        /* width: max-content; */
        will-change: transform;
    }

    .edu-card {
        padding: 22px 20px;
        flex: 0 0 80vw;
        max-width: 320px;
        height: auto;
    }

    .section4 .wrap {
        margin-inline: -24px;
    }
}

@media (max-width: 480px) {
    /* .section4 {
        padding: 40px 18px;
    } */

    .edu-card {
        padding: 22px 20px;
    }

    .edu-image-wrap {
        width: 181px;
        height: 181px;
    }

    .edu-card-top {
        margin-bottom: 32px;
    }

    .s4-spark {
        width: 23px;
    }

    .section4 .decor {
        display: none;
    }
}

/* ------------------------------------------------section5 - Therapy Programs------------------------------------------------- */

.section5 {
    background: #FFF8F6;
    padding: clamp(40px, 5.6vw, 70px) clamp(16px, 5.6vw, 82px);
    position: relative;
    overflow: hidden;
}

.section5-container {
    margin: 0 auto;
}

.section5-header {
    text-align: center;
    max-width: 832px;
    margin: 0 auto 56px;
}

.section5-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section5-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--text-color);
}

.section5 .wrap {
    position: relative;
    overflow: hidden;
}

.section5-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 41px;
}

/* .therapy-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 24px;
    box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.therapy-card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 76px;
}

.therapy-image-wrap {
    border-radius: 70px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.therapy-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1.4;

}

.therapy-title {
    font-family: "clashgrotesk-semibold";
    font-size: 24px;
    margin-bottom: 0;
    color: var(--text-color);
    text-align: center;
} */
.therapy-card {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    flex-direction: column;
    height: 100%;
}

.therapy-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.therapy-card-image {
    /* position: relative; */
    width: 100%;
    aspect-ratio: 1/1.4;
    overflow: hidden;
    /* background: #ffffff; */
    /* padding: 10px; */
    border-radius: 40px;
}

.therapy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

.therapy-card:hover .therapy-card-image img {
    transform: scale(1.05);
}

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.therapy-card-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    /* padding: clamp(16px, 2vw, 24px); */
    padding: 29px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 40px 40px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.therapy-card:hover .therapy-card-overlay {
    opacity: 1;
}

.therapy-card-label {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 32px);
    color: #ffffff;
}

.section5-cta {
    text-align: center;
    margin-top: clamp(41px, 4vw, 56px);
}

.section5-btn {
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 40px;
    color: var(--primary-color);
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.section5-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.section5 .decor {
    position: absolute;
}

.s5-decor-flower {
    top: 20%;
    left: 0;
}

.s5-decor-book {
    top: 1%;
    right: -2%;
}

.s5-decor-ruler {
    bottom: 0;
    right: -3%;
}

.s5-decor-spark {
    bottom: 16%;
    right: 2%;
}

/* section5 breakpoints */

@media (max-width: 1200px) {
    .section5-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .section5-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section5-grid {
        grid-template-columns: 1fr;
    }

    .section5-grid {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }

    /* Card size same as desktop (one column of 3-col grid) */
    .therapy-card {
        flex: 0 0 360px;
        min-width: 360px;
        height: 505px;
    }

    .therapy-card-inner {
        height: 100%;
    }


    .section5 .wrap {
        margin-inline: -24px;
    }

    .s5-spark {
        width: 23px;
    }

    .therapy-image-wrap {
        height: 100%;
    }

    .therapy-card-image {
        height: 100%;
    }
}

@media (max-width: 480px) {
    /* .therapy-card {
        padding: 22px 20px;
    } */



    /* 
    .therapy-card-top {
        margin-bottom: 20px;
    } */
    .section5 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .s5-decor-spark {
        display: none;
    }

    .s5-decor-book {
        width: 50px;
    }

    .s5-decor-flower {
        display: none;
    }

    .s5-decor-ruler {
        width: 50px;
    }
}


/* ------------------------------------------------section6 - Vocational Training------------------------------------------------- */
.section6 {
    background: #FFF8F6;
    padding: clamp(40px, 5.6vw, 70px) clamp(16px, 5.6vw, 82px);
    position: relative;
}

.section6-container {
    margin: 0 auto;
}

.section6-header {
    text-align: center;
    max-width: 832px;
    margin: 0 auto 56px;
}

.section6-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section6-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--text-color);
}

.section6 .wrap {
    position: relative;
    overflow: hidden;
}

.section6-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 41px;

}

.vocational-card {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    flex-direction: column;
    height: 100%;
}

.vocational-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.vocational-card-image {
    /* position: relative; */
    width: 100%;
    aspect-ratio: 1/1.4;
    overflow: hidden;
    /* background: #ffffff; */
    /* padding: 10px; */
    border-radius: 40px;
}

.vocational-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

.vocational-card:hover .vocational-card-image img {
    transform: scale(1.05);
}

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.vocational-card-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    /* padding: clamp(16px, 2vw, 24px); */
    padding: 29px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 40px 40px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.vocational-card:hover .vocational-card-overlay {
    opacity: 1;
}

.vocational-card-label {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 32px);
    color: #ffffff;
}

.section6-cta {
    text-align: center;
    margin-top: clamp(41px, 4vw, 56px);
}

.section6-btn {
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: 40px;
    color: var(--primary-color);
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.section6-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}


/* section6 breakpoints */

@media (max-width: 1200px) {
    .section6-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .section6-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section6-grid {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .section6-grid {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }

    .vocational-card {
        flex: 0 0 312px;
        min-width: 312px;
        height: 424px;
    }

    .vocational-card-inner {
        height: 100%;
    }


    .section6 .wrap {
        margin-inline: -24px;
    }

    .vocational-image-wrap {
        height: 100%;
    }

    .vocational-card-image {
        height: 100%;
    }

    .s6-spark {
        width: 23px;
    }
}

@media (max-width: 480px) {
    .section6 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .vocational-card-image {
        aspect-ratio: 4/3;
    }
}










/* ------------------------------------------------section6 - Illustrious Alumni (slider)------------------------------------------------- */

.section6 {
    position: relative;
    background-color: #FFF8F6;
    padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 8vw, 82px);
    overflow: hidden;

    width: 100%;
}

.section6-container {
    /* position: relative; */
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 clamp(16px, 4vw, 40px); */
}



.section6-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 clamp(-20px, -2vw, -24px);
}

.section6-slider-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 12vw, 120px);
    /* pointer-events: none; */
    z-index: 2;
}


.section6-slider-track {
    display: flex;
    /* flex-wrap: nowrap; */
    gap: clamp(21px, 3vw, 41px);
    overflow: visible;
    padding: 0px clamp(20px, 2vw, 24px);
    /* width: max-content; */

    will-change: transform;

}


.section6-slider-track::-webkit-scrollbar {
    display: none;
}


.program-card {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    flex-direction: column;

    flex: 0 0 auto;
    width: 347px;
    /* height: 100%; */
    height: 100%;
}

.program-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.program-card-image {
    position: relative;
    width: 100%;
    /* aspect-ratio: 1/1.5; */
    overflow: hidden;
    border-radius: 40px;

    height: 480px;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.05);
}

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.program-card-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 29px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 0 0 40px 40px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;

    gap: 11px;
}

.program-card:hover .program-card-overlay {
    opacity: 1;
}

.program-card-label {
    font-family: "clashgrotesk-semibold";
    font-size: 24px;
    color: #ffffff;
}

.desc {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: #ffffff;

    text-align: center;

}

/* .section8 .decor {
    position: absolute;
}

.s9-decor-bag {
    top: 3%;
    left: 22%;
}

.s9-decor-book {
    top: 11%;
    right: -2%;
}

.s9-decor-sun {
    top: 20%;
    left: 0%;
}

.s9-decor-man {
    bottom: 0%;
    left: -2%;
}

.s9-decor-pencil {
    bottom: 14%;
    right: -0.5%;
} */

/* section8 responsive – mobile: show 1 main image with small peeks of adjacent cards */
@media (max-width: 768px) {
    .section6-slider-track {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    /* .program-card {
        width: 80vw;
        max-width: 424px;
    } */
}

@media (max-width: 480px) {
    .section6 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section6-slider-overlay {
        display: none;
    }

    .section6-slider-track {
        padding-left: 8vw;
        padding-right: 8vw;
        /* margin-bottom: 24px; */
    }

    /* .program-card {
        width: 84vw;
        max-width: 280px;
    } */

    .section6 .decor {
        /* width: 50px; */
        display: none;
    }
}












/* ------------------------------------------------section7 - State-of-the-Art iliilities------------------------------------------------- */
.section7 {
    background: #FFF8F6;
    padding: clamp(40px, 5.6vw, 70px) clamp(16px, 5.6vw, 82px);
    position: relative;
}

.section7-container {
    margin: 0 auto;
}

.section7-header {
    text-align: center;
    max-width: 832px;
    margin: 0 auto 56px;
}

.section7-title {
    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.section7-subtitle {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--text-color);
}

.section7 .wrap {
    position: relative;
    overflow: hidden;
    background-color: #FFF8F6;


}

/* Grid: top row 3 cards, bottom row 2 wider cards (6-column base) */
.section7-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(20px, 3vw, 32px);
    background-color: #FFF8F6;
}

.facility-card {
    border-radius: 50px;
    overflow: hidden;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.facility-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* First row: 3 cards, each spans 2 columns */
.facility-card:nth-child(1),
.facility-card:nth-child(2),
.facility-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row: 2 cards, each spans 3 columns */
.facility-card-wide {
    grid-column: span 3;
}

.facility-card-image {
    /* position: relative; */
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    /* background: #fff; */
    /* padding: 10px; */
    border-radius: 40px;
}

.facility-card-wide .facility-card-image {
    aspect-ratio: 16/10;
}

.facility-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

.facility-card:hover .facility-card-image img {
    transform: scale(1.05);
}

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.facility-card-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 29px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 40px 40px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.facility-card:hover .facility-card-overlay {
    opacity: 1;
}

.facility-card-label {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(20px, 2vw, 32px);
    color: #ffffff;
}

.s7-decor-left {
    top: 17%;
    left: 0;
}

.s7-decor-right {
    bottom: 0;
    right: 0%;
}

/* section7 breakpoints */

@media (max-width: 1200px) {
    .section7-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1024px) {
    .section7-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card:nth-child(1),
    .facility-card:nth-child(2),
    .facility-card:nth-child(3),
    .facility-card-wide {
        grid-column: span 1;
    }

    .facility-card-wide .facility-card-image {
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .section7-grid {
        grid-template-columns: 1fr;
        /* gap: clamp(20px, 3vw, 41px); */
    }

    .facility-card:nth-child(1),
    .facility-card:nth-child(2),
    .facility-card:nth-child(3),
    .facility-card-wide {
        grid-column: span 1;
    }

    .section7-grid {
        display: flex;
        /* flex-wrap: nowrap; */
        gap: 16px;
        padding: 0 24px;
        /* width: max-content; */
        will-change: transform;
    }

    .facility-card {
        flex: 0 0 350px;
        min-width: 350px;
        height: 394px;
    }

    .facility-card-inner {
        height: 100%;
    }


    .section7 .wrap {
        margin-inline: -24px;
    }

    .facility-image-wrap {
        height: 100%;
    }

    .facility-card-image {
        height: 100%;
    }

    .s7-spark {
        width: 23px;
    }

    .s7-decor-left,
    .s7-decor-right {
        width: 28px;
    }
}

@media (max-width: 480px) {

    /* .facility-card-image {
        aspect-ratio: 4/3;
    }

    .facility-card-wide .facility-card-image {
        aspect-ratio: 4/3;
    } */
    .section7 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section7 .decor {
        display: none;
    }
}

/* ------------------------------------------------section8 - Illustrious Alumni (slider)------------------------------------------------- */

.section8 {
    position: relative;
    background-color: #FFF8F6;
    /* Optional: add your background image; uncomment and set path: */
    /* background-image: url('/public/assets/images/s8-bg.svg'); */
    padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 8vw, 82px);
    overflow: hidden;

    width: 100%;

    background-image: url("../images/s8-background.svg");
    background-repeat: no-repeat;
    background-position: center center;

    /* 🔥 Important */
    /* background-size: contain; */
    background-size: cover;
}

/* .section8-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(40px, 6vw, 60px);
    pointer-events: none;
    z-index: 1;
}

.section8-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.section8-wave-top {
    top: 0;
}

.section8-wave-bottom {
    bottom: 0;
} */

.section8-container {
    /* position: relative; */
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 clamp(16px, 4vw, 40px); */
}

.section8-title {
    font-family: "butterpop-regular";
    font-size: clamp(24px, 4vw, 42px);
    color: var(--secondary-color);
    text-align: center;
    margin: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin-top: 90px;
}


.section8-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 clamp(-20px, -2vw, -24px);
    margin-bottom: 45px;
}

.section8-slider-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 12vw, 120px);
    /* pointer-events: none; */
    z-index: 2;
}

.section8-slider-overlay-left {
    left: 0;
    background: linear-gradient(to left, rgb(217, 217, 217, 0) 0%, #ffffff 100%);
}

.section8-slider-overlay-right {
    right: 0;
    background: linear-gradient(to right, rgb(217, 217, 217, 0) 0%, #ffffff 100%);
}

.section8-slider-track {
    display: flex;
    /* flex-wrap: nowrap; */
    gap: clamp(21px, 3vw, 41px);
    overflow: visible;
    padding: 0px clamp(20px, 2vw, 24px);
    /* width: max-content; */

    will-change: transform;

}


.section8-slider-track::-webkit-scrollbar {
    display: none;
}


.alumni-card {
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    /* box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05); */
    flex-direction: column;

    /* flex: 0 0 310px;
    width: 310px;
    height: 424px; */

    flex: 0 0 auto;
    width: 347px;
}

.alumni-card-inner {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.alumni-card-image {
    position: relative;
    width: 100%;
    /* aspect-ratio: 1/1.5; */
    overflow: hidden;
    border-radius: 40px;
}

.alumni-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s ease;
}

.alumni-card:hover .alumni-card-image img {
    transform: scale(1.05);
}

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.alumni-card-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /* padding: clamp(16px, 2vw, 24px); */
    padding: 29px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);

    border-radius: 0 0 40px 40px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;

}

.alumni-card:hover .alumni-card-overlay {
    opacity: 1;
}

.alumni-card-label {
    font-family: "clashgrotesk-semibold";
    font-size: 24px;
    color: #ffffff;
}






.s8-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s8-text {
    font-family: "butterpop-regular";
    font-size: clamp(24px, 4vw, 42px);
    color: var(--secondary-color);
    text-align: center;
    height: 100%;


    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;

}

.desc {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: #ffffff;

    text-align: center;

}

.section8 .decor {
    position: absolute;
}

.s9-decor-bag {
    top: 3%;
    left: 22%;
}

.s9-decor-book {
    top: 11%;
    right: -2%;
}

.s9-decor-sun {
    top: 20%;
    left: 0%;
}

.s9-decor-man {
    bottom: 0%;
    left: -2%;
}

.s9-decor-pencil {
    bottom: 6%;
    right: 1%;
}

/* section8 responsive – mobile: show 1 main image with small peeks of adjacent cards */
@media (max-width: 768px) {
    .section8-slider-track {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    /* .alumni-card {
        width: 80vw;
        max-width: 424px;
    } */
}

@media (max-width: 480px) {
    .section8 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section8-slider-overlay {
        width: 35px;
    }

    .section8-slider-track {
        padding-left: 8vw;
        padding-right: 8vw;
        /* margin-bottom: 24px; */
    }

    /* .alumni-card {
        width: 84vw;
        max-width: 280px;
    } */

    .section8 .decor {
        /* width: 50px; */
        display: none;
    }
}

/* ------------------------------------------------Admissions Enquiry CTA------------------------------------------------- */

.section9 {
    position: relative;
    padding: clamp(48px, 6vw, 70px) clamp(16px, 5.6vw, 82px);
    background: #FFF8F6;
    /* height: 100vh; */

    height: 100%;
    min-height: 819px;

}

/* .section9-bg {
    position: absolute;
    inset: 0;
    background: #FFF8F6;
    z-index: 0;
} */

.section9-container {
    position: relative;
    z-index: 1;
    width: 100%;

}

.section9-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--secondary-color);
    border-radius: 70px;
    box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 439px;

    /* padding: 20px; */
    margin: clamp(0px, 6vw, 142px) auto clamp(0px, 6vw, 88px);
}

.section9-image-wrap {
    flex: 0 0 48%;
    max-width: 48%;
    padding: 20px;
    display: flex;
    align-items: stretch;
    border-radius: 50px;
}

.section9-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    border: 10px solid #ffffff;
}


.section9-content {
    flex: 1;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section9-title {
    font-family: "butterpop-regular";
    font-size: clamp(24px, 3.5vw, 42px);
    color: #000000;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    /* gap: 12px;
    flex-wrap: wrap; */
}

.s9-spark {
    margin-left: 28px;
}



.section9-text {
    font-family: "clashgrotesk-medium";
    font-size: clamp(16px, 1.6vw, 22px);
    /* line-height: 1.6; */
    color: var(--text-color);
    margin-bottom: 32px;
    /* max-width: 550px; */
}



.section9-btn {
    /* display: inline-block;
    padding: clamp(14px, 1.8vw, 18px) clamp(28px, 3vw, 40px);
    background: #ca572d;
    color: #ffffff;
    font-family: "clashgrotesk-semibold", sans-serif;
    font-size: 20px;
    border-radius: 40px;
    transition: background 0.3s ease, transform 0.2s ease;*/
    width: fit-content;

    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 40px;
    color: #ffffff;
    font-family: "clashgrotesk-semibold";
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.section9-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* .section9-btn:hover {
    background: #b84d24;
} */

/* .section9-btn:focus {
    outline: 2px solid #ca572d;
    outline-offset: 2px;
} */

.para {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: self-start;
}

.para img {
    width: 25px;
}

.para p {
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(16px, 1.6vw, 22px);
    text-align: left;
    /* max-width: 616px; */
}

.section9-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Admissions CTA – Tablet: reduce image width */
@media (max-width: 1024px) {
    .section9 {
        min-height: 361px;
    }

    .section9-card {
        min-height: 280px;
    }

    .section9-image-wrap {
        flex: 0 0 38%;
        max-width: 38%;
    }
}

/* Admissions CTA – Mobile: stack vertically */
@media (max-width: 768px) {
    .section9 {
        min-height: 361px;
    }

    .section9-card {
        flex-direction: column;
        min-height: auto;
        border-radius: clamp(16px, 4vw, 24px);
    }

    .section9-image-wrap {
        flex: none;
        max-width: 100%;
        /* padding: 20px 20px 0; */
    }

    .section9-image {
        min-height: 220px;
    }


    .section9-title {
        margin-bottom: 24px;
    }

    .section9-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section9 {
        min-height: 361px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section9-card {
        padding: 20px;
        gap: 28px;
    }


    .section9-image {
        min-height: 300px;
    }

    .section9-image-wrap {
        padding: 0;
    }

    .section9-content {
        padding: 0;
    }


}

/* ------------------------------------------------Footer section------------------------------------------------- */

/* ==========================
   FOOTER BASE
========================== */

.footer {
    background: #FFFFFF;
    padding: 40px clamp(16px, 5.6vw, 82px);
    ;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin: auto;
}

/* ==========================
   LEFT SECTION
========================== */

.footer-logo {
    width: 136px;
    height: 103px;
    margin-bottom: 40px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact a {
    text-decoration: none;
    color: #000000;
    font-family: "clashgrotesk-medium";
    font-size: 20px;
    line-height: 160%;

}

/* .icon {
  font-size: 16px;
  color: #c04a1a;
} */

/* ==========================
   HEADINGS + LIST
========================== */

.footer-col h4 {
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    margin-bottom: 32px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    text-decoration: none;
    font-family: "clashgrotesk-medium";
    color: #000000;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    /* IMPORTANT */
}

.footer-col ul li a:hover {
    color: #c04a1a;
    transform: translateX(5px); 
}

.combain {
    /* display: flex;
    flex-direction: row;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: max-content;
}

/* ==========================
   SOCIAL
========================== */

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;

}

.social:hover {
    transform: scale(1.1);
}

/* ==========================
   MAP
========================== */

.map-box {
    width: 100%;
    border-radius: 30px;
}

.map-caption {
    font-family: "clashgrotesk-regular";
    font-size: 16px;
    margin-top: 12px;
    line-height: 160%;
    color: #000000;
}

/* ==========================
   1024px (Small Laptop)
========================== */

@media (max-width: 1024px) {



    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-right {
        grid-column: span 2;
    }
}

/* ==========================
   TABLET (768px)
========================== */
/* 
@media (max-width: 768px) {

    .footer {
        padding: 40px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
    }

    .map-box {
        max-width: 300px;
        margin: auto;
    }
} */

/* ==========================
   MOBILE (480px)
========================== */

@media (max-width: 768px) {


    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 52px;
    }

    /* .footer-logo {
        width: 70px;
    } */
    .combain {
        display: flex;
        flex-direction: row;
        gap: 56px;
    }

    .footer-contact .contact-item {
        justify-content: start;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .social {
        width: 34px;
        height: 34px;
    }

    .social-icons {
        justify-content: start;
        margin-bottom: 32px;
    }

    .map-box {
        max-width: 100%;
    }
}