/* ------------------------------------------------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------------------------------------------------- */


.hero {
    background: #FFF8F6;
    /* padding: 100px 60px; */
    padding: clamp(55px, 4.2vw, 60px) clamp(16px, 6vw, 82px);
    /* Desktop padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}


.highlight {
    display: block;
    font-family: "butterpop-regular";
    color: var(--primary-color);
    font-size: clamp(32px, 4vw, 52px);
}

.hero-text {
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);
    font-size: clamp(18px, 1.5vw, 22px);
    max-width: 670px;
    margin: 25px auto 0;
}

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

}


.decor {
    position: absolute;
}

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

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

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

.decor-puzzle {
    top: 13%;
    right: 5%;
}

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

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

.decor-book {
    bottom: 23%;
    right: 3.3%;
    width: 49px;
}

.decor-global {
    top: 50%;
    left: 4.5%;
    /* width: clamp(25px, 5vw, 87px); */
}

.decor-bottom {
    display: none;
}

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

.hero-image {
    border-radius: 82px;
    overflow: hidden;
    background: white;
    width: 100%;
    /* max-height: 563px; */
    padding: 10px;
    border: 1.6px solid var(--secondary-color);
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08); */
}

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

/* @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;
    }
}

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

@media (max-width: 768px) {

    /* .hero {
        padding: 55px 16px;
    } */

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

    .highlight {
        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: 52px;
    }

    .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-abc,
    .decor-pencil,
    .decor-book,
    .decor-global {
        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: 40%;
        left: 88%;
        width: 30px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }
}



/* ===============================-----------------------------------------------------------------------------
   SECTION2 BASE
================================ */

.section2 {
    background: #FFF8F6;
    padding: clamp(55px, 4.2vw, 60px) clamp(16px, 6vw, 82px);
    position: relative;
}

.section2-container {
    /* width: 100%; */
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 950px;
}

/* ===============================
   TOP AREA
================================ */
.section2-header {
    text-align: center;
}

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

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

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


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

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

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

.stat span {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(18px, 2vw, 24px);
    color: #000000;
}

.divider {
    width: 1px;
    height: 68px;
    background: #9AA093;
    flex-shrink: 0;

    /* margin: 0 32px; */
}

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

.s5-spark {
    width: clamp(20px, 3vw, 35px);
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }

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

        /* margin: 0 32px; */
    }
}

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

/* ------------------------------------------------Section3------------------------------------------------- */
.section3 {
    /* padding: clamp(55px, 4.2vw, 60px) clamp(16px, 6vw, 82px); */

    position: relative;
    background-color: #FFF8F6;
    padding: clamp(80px, 10vw, 180px) clamp(16px, 6vw, 82px);
    overflow: hidden;

    width: 100%;

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

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

.section3-container {
    /* width: 100%; */
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}



.section3 .wrap {
    position: relative;
    overflow: hidden;
    /* background-color: #FFF8F6; */
}

.section3-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.demo {
    position: relative;
    display: grid;
    /* grid-template-columns: repeat(6, 1fr); */
    grid-template-columns: clamp(410px, 57vw, 810px) 1fr;
    gap: clamp(20px, 3vw, 32px);
    /* background-color: #FFF8F6; */
}

.demo-reverse {
    grid-template-columns: 1fr clamp(410px, 57vw, 810px);


}

.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;


}

.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;


}



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

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

.therapies-card-wide .therapies-card-image {
    /* aspect-ratio: 16/10; */

    height: 500px;
}

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

}

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

/* Overlay with label: visible on hover only, sits over image (inside white border) */
.therapies-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;

    justify-content: center;
}

/* .therapies-card:hover .therapies-card-overlay {
    opacity: 1;
} */

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

    display: flex;
    gap: 8px;
}



/*-------------side card---------------- */
.side-card {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, calc(0.6vw + 15.4px), 24px);

    background-color: #ffffff;
    border-radius: 40px;
    width: clamp(300px, 36.5vw, 526px);
    height: 361px;
    padding: 24px clamp(24px, calc(5.8vw - 15px), 63px);

    position: absolute;
    top: 0;
    right: 1%;
    top: 50%;
    transform: translateY(-50%) rotate(-2deg);
    justify-content: center;

}

.demo-reverse .therapies-card {
    grid-column: 2;
}

.demo-reverse .side-card {
    right: auto;
    left: 1%;
    transform: translateY(-50%) rotate(2deg);
    z-index: 2;

}

.side-card h3 {
    font-family: "clashgrotesk-semibold";
    font-size: 24px;
    color: #000000;
    text-align: left;
}


.para p {
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(14px, calc(0.6vw + 9.4px), 18px);
    text-align: left;
    /* max-width: 616px; */
}

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

}

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

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

}

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

    transition: all .3s;
}

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

    transform: none !important;
}

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

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

/* .decors{
    position: absolute;
    top: -10%;
    left: 0;
}
.decors-reverse{
        position: absolute;
    top: -10%;
    right: -2%;
} */

@media (min-width: 1440px) {

    .demo {

        grid-template-columns: clamp(410px, 57vw, 860px) 1fr;

    }

    .demo-reverse {
        grid-template-columns: 1fr clamp(410px, 57vw, 860px);
    }
}

@media (max-width: 1440px) {
    .therapies-card-image img {
        height: 500px;
    }
}



@media (max-width: 768px) {

    .section3-grid {
        display: flex;
        flex-direction: row;
        /* grid-template-columns: 1fr; */
        /* gap: clamp(20px, 3vw, 41px); */
    }

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

    .demo {
        flex: 0 0 345px;
        min-width: 345px;
        height: max-content;
    }

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


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



    .demo {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .demo-reverse {
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }

    .side-card {
        display: flex;
        flex-direction: column;
        gap: 24px;

        background-color: #ffffff;
        border-radius: 40px;
        width: 100%;
        height: max-content;

        transform: rotate(0deg);
        justify-content: center;

        position: static;
        margin-top: -30px;

    }

    .demo-reverse .side-card {

        display: flex;
        flex-direction: column;
        gap: 24px;

        background-color: #ffffff;
        border-radius: 40px;
        width: 100%;
        height: max-content;

        transform: rotate(0deg);
        justify-content: center;

        position: static;

    }

    .therapies-card-wide .therapies-card-image {
        height: 434px;
    }

    .therapies-card-image img {
        height: 434px;

    }

    .side-card,
    .demo-reverse .side-card{
        height: 250px;
    }


}

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





/* ------------------------------------------------Section4------------------------------------------------- */


.section4 {
    background: #FFF8F6;
    padding: 44px clamp(16px, 5.6vw, 82px);
}

.section4-container {
    /* max-width: 1184px; */
    /* margin: auto; */
    background: #ffffff;
    /* border-radius: 48px; */
    /* padding: 24px; */

}

/* =========================
   HEADER
========================= */


.section4-header h2 {
    /* display: block; */
    font-family: "butterpop-regular";
    color: var(--primary-color);
    font-size: clamp(32px, 4vw, 52px);
}


/* =========================
   TOP GRID
========================= */

.section4-grid {
    display: grid;
    /* grid-template-columns: 711px 1fr; */
    grid-template-columns: clamp(350px, 45.5vw, 450px) 1fr;

    gap: clamp(32px, 6vw, 104px);
    background: #ffffff;
    padding: 24px;
    border-radius: 40px;

    box-shadow: 14px 14px 106px rgba(0, 0, 0, 0.05);
}

.right-content {
    display: flex;
    justify-content: center;

}

/* Image */

/* .section4-image {
    border-radius: 25px;
    overflow: hidden;
}

.section4-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

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

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

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

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

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




/* CONTENT */
.subject-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.subject-content h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);

}

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

.subject-number {
    display: flex;
    /* text-align: center; */
    justify-content: center;
}


/* chips */

.chips {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;

    padding-top: 24px;
    border-top: 1px dashed #5C6D70;
}

.chips span {
    /* background: #dbe6d2; */
    padding: 12px 24px;
    border-radius: 20px;
    font-family: "clashgrotesk-semibold";
    font-size: 16px;
    /* color: #5C6D70; */

    display: inline-block;
    background: #FEEFE9;
    color: var(--primary-color);
}




@media (max-width: 1024px) {

    /* .section4-grid {
        gap: 32px;
        padding: 28px;
        border-radius: 50px;
    } */



    /* .section4-help {
        padding: 36px;
        gap: 28px;
    } */

}

@media (max-width:1400px) {


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

    .section4-card-image img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
    }

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

@media (max-width: 768px) {



    .section4-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 16px;
        border-radius: 30px;
        box-shadow: none;
    }


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

    .section4-card-image img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
    }


}

@media (max-width: 480px) {

    .section4 {
        padding-left: 16px;
        padding-right: 16px;
    }
}



/* ------------------------------------------------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;
    /* max-width: 1300px; */
    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 {
    /* background: #a63b12; */
    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%;
    }
}