/* ------------------------------------------------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: 29px;
    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------------------------------------------------- */


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


.section2 .highlight {
    display: block;

    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section2-text {
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(18px, 1.5vw, 22px);
    max-width: 765px;
    margin: 24px auto 42px;
}

.section2-span {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 0 24px;

}

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




/* ===============================
   ELIGIBILITY CARD
================================ */


.eligibility-card-inner {

    display: grid;
    grid-template-columns: 296px 1fr;
    gap: 32px;

    background: #ffffff;
    padding: 24px;
    border-radius: 40px;

    margin-bottom: 52px;
}

/* IMAGE */

.eligibility-image {
    /* background: #dfe7d2; */
    /* border-radius: 25px; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.eligibility-image .desk {
    width: 296px;
    /* height: 229px; */
    /* width: 100%; */
}

.eligibility-image .mob {
    display: none;
    width: 60px;
}

/* CONTENT */
.eligibility-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 16px;
}

.eligibility-content h3 {
    font-size: 24px;
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);
}

.eligibility-content p {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
}

.section2 .badge {
    background: #dbe6d2;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    color: #5C6D70;

    display: inline-block;
    margin-top: 8px;
}

.section2 .badge.alt {
    background: #FEEFE9;
    color: var(--primary-color);
}


/* ===============================
   STATS GRID
================================ */

.ngo-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.75vw, 25px);
    ;
}

.ngo-stat-card {
    background: #ffffff;
    padding: clamp(25px, 5.4vw, 78px) clamp(12px, 1.75vw, 25px);
    border-radius: 40px;
    text-align: center;
    border: 1px solid var(--secondary-color);
}

.ngo-stat-card h4 {
    font-family: "butterpop-regular";
    font-size: clamp(20px, 2.22vw, 32px);
    color: var(--primary-color);
    margin-bottom: 16px;
}

.ngo-stat-card p {
    font-family: "clashgrotesk-semibold";
    font-size: clamp(16px, 1.7vw, 24px);
    color: #000000;
}



@media (max-width: 768px) {


    .ngo-stat-card {
        border-radius: 16px;
    }

    .eligibility-card-inner {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {

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

    .eligibility-image .desk {
        display: none;
    }

    .eligibility-image .mob {
        display: block;
    }

}



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


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


.section3 .highlight {
    display: block;

    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section3-text {
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(18px, 1.5vw, 22px);
    max-width: 616px;
    margin: 24px auto 48px;
}

.section3-span {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 0 24px;

}

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




/* ===============================
   service CARD
================================ */
.section3-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 41px;

}

.service-card-inner {

    display: flex;
    flex-direction: column;
    height: 100%;
    /* 296px */
    gap: 32px;
    background: #ffffff;
    padding: 24px;
    border-radius: 40px;
}

/* IMAGE */

.section3 .image {
    /* 
    display: flex;
    align-items: center;
    justify-content: center; */
    margin: 0 auto;

    height: 229px;
}


/* CONTENT */
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    gap: 24px;
}

.service-content h3 {
    font-size: 24px;
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);
}

.service-content p {
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
}

.section3 .badge-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    text-align: left;

}

.section3 .badge {
    background: #dbe6d2;
    padding: 12px 24px;
    border-radius: 20px;
    font-family: "clashgrotesk-semibold";
    font-size: 18px;
    color: #5C6D70;

    display: inline-block;
}

.section3 .badge.alt {
    background: #FEEFE9;
    color: var(--primary-color);
}


@media (max-width: 768px) {



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

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

    .service-card {
        flex: 0 0 360px;
        min-width: 360px;
        /* height: 505px; */
    }

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


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



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

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


}

@media (max-width: 480px) {

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




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

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

    width: 100%;
    background-color: var(--secondary-color);
}

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

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

}

.section4-text {
    font-family: "clashgrotesk-medium";
    font-size: 22px;
    color: #000000;
    text-align: center;
    margin: 0 auto 56px;
    max-width: 637px;

}

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

.section4-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%);
} */

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

    will-change: transform;

}


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


.activities-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: 558px;
    /* height: 100%; */
    height: 450px;
}

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

    height: 100%;
}

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

    height: 100%;
}

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

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

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

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

.activities-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: 1024px) {


    .activities-card {
        width: 391px;
        height: 424px;
    }
}

@media (max-width: 768px) {
    .section4-slider-track {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    /* .activities-card {
        width: 391px;
        height: 424px;
    } */
}

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

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

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

    /* .activities-card {
        width: 84vw;
    } */

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

}


/* ------------------------------------------------section5 - timeline------------------------------------------------- */

/* Timeline defaults */
/* --------------------------------------- */
.h--timeline-container *,
.h--timeline-events * {
    outline: 0;
}

.h--timeline-container,
.h--timeline-events {
    width: 100%;
    margin: 0 auto;
}

.h--timeline-navigation-container ul,
.h--timeline-navigation-container li,
.h--timeline-events ol,
.h--timeline-events li,
.h--timeline-line ol,
.h--timeline-line li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.h--timeline {
    opacity: 0;
    transition: opacity 0.2s;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
}

.h--timeline--loaded {
    opacity: 1;
}

.h--timeline-container {
    height: 100px;
    /* margin: 0 12px; */
}

.h--timeline-dates {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Timeline blur effect for start and end */
/* --------------------------------------- */
.h--timeline-dates::after,
.h--timeline-dates::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: -1;
}

.h--timeline-dates::before {
    left: 0;
    background: transparent;
}

.h--timeline-dates::after {
    right: 0;
    background: transparent;
}

/* Timeline horizontal line */
/* --------------------------------------- */
.h--timeline-line {
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 49px;
    height: 2px;
    background-color: #d7d5d5;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.h--timeline-filling-line {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

/* Bullet points */
/* --------------------------------------- */
.h--timeline-date {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    /* font-size: 1rem;
	font-weight: 600; */
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(16px, 1.5vw, 18px);
    color: #5C6D70 !important;

    padding-bottom: 0.75rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.h--timeline-date:hover {
    font-weight: 600;
}

.h--timeline-date::after,
.h--timeline-date::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -7px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #EBF5DF;
    background-color: #f7f7f7;
    transition: background-color 0.3s, border-color 0.3s, top 0.3s;
}

.h--timeline-date::before {
    bottom: -3px;
    height: 9px;
    width: 9px;
    border-width: 0px;
    border-color: transparent;
    background-color: transparent;
    z-index: 2;
}

.h--timeline-date:hover::before,
.h--timeline-date:hover::after {
    transition: background-color 0.3s, border-color 0.3s, top 0.3s;
}

.h--timeline-date:hover::after {
    background-color: #f7f7f7;
    border-color: #FFF;
}

.h--timeline-date--selected {
    pointer-events: none;
    color: #000 !important;
}

.h--timeline-date--selected::after {
    background-color: #f7f7f7;
    border-color: #FFF;
}

.h--timeline-date--selected::before {
    background-color: #FFF;
}

.h--timeline-date--older-event::after {
    background-color: #FFF;
    border-color: #FFF;
}

/* Caroussel navigation */
/* --------------------------------------- */
.h--timeline-navigation {
    font-size: 0;
    position: absolute;
    z-index: 9;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    transition: border-color 0.3s;
}

.h--timeline-navigation::after {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    /* background: url('../img/timeline_slider_right_arrow.png')
		no-repeat 0 0; */
}

.h--timeline-navigation--prev {
    /* background-image: url(/public/assets/icons/slider_next.svg)!important; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.h--timeline-navigation--next {
    /* background-image: url(/public/assets/icons/slider_next.svg)!important; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.h--timeline-navigation:hover {
    border-color: #7f40d1;
}

.h--timeline-navigation--prev {
    left: -13.605px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.h--timeline-navigation--next {
    right: -13.605px;
}

.h--timeline-navigation--inactive {
    cursor: not-allowed;
    display: none;
}

.h--timeline-navigation--inactive::after {
    background-position: 0 -16px;
}

.h--timeline-navigation--inactive:hover {
    border-color: #FFF;
}

/* Timeline events container */
/* --------------------------------------- */
/* .h--timeline-events.timeline_card{
    width: 20%;
} */
.h--timeline-events {
    overflow: hidden;
    transition: height 0.4s;
    /* padding-bottom: 2rem; */

}

.h--timeline-event {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;

    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    padding: 1px 5%;
    opacity: 0;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.h--timeline-event-content {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-radius: 5px;
}

.h--timeline-event--selected {
    position: relative;
    z-index: 2;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

/* Timeline animations */
/* --------------------------------------- */
.h--timeline-event--enter-right,
.h--timeline-event--leave-right {
    -webkit-animation-name: cd-enter-right;
    animation-name: cd-enter-right;
}

.h--timeline-event--enter-left,
.h--timeline-event--leave-left {
    -webkit-animation-name: cd-enter-left;
    animation-name: cd-enter-left;
}

.h--timeline-event--leave-right,
.h--timeline-event--leave-left {
    animation-direction: reverse;
}

.h--timeline-event-title {
    font-family: "clashgrotesk-medium";
    color: var(--text-color);
    font-size: clamp(18px, 1.5vw, 22px);

}

.h--timeline-event-date {
    display: block;
    font-style: italic;
    /* margin: 0.5rem auto; */
    /* margin: 1rem auto; */
}

.h--timeline-event-content h2 {

    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: capitalize;

    font-family: "butterpop-regular";
    color: #BB4111;
}

.h--timeline-event-content h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    color: #000;
    /* margin-bottom: 20px; */
}

.h--timeline-event-date_sub {
    font-style: normal;
    font-weight: 500;
    font-size: 17px !important;
    line-height: 22px;
    text-align: center;
    /* margin-top: 16px; */
    color: #696969 !important;
}

.h--timeline-event-content p {

    text-align: start;
    /* letter-spacing: 0.02em; */
    font-family: "clashgrotesk-medium";
    font-size: 18px;
    color: var(--text-color);
}

/* .h--timeline-event-content p::first-letter{
    font-weight: 600;
    font-size: 26px;
} */

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

/* Overwrites */
/* Change the position of dates top / botom / top */
/* --------------------------------------- */
.h--timeline-date::after,
.h--timeline-date::before {
    background-color: #BB4111;
}

.h--timeline-date--selected::after {
    background-color: #f7f7f7;
    border-color: #FFF;
}

.h--timeline-date--older-event::after {
    background-color: #FFF;
    border-color: #FFF;
}

.h--timeline-line li .h--timeline-date--selected::after,
.h--timeline-line li .h--timeline-date:hover::after {
    width: 21px;
    height: 21px;
    bottom: -9px;
    background-color: #EBF5DF;
    border-color: #00000000;
}

.h--timeline-line li:nth-child(odd) .h--timeline-date:hover::before,
.h--timeline-line li:nth-child(odd) .h--timeline-date--selected::before {
    bottom: -3px;
}

.h--timeline-event-content {
    margin-top: 0;
    padding: 0;
    max-width: 100%;
    display: flex;
}

.time_line_sec {
    width: 100%;
    background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(20px);
}

/**/
.time_line .timeline-carousel__arrows {
    display: none;
}

.time_line_sec .timeline-carousel__pagination {
    bottom: -0.5em !important;
}

.timeline_content img {
    height: 100%;
    margin: 5px 5px 0 5px;
}

.h--timeline-event-content .timeline_img {
    width: 100%;
    margin: 0 auto;
}

.time_line .timeline-carousel__pagination {
    margin-top: 30px;
    position: unset !important;
    visibility: visible !important;
}

.time_line .timeline-carousel__pagination .timeline-carousel__dot {
    border: 4px solid #cfc8c8 !important;
}

.time_line .timeline-carousel__dot {
    background: #000000 !important;
    border: 4px solid #fff !important;
    height: 13px !important;
    width: 13px !important;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

.timeline_content img {
    width: 20px !important;
}

/* Page layout */
.timeline_bg .sub_title h2,
.timeline_bg .sub_title p {
    color: #f5f5f5;
}

.timeline-page {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 16px 0;
    box-sizing: border-box;
}

.sub_title.timeline-section-head {
    max-width: 83.333%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.timeline-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    align-items: flex-start;
    gap: 1rem;
    box-sizing: border-box;
}

.timeline-grid__col {
    flex: 1 1 45%;
    min-width: 260px;
    max-width: 100%;
    box-sizing: border-box;
}

.timeline-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.timeline_img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-replace {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.time_line .timeline-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.time_line .timeline-carousel__dot.is-active {
    opacity: 1;
}









.journey-grid {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: 30px;

}




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




.journey-img {
    height: 400px;
    object-fit: contain;

}

.journey-inline {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 12px !important;

}

.journey-grid__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.img-div {
    width: 40%;
}

.content-div {
    width: 60%;
}

.journey-head {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    justify-content: center;
    margin: 0 0 48px;
}


.section5 .highlight {
    display: block;

    font-family: "butterpop-regular";
    font-size: clamp(21px, 4vw, 42px);
    color: #000000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

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

.section5-span {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0 0 24px;

}

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


.h--timeline-event-date {
    font-size: 24px;
    font-family: "clashgrotesk-semibold";
    color: var(--text-color);
}






/* Extra styles for journey-timeline-small.html (mobile + arrow image) */

/* Use real <img> arrows instead of background-image */
.h--timeline-navigation--prev,
.h--timeline-navigation--next {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-arrow-img {
    width: 24px;
    height: 24px;
    display: block;
    pointer-events: auto;
    /* click handler listens on the image */
}

/* Mobile responsiveness */
@media (max-width: 768px) {

    /* Bring the date dots higher so there is space for content */
    .h--timeline-container {
        height: 90px;
    }

    .h--timeline-line {
        top: 43px;
    }



    .h--timeline-event-title {
        font-size: 2rem;
    }

    .journey-grid__col {
        flex: 1 1 100%;
    }
}




@media (max-width: 767px) {
    .sub_title.timeline-section-head {
        max-width: 100%;
    }

    .timeline-grid__col {
        flex: 1 1 100%;
    }

    .journey-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .img-div {
        width: 100%;
    }

    .content-div {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .section5 {
        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%;
    }
}