 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: #f5f5f5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           NAVBAR
        ========================= */
        .custom-navbar {
            background: #3F5D36;
            position: relative;
            z-index: 99;
            padding-top: 18px;
            padding-bottom: 18px;
        }

        .navbar-brand {
            gap: 14px;
        }

        .logo-circle {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
        }

        .brand-text {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
        }

        .navbar-nav {
            gap: 24px;
        }

        .nav-link {
            color: #fff !important;
            font-size: 18px;
            font-weight: 500;
            transition: 0.3s ease;
        }

        .nav-link:hover {
            color: #E9E0C7 !important;
        }

        .dropdown-menu {
            border: 0;
            border-radius: 14px;
            padding: 10px;
        }

        .dropdown-item {
            border-radius: 8px;
            padding: 10px 14px;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: #3F5D36;
            color: #fff;
        }

        /* =========================
           HERO SECTION
        ========================= */
        .hero-section {
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 465px;
            object-fit: cover;
        }

     /* =========================
   HERO OVERLAY
========================= */
.hero-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
height: 50%;
    background:
        linear-gradient(to right,
            rgba(52, 78, 43, 0.96) 0%,
            rgba(58, 86, 49, 0.88) 35%,
            rgba(58, 86, 49, 0.55) 60%,
            rgba(58, 86, 49, 0.15) 100%);

    padding: 48px 0 44px;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
    max-width: 980px;
}

/* =========================
   HERO TEXT
========================= */
.hero-text {
    color: rgba(255, 248, 238, 0.92);

    font-size: 22px;
    font-weight: 100;
    line-height: 1.7;

    max-width: 1100px;

    margin-bottom: 34px;

    letter-spacing: -0.3px;
}

/* =========================
   BUTTON WRAPPER
========================= */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* =========================
   PRIMARY BUTTON
========================= */
.hero-btn-primary {
    background: #F3EEE5;
    color: #365132;

    border: none;

    padding: 18px 36px;

    border-radius: 20px;

    font-size: 16px;
    font-weight: 600;

    min-width: 252px;
    height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #ffffff;
    color: #365132;

    transform: translateY(-2px);
}

/* =========================
   OUTLINE BUTTON
========================= */
.hero-btn-outline {
    background: transparent;
    color: #F3EEE5;

    border: 3px solid rgba(243, 238, 229, 0.55);

    padding: 18px 36px;

    border-radius: 20px;

    font-size: 16px;
    font-weight: 600;

    min-width: 252px;
    height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: #fff;

    color: #fff;

    transform: translateY(-2px);
}
/* ==================================================
   PROJECT OVERVIEW SECTION
================================================== */
.project-overview-section {
    background: #F4F1EA;
    position: relative;
    padding: 70px 0 100px;
    overflow: hidden;
}

/* Top Curve */
.top-curve {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.top-curve svg {
    width: 100%;
    height: 110px;
    display: block;
}

/* ==================================================
   SECTION HEADING
================================================== */
.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
}




.heading-icon {
    color: #8B8879;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.section-heading h2 {
    color: #17351E;
    font-size: 48px;
   font-weight: 890;
    margin-bottom: 14px;
}
.section-heading h2.impact {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff; /* change to your desired color */
    margin-bottom: 18px;
    font-family: serif;
}

.overview-card li,
.heading-icon {
    color: #6b835f;
}
/* ==================================================
   OVERVIEW CARD
================================================== */
.overview-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 18px;

    padding: 35px;

    height: 100%;

    transition: 0.3s ease;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.overview-card:hover {
    transform: translateY(-6px);
}

.card-icon {
    width: 48px;
    height: 48px;

    background: #EEF2E9;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    font-size: 20px;
}

.overview-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #17351E;
    margin-bottom: 18px;
}

.overview-card p,
.overview-card li {
    color: #8B8879;
    font-size: 15px;
    line-height: 1.8;
}

.overview-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.overview-card li {
    margin-bottom: 12px;
}

/* ==================================================
   IMPACT DASHBOARD SECTION
================================================== */
.impact-dashboard-section {
    position: relative;

    background:
        linear-gradient(to right,
            #173f20,
            #1c4d24,
            #173f20);

    padding: 180px 0 120px;

    overflow: hidden;
}

/* ==================================================
   TOP WAVE
================================================== */
.impact-wave {
    position: absolute;
    top: -1px;
    left: 0;

    width: 100%;

    line-height: 0;
}

.impact-wave svg {
    width: 100%;
    height: 170px;
    display: block;
}

/* ==================================================
   LIGHT HEADING
================================================== */
.heading-light h2 {
    color: #ffffff;
}

.heading-light p {
    color: rgba(255, 255, 255, 0.72);
}



.heading-light .heading-icon {
    color: rgba(255, 255, 255, 0.75);
}

/* ==================================================
   ICON
================================================== */
.heading-sprout-icon {
    width: 20px;
    height: 20px;
    color: #6b835f;
}

/* ==================================================
   IMPACT CARD
================================================== */
.impact-card {
    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 18px;

    padding: 32px 20px;

    text-align: center;

    height: 100%;

    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.14);
}

.impact-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 20px;

    background: rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.impact-card h3 {
    color: #ffffff;

    font-size: 34px;
    font-weight: 700;

    margin-bottom: 10px;
}

.impact-card span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.6;

    display: block;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 767px) {

    .impact-dashboard-section {
        padding: 120px 0 80px;
    }

    .impact-wave svg {
        height: 100px;
    }

}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 38px;
    }

}

@media (max-width: 767px) {

    .project-overview-section,
    .impact-dashboard-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .overview-card,
    .impact-card {
        padding: 28px 22px;
    }

    .impact-card h3 {
        font-size: 28px;
    }

}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px) {

    .hero-overlay {
        padding: 40px 0;
    }

    .hero-text {
        font-size: 22px;
        line-height: 1.6;
    }

}

@media (max-width: 767px) {

    .hero-overlay {
        padding: 32px 0;
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        min-width: 100%;
        height: 62px;

        font-size: 16px;
    }

}
        /* =========================
           RESPONSIVE
        ========================= */
        @media (max-width: 1200px) {

            .hero-content h1 {
                font-size: 46px;
            }

        }

        @media (max-width: 991px) {

            .navbar-nav {
                gap: 8px;
                padding-top: 20px;
            }

            .hero-image img {
                height: 465px;
            }

            .hero-content h1 {
                font-size: 40px;
            }

        }

        @media (max-width: 767px) {

            .custom-navbar {
                padding-top: 12px;
                padding-bottom: 12px;
            }

            .brand-text {
                font-size: 18px;
            }

            .logo-circle {
                width: 42px;
                height: 42px;
            }

            .hero-image img {
                height: 662px;
            }

            .hero-overlay {
                padding: 60px 0;
            }

            .hero-content h1 {
                font-size: 30px;
                line-height: 1.5;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-btn-primary,
            .hero-btn-outline {
                width: 100%;
                text-align: center;
                font-size: 18px;
            }

        }
        /* ==================================================
   PARTICIPATING SCHOOLS
================================================== */
.participating-schools-section {
    background: #F4F1EA;
    padding: 120px 0;
}

/* IMAGE */
.school-image-wrapper img {
    width: 525px;
    border-radius: 18px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* SCHOOL CARD */
.school-card {
    background: #ffffff;

    border-radius: 16px;

    padding: 24px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-bottom: 22px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-icon {
    width: 50px;
    height: 50px;

    border-radius: 14px;

    background: #3f5d36;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;
}

.school-icon.green {
    background: #708564;
}

.school-icon.brown {
    background: #9d7d65;
}

.school-content h4 {
    font-size: 20px;
    color: #17351E;
    font-weight: 700;
    margin-bottom: 14px;
}

.school-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.school-tags span {
    background: #EEF2E9;

    color: #6b835f;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 500;
}

/* ==================================================
   UNIVERSITY CAMPUS SECTION
================================================== */
.university-campus-section {
    background: #F4F1EA;
    padding: 20px 0;
}

/* TITLES */
.campus-title {
    font-size: 20px;
    font-weight: 700;
    color: #17351E;
    margin-bottom: 24px;
}

/* CAMPUS CARD */
.campus-card {
    background: #ffffff;

    border-radius: 16px;

    padding: 20px;

    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 18px;

    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campus-icon {
    width: 48px;
    height: 48px;

    background: #EEF2E9;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.campus-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #17351E;
    margin-bottom: 6px;
}

.campus-card span {
    color: #6b835f;
    font-size: 14px;
}

/* IMAGE */
.campus-image {
    margin-top: 26px;
}

.campus-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==================================================
   PROCESS ITEM
================================================== */
.process-item {
    display: flex;
    gap: 18px;

    background: #ffffff;

    border-radius: 16px;

    padding: 22px;

    margin-bottom: 18px;

    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-number {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #173f20;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;

    flex-shrink: 0;
}

.process-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #17351E;
    margin-bottom: 8px;
}

.process-content p {
    color: #6b835f;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {

    .participating-schools-section,
    .university-campus-section {
        padding: 90px 0;
    }

}

@media (max-width: 767px) {

    .school-card,
    .campus-card,
    .process-item {
        padding: 18px;
    }

    .school-content h4,
    .campus-card h4,
    .process-content h4 {
        font-size: 16px;
    }

}
.school-tags span i {
    color: #6b835f;
    margin-right: 6px;
    font-size: 13px;
}


/* ==================================================
   DESIGNATION WRAPPER
================================================== */
.designation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    flex-wrap: wrap;
}

/* ==================================================
   DESIGNATION CARD
================================================== */
.designation-card {
    background: #ffffff;

    border-radius: 18px;

    padding: 28px;

    width: 350px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

.designation-card:hover {
    transform: translateY(-6px);
}

/* ==================================================
   TOP AREA
================================================== */
.designation-card-top {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 26px;
}

/* ==================================================
   ICON
================================================== */
.designation-icon {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    flex-shrink: 0;
}

.designation-icon.green {
    background: #EEF2E9;
    color: #6b835f;
}

.designation-icon.dark {
    background: #E8EEE5;
    color: #173f20;
}

.designation-icon.brown {
    background: #F3ECE5;
    color: #9d7d65;
}

/* ==================================================
   STAGE
================================================== */
.designation-stage {
    display: block;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #c2b19d;

    margin-bottom: 6px;
}

.designation-card h3 {
    font-size: 32px;
    font-weight: 700;

    color: #17351E;

    margin-bottom: 0;
}

/* ==================================================
   LIST
================================================== */
.designation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.designation-list li {
    position: relative;

    padding-left: 22px;

    margin-bottom: 16px;

    color: #9a8c7b;

    font-size: 15px;
}

.designation-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.green-list li::before {
    background: #A8B59A;
}

.dark-list li::before {
    background: #173f20;
}

.brown-list li::before {
    background: #9d6d46;
}

/* ==================================================
   BOTTOM LINE
================================================== */
.designation-line {
    height: 3px;
    border-radius: 20px;
}

.green-line {
    background: #c9d2c3;
}

.dark-line {
    background: #8ea18a;
}

.brown-line {
    background: #d8c2b1;
}

/* ==================================================
   CONNECTOR
================================================== */


/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {

    .designation-wrapper {
        flex-direction: column;
    }

  

}
.designation-path-section {
    position: relative;
    background: #e9e4da;
    padding: 0px 0 0px;
    overflow: hidden;
        margin-top: -20px;
}





/* Responsive */
@media (max-width: 768px) {

    .designation-path-section {
        padding-top: 100px;
    }

   
}

@media (max-width: 480px) {

    .designation-path-section {
        padding-top: 32px;
        margin-top: -93px;
    }

   
}

@media (max-width: 767px) {

   

    .designation-card {
        width: 100%;
    }

    .designation-card h3 {
        font-size: 26px;
    }

}
/* SECTION */
.external-partners-section {
    background: #ece7df;
    padding: 100px 0;
}

/* HEADING */
.section-heading {
    max-width: 750px;
    margin: 0 auto 70px;
}

.heading-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #4d6542;
    font-size: 20px;
    margin-bottom: 15px;
}

.heading-top span {
    width: 60px;
    height: 1px;
    background: #9ca58e;
}

.section-heading h2 {
    font-size: 60px;
    font-weight: 700;
    color: #1f3b22;
    margin-bottom: 18px;
    font-family: serif;
}

.section-heading p {
    color: #9b7653;
    font-size: 14px;
    line-height: 1.8;
}

/* CARD */
.partner-card {
    background: #fff;
    border-radius: 24px;

    padding: 15px;

    display: flex;
    gap: 24px;

    margin-bottom: 30px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.partner-icon {
    width: 72px;
    height: 72px;

    min-width: 72px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #fff;
}

.partner-icon.green {
    background: #264d2f;
}

.partner-icon.brown {
    background: #9b6b45;
}

/* TEXT */
.partner-card h3 {
    font-size: 34px;
    color: #1f3b22;
    margin-bottom: 14px;
    font-family: serif;
}

.partner-card p {
    color: #65452ab3;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 13px;
}

/* IMAGE */
.partner-image-box {
    border-radius: 28px;
    overflow: hidden;

    height: 359px;
width: 465px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.partner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .partner-card {
        padding: 24px;
    }

    .partner-card h3 {
        font-size: 28px;
    }

    .partner-image-box {
        height: 300px;
                width: 388px;
    }
}

@media (max-width: 576px) {

    .external-partners-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .partner-card {
        flex-direction: column;
    }

    .partner-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .partner-card h3 {
        font-size: 24px;
    }

    .partner-card p {
        font-size: 16px;
    }

    .partner-image-box {
        height: 300px;
    }
}
/* SECTION */
.activities-section {
    position: relative;
    background: #F4F1EA;
    padding: 0px 0 100px;
    overflow: hidden;
    margin-top: -101px;
}

/* WAVE */
.wave-top {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 140px;
}

/* HEADING */
.activities-heading {
    margin-bottom: 50px;
}

.heading-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 15px;

    color: #556b4d;
}

.heading-top span {
    width: 55px;
    height: 1px;
    background: #9ba28f;
}

.activities-heading h2 {
    font-size: 58px;
    color: #1f3b22;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: serif;
}

.activities-heading p {
    font-size: 20px;
    color: #9b7653;
}

/* BANNER */
.activities-banner {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 40px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.activities-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* CARD */
.activity-card {
    background: #fff;
    border-radius: 20px;

    padding: 24px;

    display: flex;
    gap: 18px;

    height: 100%;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.activity-icon {
    width: 54px;
    height: 54px;

    min-width: 54px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.activity-icon.green {
    background: #edf4ea;
}

.activity-icon.brown {
    background: #f5ece4;
}

.activity-icon.dark {
    background: #efe7de;
}

.activity-icon.olive {
    background: #edf2e5;
}

/* TEXT */
.activity-card h4 {
    font-size: 24px;
    color: #1f3b22;
    margin-bottom: 8px;
    font-family: serif;
}

.activity-card span {
    display: inline-block;
    font-size: 14px;
    color: #b07d5b;
    margin-bottom: 10px;
}

.activity-card p {
    margin: 0;
    color: #9b7653;
    line-height: 1.7;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .activities-heading h2 {
        font-size: 42px;
    }

    .activities-banner img {
        height: 260px;
    }
}

@media (max-width: 576px) {

    .activities-section {
        padding: 30px 0 70px;
            margin-top: -69px;
    }

    .wave-top svg {
        height: 90px;
    }

    .activities-heading h2 {
        font-size: 34px;
    }

    .activities-heading p {
        font-size: 16px;
    }

    .activities-banner img {
        height: 200px;
    }

    .activity-card {
        flex-direction: column;
    }

    .activity-card h4 {
        font-size: 20px;
    }
}
.heading-sprout-i {
    width: 20px;
    height: 20px;
    color: #ffff;
}
.text-sage {
    color: #adbea4;
}
.timeline-section {
    background: #f7f5f2;
    overflow: hidden;
}

.timeline-title {
    color: #1f4b2c;
    font-family: serif;
}

.timeline-subtitle {
    color: #9b7b63;
    font-size: 1.2rem;
}

.line {
    width: 70px;
    height: 2px;
    background: #cfc9c1;
}

.leaf-icon {
    color: #ffffff;
    font-size: 1.2rem;
}

.timeline-line {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #cfc9c1;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 46px;
    height: 43px;
    background: #fff;
    border: 4px solid #1f4b2c;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.timeline-dot::after {
    content: "";
    width: 22px;
    height: 22px;
    background: #1f4b2c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-date {
    color: #1f4b2c;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: monospace;
}

.timeline-heading {
    color: #183c25;
    font-weight: 700;
    font-family: serif;
    margin-bottom: 12px;
}

.timeline-text {
    color: #9b7b63;
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-dot {
        margin-bottom: 20px;
    }
}
.student-section{
    background: linear-gradient(90deg,#163c1d,#1f4b24);
    color: #fff;
    position: relative;
    overflow: hidden;
}



.wave-top svg{
    width: 100%;
    height: auto;
    display: block;
}

.student-title{
    font-size: 4rem;
    font-weight: 700;
    color: #f5efe8;
    font-family: serif;
}

.student-subtitle{
    color: #c4b59d;
    font-size: 1.2rem;
}

.mini-line{
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.leaf{
    color: #d7c8b3;
}

.voice-card{
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(6px);
    height: 100%;
    height: 321px;
}

.quote-icon{
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #a46d43;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.quote-text{
    font-size: 1.5rem;
    line-height: 1.7;
    color: #f5efe8;
    margin-bottom: 12px;
    margin-top: 0px;
    font-family: serif;
    font-style: italic;
}

.voice-card hr{
    border-color: rgba(255,255,255,0.12);
    margin-bottom: 25px;
}

.card-title-custom{
    color: #b57f58;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text-custom{
    color: #b7b7b7;
    line-height: 1.8;
}
/* ==================================================
   FUTURE ROADMAP SECTION
================================================== */
.future-roadmap-section {
   
        background: linear-gradient(90deg,#163c1d,#1f4b24);

    padding: 120px 0;

    position: relative;

    overflow: hidden;
}


/* ==================================================
   LIGHT HEADING
================================================== */
.heading-light h2 {
    color: #F5F1E8;
}

.heading-light p {
    color: rgba(255,255,255,0.72);
}

.heading-light .heading-line,
.heading-light .heading-line::before,
.heading-light .heading-line::after {
    background: rgba(255,255,255,0.25);
}

.heading-light .heading-icon {
    color: rgba(255,255,255,0.72);
}

/* ==================================================
   ROADMAP CARD
================================================== */
.roadmap-card {
    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 22px;

    padding: 25px;

    height: 95%;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,0.13);
}

/* ==================================================
   ICON
================================================== */
.roadmap-icon {
    width: 64px;
    height: 64px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    font-size: 28px;

    color: #fff;
}

.icon-green {
    background: #607b55;
}

.icon-light {
    background: #7a9365;
}

.icon-brown {
    background: #9a673f;
}

.icon-dark {
    background: #7d522f;
}

/* ==================================================
   TEXT
================================================== */
.roadmap-card h3 {
    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 18px;
}

.roadmap-card p {
    color: rgba(255,255,255,0.62);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 0;
}

/* ==================================================
   BOTTOM CTA
================================================== */
.roadmap-bottom {
    margin-top: 80px;
}

.roadmap-bottom h4 {
    color: #F5F1E8;

    font-size: 25px;

    font-style: italic;

   
    margin-top: -41px;
}

/* BUTTON */
.roadmap-btn {
    background: #F4EFE7;

    color: #17351E;

    padding: 11px 42px;

    border-radius: 18px;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.roadmap-btn:hover {
    background: #ffffff;

    color: #17351E;

    transform: translateY(-3px);
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {

    .future-roadmap-section {
        padding: 90px 0;
    }

    .roadmap-bottom h4 {
        font-size: 25px;
    }

}

@media (max-width: 767px) {

    .roadmap-card {
        padding: 24px;
    }

    .roadmap-bottom h4 {
        font-size: 28px;
        line-height: 1.5;
    }

    .roadmap-btn {
        width: 100%;
    }

}

/* Mobile */
@media(max-width:768px){

    .student-title{
        font-size: 2.7rem;
    }

    .quote-text{
        font-size: 1.5rem;
    }

    .voice-card{
        padding: 30px 25px;
    }
}
/* ==================================================
   FOOTER
================================================== */
.main-footer {
    background:
        linear-gradient(to right,
            #173f20,
            #1d4f27,
            #173f20);

    padding: 90px 0 30px;

    position: relative;

    overflow: hidden;
}

/* TOP LIGHT LINE */
.main-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.10);
}

/* ==================================================
   FOOTER LOGO
================================================== */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d9d2c3;

    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 24px;
    height: 24px;
}

.footer-logo-wrap h3 {
    color: #F5F1E8;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 0;
}

/* ==================================================
   ABOUT
================================================== */
.footer-about {
    color: rgba(255,255,255,0.60);

    font-size: 15px;

    line-height: 1.9;

    max-width: 500px;

    margin-bottom: 0;
}

/* ==================================================
   WIDGET TITLE
================================================== */
.footer-widget h4 {
    color: #D8D1BE;

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 30px;
}

/* ==================================================
   LINKS
================================================== */
.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: rgba(255,255,255,0.58);

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;

    padding-left: 6px;
}

/* ==================================================
   CONTACT
================================================== */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.footer-contact-item i {
    color: #C18B63;

    font-size: 22px;
}

.footer-contact-item span {
    color: rgba(255,255,255,0.62);

    font-size: 18px;
}

/* DIVIDER */
.footer-divider {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.08);

    margin: 26px 0;
}

/* PERSON */
.footer-person h5 {
    color: rgba(255,255,255,0.75);

    font-size: 18px;

    margin-bottom: 6px;
}

.footer-person span {
    color: rgba(255,255,255,0.48);

    font-size: 16px;
}

/* ==================================================
   FOOTER BOTTOM
================================================== */
.footer-bottom {
    margin-top: 80px;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    color: rgba(255,255,255,0.38);

    font-size: 16px;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {

    .main-footer {
        padding: 70px 0 30px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

}

@media (max-width: 767px) {

    .footer-logo-wrap h3 {
        font-size: 24px;
    }

    .footer-about,
    .footer-links li a,
    .footer-contact-item span,
    .footer-person span,
    .footer-bottom {
        font-size: 16px;
    }

    .footer-widget h4 {
        margin-bottom: 24px;
    }

}
html {
    scroll-behavior: smooth;
}
.footer-contact-link {
    color: rgba(255,255,255,0.62);

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: rgba(255,255,255,0.90);
}