﻿:root {
    --blue: #087CC4;
    --blue-2: #16B4D8;
    --blue-dark: #064E7A;
    --blue-soft: #EEF8FF;
    --orange: #f58220;
    --orange-dark: #df6908;
    --orange-soft: #fff2e7;
    --ink: #142b35;
    --muted: #000000;
    --line: #dcebf0;
    --bg: #f7fbfc;
    --white: #fff;
    --shadow: 0 18px 45px rgba(3,64,87,.10);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Manrope,Arial,sans-serif;
    color: var(--ink);
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px,calc(100% - 36px));
    margin: auto
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 800;
    font-size: 14px;
    transition: .2s ease
}

.btn-primary {
    background: linear-gradient(90deg,var(--blue),var(--blue-2));
    color: #fff;
    box-shadow: 0 10px 24px rgba(8,124,196,.24)
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(8,124,196,.32)
    }

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245,130,32,.22)
}

    .btn-orange:hover {
        background: var(--orange-dark);
        transform: translateY(-2px)
    }

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: #fff
}

    .btn-outline:hover {
        background: var(--blue);
        color: #fff
    }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px
}

    .kicker:before {
        content: "";
        width: 28px;
        height: 3px;
        border-radius: 10px;
        background: var(--orange)
    }

.section-head {
    max-width: 760px
}

    .section-head.center {
        text-align: center;
        margin-inline: auto
    }

        .section-head.center .kicker {
            justify-content: center
        }

    .section-head h2 {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -.8px;
        margin: 12px 0 13px;
        color: var(--blue-dark)
    }

        .section-head h2 span {
            color: var(--orange)
        }

    .section-head p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.75
    }

/* topbar */
.topbar {
    background: var(--blue-dark);
    color: #dfeef4;
    font-size: 12px
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        min-height: 38px
    }

.topbar-links, .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px
}

.topbar a:hover {
    color: #fff
}

/* header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220,235,240,.85)
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.logo img {
    width: 180px;
    height: auto
}

.menu {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 14px;
    font-weight: 700;
    color: #334a54
}

    .menu a {
        position: relative
    }

        .menu a:after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: -8px;
            height: 2px;
            background: var(--orange);
            transition: .2s
        }

        .menu a:hover {
            color: var(--blue);
        }

            .menu a:hover:after {
                right: 0
            }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--blue-soft);
    color: var(--blue-dark);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 20px
}


/* ===== Top Banner Slider ===== */
.top-banner {
    position: relative;
    overflow: hidden;
    background: #eef8fb;
}

.banner-slider {
    position: relative;
    min-height: 520px;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease;
}

    .banner-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .banner-slide img {
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

    .banner-slide:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(3,44,62,.88) 0%,rgba(3,44,62,.70) 38%,rgba(3,44,62,.18) 72%,rgba(3,44,62,.03) 100%);
    }

.banner-content {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: min(1180px,calc(100% - 36px));
    color: #fff;
}

.banner-copy {
    max-width: 650px
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(7px);
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .banner-badge:before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--orange);
    }

.banner-copy h1 {
    margin: 15px 0 15px;
    max-width: 620px;
    font-family: Playfair Display,serif;
    font-size: 54px;
    line-height: 1.04;
    letter-spacing: -1px;
}

    .banner-copy h1 span {
        color: #ffc184
    }

.banner-copy p {
    margin: 0 0 24px;
    max-width: 590px;
    color: #e4f1f5;
    font-size: 16px;
    line-height: 1.7;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.banner-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
}

    .banner-secondary:hover {
        background: #fff;
        color: var(--blue-dark)
    }

.banner-nav {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: min(1180px,calc(100% - 36px));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-dots {
    display: flex;
    gap: 8px
}

.banner-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(255,255,255,.45);
    transition: .2s;
}

    .banner-dot.active {
        width: 28px;
        border-radius: 999px;
        background: var(--orange);
    }

.banner-arrows {
    display: flex;
    gap: 8px
}

.banner-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(3,44,62,.25);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

    .banner-arrow:hover {
        background: var(--orange);
        border-color: var(--orange)
    }

.banner-mini-strip {
    position: relative;
    z-index: 6;
    margin-top: -1px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.banner-mini-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.banner-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

    .banner-mini-item:not(:last-child) {
        border-right: 1px solid var(--line)
    }

.banner-mini-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 18px;
}

.banner-mini-item strong {
    display: block;
    color: var(--blue-dark);
    font-size: 13px;
    margin-bottom: 2px;
}

.banner-mini-item span {
    color: var(--muted);
    font-size: 10.5px;
}

@media(max-width:768px) {
    .banner-slider {
        min-height: 470px
    }

    .banner-slide img {
        height: 470px
    }

    .banner-slide:after {
        background: linear-gradient(90deg,rgba(3,44,62,.88),rgba(3,44,62,.60));
    }

    .banner-copy {
        max-width: 90%
    }

        .banner-copy h1 {
            font-size: 39px
        }

        .banner-copy p {
            font-size: 14px
        }

    .banner-nav {
        bottom: 18px
    }

    .banner-arrows {
        display: none
    }

    .banner-mini-grid {
        grid-template-columns: 1fr
    }

    .banner-mini-item {
        padding: 12px 16px
    }

        .banner-mini-item:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid var(--line)
        }
}

@media(max-width:480px) {
    .banner-slider {
        min-height: 445px
    }

    .banner-slide img {
        height: 445px
    }

    .banner-content {
        width: calc(100% - 28px)
    }

    .banner-copy {
        max-width: 100%
    }

        .banner-copy h1 {
            font-size: 33px
        }

    .banner-actions .btn, .banner-secondary {
        width: 100%
    }
}

/* hero */
.hero {
    display: none;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 10%,rgba(17,169,197,.15),transparent 24%), radial-gradient(circle at 95% 4%,rgba(245,130,32,.15),transparent 25%), linear-gradient(180deg,#f2fbfe 0%,#fff 100%)
}

    .hero .container {
        display: grid;
        grid-template-columns: 1.02fr .98fr;
        gap: 54px;
        align-items: center;
        min-height: 650px;
        padding-block: 70px
    }

.hero-copy h1 {
    font-family: Playfair Display,serif;
    color: var(--blue-dark);
    font-size: 62px;
    line-height: 1.02;
    letter-spacing: -1.3px;
    margin: 15px 0 20px
}

    .hero-copy h1 span {
        color: var(--orange)
    }

.hero-copy p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 27px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-note {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-top: 28px;
    font-size: 13px;
    color: #5f747e
}

    .hero-note strong {
        color: var(--blue-dark)
    }

    .hero-note .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--orange)
    }

.hero-visual {
    position: relative;
    min-height: 500px
}

.hero-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 78%;
    height: 470px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(5,61,82,.20)
}

    .hero-main img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-main:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,transparent 45%,rgba(5,61,82,.42))
    }

.hero-small {
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 46%;
    border: 8px solid #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

    .hero-small img {
        width: 100%;
        height: 210px;
        object-fit: cover
    }

.hero-badge {
    position: absolute;
    right: 18px;
    bottom: 15px;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    padding: 15px 17px;
    box-shadow: 0 12px 28px rgba(5,61,82,.15);
    max-width: 205px
}

    .hero-badge strong {
        display: block;
        color: var(--blue);
        font-size: 25px;
        line-height: 1
    }

    .hero-badge span {
        font-size: 11px;
        color: var(--muted);
        line-height: 1.35
    }

/* impact */
.impact {
    margin-top: -24px;
    position: relative;
    z-index: 5
}

.impact-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden
}

.impact-item {
    padding: 25px 26px;
    text-align: center;
    position: relative
}

    .impact-item:not(:last-child):after {
        content: "";
        position: absolute;
        right: 0;
        top: 22%;
        height: 56%;
        width: 1px;
        background: var(--line)
    }

    .impact-item strong {
        display: block;
        font-size: 31px;
        color: var(--blue-dark);
        line-height: 1.1
    }

    .impact-item span {
        font-size: 12px;
        color: var(--muted);
        font-weight: 700
    }

/* sponsor */
.sponsor {
    padding: 96px 0 88px
}

.sponsor-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 38px
}

.student-search-wrap {
    margin: 30px 0 34px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(4,66,89,.07)
}

.student-search {
    display: grid;
    grid-template-columns: 1.35fr 1fr 190px;
    gap: 16px;
    align-items: stretch
}

.gender-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #d7e3e8;
    border-radius: 10px;
    overflow: hidden;
    min-height: 58px
}

.gender-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    color: #5f6d74;
    font-size: 15px;
    font-weight: 700;
    background: #fff
}

    .gender-option + .gender-option {
        border-left: 1px solid #d7e3e8
    }

    .gender-option input {
        width: 19px;
        height: 19px;
        accent-color: var(--blue)
    }

    .gender-option .gicon {
        font-size: 21px;
        color: #707d83
    }

.age-select {
    width: 100%;
    min-height: 58px;
    border: 1px solid #cddbe1;
    border-radius: 10px;
    background: #fff;
    color: #27383f;
    padding: 0 16px;
    font: inherit;
    font-size: 15px;
    outline: none
}

.student-search-btn {
    min-height: 58px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg,var(--blue),var(--blue-2));
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(8,124,196,.24);
    transition: .2s
}

    .student-search-btn:hover {
        background: linear-gradient(90deg,var(--blue-dark),var(--blue));
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(8,124,196,.32)
    }

.search-note {
    margin-top: 10px;
    color: #829198;
    font-size: 11px;
    text-align: right
}

/*.students {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.student-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(4,66,89,.08);
    transition: .25s
}

    .student-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 46px rgba(4,66,89,.15)
    }

.student-photo {
    height: 285px;
    position: relative;
    background: #eef5f7;
    overflow: hidden
}

    .student-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .student-photo:after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 105px;
        background: linear-gradient(180deg,transparent,rgba(6,61,87,.62))
    }

.need {
    position: absolute;
    z-index: 2;
    left: 15px;
    top: 15px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .5px
}

.student-name {
    position: absolute;
    z-index: 2;
    left: 19px;
    bottom: 17px;
    color: #fff
}

    .student-name h3 {
        font-size: 22px;
        margin: 0 0 2px
    }

    .student-name span {
        font-size: 12px;
        opacity: .9
    }

.student-body {
    padding: 19px
}

.story {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    min-height: 65px;
    margin: 0 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

    .meta div {
        background: #f8fbfc;
        border: 1px solid #e8f0f3;
        border-radius: 10px;
        padding: 10px 11px
    }

    .meta small {
        display: block;
        color: #8c9ba2;
        text-transform: uppercase;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .6px;
        margin-bottom: 4px
    }

    .meta strong {
        font-size: 12.5px;
        color: #314852
    }

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    margin-top: 15px
}

    .price span {
        font-size: 11px;
        color: #000
    }

    .price strong {
        font-size: 25px;
        color: #C45100;
        font-weight: 900
    }

    .price small {
        font-size: 10px;
        color: #C45100
    }

.student-btn {
    width: 100%
}*/
.student-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px
}

.student {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3,43,67,.08);
    transition: .2s
}

    .student:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(3,43,67,.13)
    }

.photo {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #eef4f7;
}

    .photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        /* keeps face / upper body more visible */
        object-position: center 20%;
        transition: transform .35s ease;
    }

    /* Smaller gradient only behind the student name */
    .photo:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: 0;
        height: 30%;
        background: linear-gradient( to top, rgba(3,43,67,.78) 0%, rgba(3,43,67,.25) 55%, transparent 100% );
        pointer-events: none;
    }

.student-name {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 15px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,.35);
}

/* Very small hover effect */
@media (hover:hover) {
    .student:hover .photo img {
        transform: scale(1.025);
    }
}

.student-body {
    padding: 18px
}

.student-desc {
    margin: 0 0 15px;
    color: #344C59;
    font-size: 13px;
    line-height: 1.65;
    min-height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    font-size: 12px;
    color: #2E4653
}

    .meta b {
        color: #0B2230
    }

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}

.price strong {
    font-size: 28px;
    color: var(--orange-dark)
}

.price small {
    color: var(--orange-dark);
    font-weight: 750
}

.sponsor-btn {
    background: var(--blue);
    color: #fff;
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 900
}

/* =====================================
   STUDENT CARDS RESPONSIVE
===================================== */

/* Tablet */
@media (max-width: 900px) {

    .student-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}


/* Mobile - ONE STUDENT PER ROW */
@media (max-width: 576px) {

    .student-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .student {
        width: 100%;
        border-radius: 18px;
        overflow: hidden;
    }

    /*.photo {
        height: 360px;
    }*/

        .photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .student-name {
        left: 18px;
        right: 18px;
        bottom: 18px;
        font-size: 26px;
        line-height: 1.15;
    }

    .area-badge {
        top: 14px;
        right: 14px;
        left: auto;
        max-width: calc(100% - 28px);
        font-size: 12px;
        padding: 9px 13px;
    }

    .student-body {
        padding: 20px;
    }

    .student-desc {
        font-size: 14px;
        line-height: 1.7;
        min-height: auto;
        margin-bottom: 18px;
        -webkit-line-clamp: 3;
    }

    .meta {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        font-size: 12px;
    }

        .meta div {
            background: #f7fbfd;
            border: 1px solid #e4edf2;
            border-radius: 10px;
            padding: 10px;
        }

    .price-row {
        margin-top: 18px;
        padding-top: 16px;
        align-items: center;
        gap: 12px;
    }

    .price strong {
        font-size: 24px;
    }

    .sponsor-btn {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 10px;
        white-space: nowrap;
    }
}
@media (max-width: 380px) {

    /*.photo {
        height: 330px;
    }*/

    .student-name {
        font-size: 24px;
    }

    .sponsor-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== Implemented redesign updates ===== */
.area-badge{position:absolute;z-index:3;right:14px;top:14px;display:inline-flex;align-items:center;gap:6px;padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.95);color:#032B43;font-size:11px;font-weight:900;box-shadow:0 7px 20px rgba(3,43,67,.18)}
.area-badge svg{width:13px;height:13px;color:#F58220}

/* why */
.why{padding: 90px 0;background: var(--bg)}
.why-grid {display: grid;grid-template-columns: .95fr 1.05fr;gap: 70px;align-items: center}
.why-image {position: relative}

    .why-image .main-img {
        height: 520px;
        width: 85%;
        object-fit: cover;
        border-radius: 28px
    }

    .why-image .small-img {
        position: absolute;
        right: 0;
        bottom: 28px;
        width: 46%;
        height: 230px;
        object-fit: cover;
        border: 8px solid var(--bg);
        border-radius: 24px
    }

.why-card {
    position: absolute;
    left: 20px;
    bottom: 22px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow)
}

    .why-card b {
        display: block;
        color: var(--orange);
        font-size: 20px
    }

    .why-card span {
        font-size: 11px;
        color: var(--muted)
    }

.checks {
    display: grid;
    gap: 13px;
    margin: 24px 0 28px
}

.check {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

    .check i {
        font-style: normal;
        display: grid;
        place-items: center;
        flex: 0 0 27px;
        width: 27px;
        height: 27px;
        border-radius: 9px;
        background: var(--orange-soft);
        color: var(--orange);
        font-weight: 900
    }

    .check strong {
        display: block;
        font-size: 14px;
        color: var(--blue-dark);
        margin-bottom: 3px
    }

    .check span {
        font-size: 12.5px;
        color: var(--muted);
        line-height: 1.55
    }

/* support */
.support {
    padding: 92px 0
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 36px
}

.support-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 27px;
    background: #EEF8FF;
    box-shadow: 0 12px 28px rgba(5,61,82,.06);
    overflow: hidden
}

    .support-card:before {
        display: none;
        content: none
    }

    .support-card:nth-child(2) {
        background: #FFF3E8
    }

    .support-card:nth-child(3) {
        background: #F1FAF8
    }

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 23px;
    margin-bottom: 19px;
    position: relative;
    z-index: 2
}

.support-card h3 {
    font-size: 19px;
    color: var(--blue-dark);
    margin: 0 0 9px
}

.support-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 16px
}

.text-link {
    font-size: 13px;
    font-weight: 800;
    color: var(--blue)
}

    .text-link:hover {
        color: var(--orange)
    }

/* projects */
.projects {
    padding: 92px 0;
    background: linear-gradient(180deg,#f7fbfc,#fff)
}

.project-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 22px;
    margin-top: 36px
}

.project {
    position: relative;
    min-height: 390px;
    border-radius: 22px;
    overflow: hidden
}

    .project img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0
    }

    .project:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,transparent 30%,rgba(4,42,59,.78))
    }

.project-content {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff
}

    .project-content span {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .8px;
        color: #ffd5af
    }

    .project-content h3 {
        font-size: 24px;
        margin: 7px 0 5px
    }

    .project-content p {
        font-size: 12px;
        line-height: 1.55;
        opacity: .88;
        margin: 0
    }

.project.small {
    min-height: 390px
}


.projects-more {
    text-align: center;
    margin-top: 32px
}

    .projects-more .btn {
        min-width: 190px
    }

/* volunteer */
.volunteer {
    padding: 96px 0
}

.vol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch
}

.vol-copy {
    background: linear-gradient(135deg,var(--blue-dark),#075d7e);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    position: relative;
    overflow: hidden
}

    .vol-copy:after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        right: -100px;
        top: -80px
    }

    .vol-copy .kicker {
        color: #ffc08c
    }

        .vol-copy .kicker:before {
            background: #ffc08c
        }

    .vol-copy h2 {
        font-size: 40px;
        line-height: 1.12;
        margin: 14px 0 15px
    }

    .vol-copy p {
        font-size: 14px;
        line-height: 1.7;
        color: #d7e7ed;
        max-width: 520px
    }

.vol-photo {
    margin-top: 24px;
    border-radius: 18px;
    overflow: hidden;
    height: 250px
}

    .vol-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.form-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    background: #fff;
    box-shadow: var(--shadow)
}

    .form-card h3 {
        margin: 0 0 7px;
        color: var(--blue-dark);
        font-size: 24px
    }

    .form-card > p {
        margin: 0 0 23px;
        font-size: 13px;
        color: var(--muted)
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.field label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .55px;
    color: #819097;
    font-weight: 800;
    margin-bottom: 6px
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid #d9e6eb;
    background: #fbfdfe;
    border-radius: 11px;
    padding: 13px 14px;
    font: inherit;
    font-size: 13px;
    outline: none
}

.field textarea {
    min-height: 112px;
    resize: vertical
}

.field.full {
    grid-column: 1/-1
}

/* testimonial */
.testimonial {
    padding: 88px 0;
    background: var(--blue-soft)
}

.quote-box {
    max-width: 920px;
    margin: 35px auto 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 38px 44px;
    text-align: center;
    box-shadow: var(--shadow)
}

.quote {
    font-size: 21px;
    line-height: 1.7;
    color: #314852;
    margin: 0 0 18px
}

.quote-mark {
    font-family: Georgia,serif;
    font-size: 52px;
    line-height: .8;
    color: var(--orange)
}

.quote-author strong {
    display: block;
    color: var(--blue-dark)
}

.quote-author span {
    font-size: 11px;
    color: var(--muted)
}

/* FAQ */
.faq {
    padding: 92px 0
}

.faq-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: start
}

.faq-intro {
    position: sticky;
    top: 110px
}

    .faq-intro p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted)
    }

.accordion {
    display: grid;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff
}

.faq-q {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 17px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font: inherit;
    font-weight: 800;
    color: var(--blue-dark);
    cursor: pointer
}

    .faq-q b {
        color: var(--orange);
        font-size: 20px
    }

.faq-a {
    display: none;
    padding: 0 19px 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}



/* ===== Instagram Feed - directly after students ===== */
.instagram-feed {
    padding: 0 0 92px;
    background: linear-gradient(180deg,#ffffff 0%,#f7fbfc 100%);
}

.instagram-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: radial-gradient(circle at 8% 8%,rgba(131,58,180,.08),transparent 22%), radial-gradient(circle at 95% 2%,rgba(245,130,32,.09),transparent 24%), #fff;
    box-shadow: 0 16px 38px rgba(4,66,89,.08);
    padding: 34px;
}

    .instagram-shell:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(180deg,#833ab4,#fd1d1d,#fcb045);
    }

.instagram-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
}

.instagram-title-wrap {
    max-width: 760px
}

.instagram-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    font-weight: 900;
    color: #c13584;
    margin-bottom: 10px;
}

    .instagram-kicker:before {
        content: "◎";
        display: grid;
        place-items: center;
        width: 27px;
        height: 27px;
        border-radius: 8px;
        color: #fff;
        background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
        font-size: 15px;
    }

.instagram-head h2 {
    margin: 0 0 9px;
    color: var(--blue-dark);
    font-size: 33px;
    line-height: 1.15;
    letter-spacing: -.55px;
}

    .instagram-head h2 span {
        background: linear-gradient(90deg,#833ab4,#fd1d1d,#f58220);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.instagram-head p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.instagram-follow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 168px;
    padding: 13px 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    background: linear-gradient(90deg,#833ab4,#fd1d1d,#fcb045);
    box-shadow: 0 10px 24px rgba(193,53,132,.18);
    transition: .2s ease;
}

    .instagram-follow:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(193,53,132,.25);
    }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 12px;
}

.insta-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 16px;
    background: #edf4f7;
    box-shadow: 0 8px 20px rgba(4,66,89,.07);
}

    .insta-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease,filter .35s ease;
    }

    .insta-card:hover img {
        transform: scale(1.06);
        filter: brightness(.82);
    }

.insta-type {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(3,31,44,.55);
    backdrop-filter: blur(4px);
    font-size: 11px;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 11px;
    color: #fff;
    opacity: 0;
    transition: .25s ease;
    background: linear-gradient(180deg,transparent 42%,rgba(3,31,44,.82));
}

.insta-card:hover .insta-overlay {
    opacity: 1
}

.insta-meta {
    display: flex;
    gap: 10px;
    font-size: 10px;
    font-weight: 850;
}

.instagram-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.instagram-note {
    margin: 0;
    color: #7d8d94;
    font-size: 11px;
    line-height: 1.5;
}

.instagram-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 850;
}

    .instagram-link:hover {
        color: var(--orange)
    }

@media(max-width:1100px) {
    .instagram-grid {
        grid-template-columns: repeat(3,1fr);
        gap: 14px
    }
}

@media(max-width:768px) {
    .instagram-feed {
        padding: 0 0 68px
    }

    .instagram-shell {
        padding: 24px 18px;
        border-radius: 22px
    }

    .instagram-head {
        display: block;
        text-align: center
    }

        .instagram-head h2 {
            font-size: 29px
        }

    .instagram-follow {
        margin-top: 18px
    }

    .instagram-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px
    }

    .insta-overlay {
        opacity: 1;
        background: linear-gradient(180deg,transparent 52%,rgba(3,31,44,.76))
    }

    .instagram-bottom {
        display: block;
        text-align: center
    }

    .instagram-link {
        display: inline-block;
        margin-top: 8px
    }
}

@media(max-width:420px) {
    .instagram-shell {
        padding: 20px 12px
    }

    .instagram-grid {
        gap: 8px
    }

    .insta-card {
        border-radius: 12px
    }

    .instagram-head h2 {
        font-size: 26px
    }
}

/* final CTA */
.final-cta {
    padding: 0 0 90px
}

.cta-box {
    background: linear-gradient(100deg,var(--blue-dark),var(--blue));
    border-radius: 28px;
    padding: 45px 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden
}

    .cta-box:after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        right: -110px;
        top: -140px;
        background: rgba(255,255,255,.06)
    }

    .cta-box h2 {
        font-size: 34px;
        max-width: 650px;
        margin: 0 0 8px
    }

    .cta-box p {
        margin: 0;
        color: #dcecf2;
        font-size: 13px
    }

/* footer */
footer {
    background: #052f43;
    color: #d9e8ee;
    padding: 62px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 40px;
    padding-bottom: 42px
}

.footer-logo {
    background: #fff;
    display: inline-block;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 16px
}

    .footer-logo img {
        width: 160px
    }

footer p {
    font-size: 12.5px;
    line-height: 1.7;
    color: #b9ced8;
    max-width: 390px
}

footer h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 16px
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    font-size: 12.5px;
    color: #b9ced8
}

footer a:hover {
    color: #fff
}

.contact-line {
    font-size: 12.5px;
    line-height: 1.65;
    color: #b9ced8;
    margin-bottom: 8px
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 18px 0;
    font-size: 11px;
    color: #9fb9c4;
    display: flex;
    justify-content: space-between;
    gap: 20px
}


/* ===== Header Cart / Account ===== */
.desktop-tools {
    display: flex;
    align-items: center;
    gap: 10px
}

.header-tool {
    position: relative
}

.header-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue-dark);
    font-size: 19px;
    cursor: pointer;
    transition: .2s ease;
}

    .header-icon-btn:hover {
        border-color: rgba(0,118,168,.35);
        background: var(--blue-soft);
        color: var(--blue);
    }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    border: 2px solid #fff;
    display: grid;
    place-items: center;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
}

.account-trigger {
    width: auto;
    min-width: 112px;
    padding: 0 13px;
    display: flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

    .account-trigger .chev {
        font-size: 10px;
        color: #81939b
    }

.account-dropdown {
    position: absolute;
    top: 54px;
    right: 0;
    width: 210px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(3,64,87,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.header-tool.open .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown:before {
    content: "";
    position: absolute;
    top: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
}

.account-user {
    padding: 10px 11px 11px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 5px;
}

    .account-user strong {
        display: block;
        font-size: 13px;
        color: var(--blue-dark)
    }

    .account-user span {
        font-size: 10px;
        color: var(--muted)
    }

.account-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 9px;
    color: #435963;
    font-size: 12px;
    font-weight: 700;
}

    .account-dropdown a:hover {
        background: var(--blue-soft);
        color: var(--blue)
    }

    .account-dropdown a.login-link {
        color: var(--blue)
    }

    .account-dropdown a.logout-link {
        color: #b84d32
    }

/* ===== Mobile bottom sticky action bar ===== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    min-height: 66px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid #d9e7ec;
    box-shadow: 0 -8px 28px rgba(4,61,82,.12);
    padding: 7px max(9px,env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(9px,env(safe-area-inset-left));
}

.mobile-bottom-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    max-width: 560px;
    margin: auto;
}

.mobile-action {
    position: relative;
    min-height: 50px;
    border: 0;
    background: transparent;
    color: #596e77;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font: inherit;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 10px;
}

    .mobile-action .mi {
        font-size: 20px;
        line-height: 1
    }

    .mobile-action.donate {
        background: var(--orange);
        color: #fff;
        box-shadow: 0 7px 18px rgba(245,130,32,.24);
    }

    .mobile-action:not(.donate):hover {
        background: var(--blue-soft);
        color: var(--blue)
    }

    .mobile-action .mobile-cart-count {
        position: absolute;
        top: 3px;
        left: calc(50% + 7px);
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border-radius: 999px;
        background: var(--orange);
        color: #fff;
        border: 2px solid #fff;
        display: grid;
        place-items: center;
        font-size: 8px;
    }

.mobile-account-sheet {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 78px;
    z-index: 101;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(3,64,87,.20);
    padding: 10px;
}

    .mobile-account-sheet.open {
        display: block
    }

    .mobile-account-sheet .sheet-title {
        padding: 8px 10px 12px;
        font-size: 13px;
        font-weight: 900;
        color: var(--blue-dark);
        border-bottom: 1px solid var(--line);
        margin-bottom: 5px;
    }

    .mobile-account-sheet a {
        display: flex;
        gap: 9px;
        align-items: center;
        padding: 11px 10px;
        border-radius: 10px;
        color: #435963;
        font-size: 12px;
        font-weight: 700;
    }

        .mobile-account-sheet a:hover {
            background: var(--blue-soft);
            color: var(--blue)
        }


/* ===== Mobile Menu Drawer ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3,31,44,.48);
    z-index: 119;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(86vw,320px);
    height: 100dvh;
    z-index: 120;
    background: #fff;
    box-shadow: -16px 0 40px rgba(3,31,44,.18);
    transition: right .28s ease;
    display: flex;
    flex-direction: column;
}

    .mobile-menu-drawer.open {
        right: 0
    }

.mobile-menu-head {
    min-height: 72px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

    .mobile-menu-head img {
        width: 145px
    }

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 14px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
}

    .mobile-menu-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 12px;
        border-radius: 10px;
        color: #334a54;
        font-size: 14px;
        font-weight: 800;
    }

        .mobile-menu-links a:hover {
            background: var(--blue-soft);
            color: var(--blue);
        }

        .mobile-menu-links a.active {
            background: var(--blue-soft);
            color: var(--blue);
        }

.mobile-menu-donate {
    margin: 12px 14px 18px;
    margin-top: auto;
}

body.menu-open {
    overflow: hidden
}

@media(max-width:1024px) {
    .menu {
        display: none
    }

    .menu-btn {
        display: grid;
        place-items: center
    }

    .account-trigger {
        min-width: 44px;
        width: 44px;
        padding: 0
    }

        .account-trigger > span:nth-child(2), .account-trigger .chev {
            display: none
        }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        min-height: auto
    }

    .hero-copy h1 {
        font-size: 50px
    }

    .students {
        grid-template-columns: repeat(2,1fr)
    }

    .why-grid, .vol-grid {
        gap: 38px
    }

    .project-grid {
        grid-template-columns: 1fr 1fr
    }

    .project:first-child {
        grid-column: 1/-1
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    body {
        padding-bottom: 72px
    }

    .student-search {
        grid-template-columns: 1fr 1fr
    }

    .gender-group {
        grid-column: 1/-1
    }

    .topbar {
        display: none
    }

    .nav {
        min-height: 70px
    }

    .logo img {
        width: 155px
    }

    .desktop-tools {
        display: none
    }

    .mobile-bottom-bar {
        display: block
    }

    .nav-actions .btn {
        display: none
    }

    .hero .container {
        grid-template-columns: 1fr;
        padding-block: 54px
    }

    .hero-copy {
        text-align: center
    }

        .hero-copy p {
            margin-inline: auto
        }

    .hero-actions, .hero-note {
        justify-content: center
    }

    .hero-copy h1 {
        font-size: 44px
    }

    .hero-visual {
        min-height: 460px
    }

    .hero-main {
        width: 82%;
        height: 410px
    }

    .hero-small {
        width: 48%
    }

    .impact-box {
        grid-template-columns: 1fr 1fr
    }

    .impact-item:nth-child(2):after {
        display: none
    }

    .impact-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .sponsor, .why, .support, .projects, .volunteer, .testimonial, .faq {
        padding: 70px 0
    }

    .sponsor-top {
        display: block
    }

        .sponsor-top .btn {
            margin-top: 20px
        }

    .students {
        grid-template-columns: 1fr
    }

    .section-head h2 {
        font-size: 34px
    }

    .why-grid, .vol-grid, .faq-wrap {
        grid-template-columns: 1fr
    }

    .faq-intro {
        position: static
    }

    .why-image {
        max-width: 600px;
        margin: auto
    }

        .why-image .main-img {
            height: 430px
        }

    .support-cards {
        grid-template-columns: 1fr
    }

    .project-grid {
        grid-template-columns: 1fr
    }

    .project:first-child {
        grid-column: auto
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .cta-box {
        display: block;
        text-align: center;
        padding: 36px 28px
    }

        .cta-box .btn {
            margin-top: 22px
        }
}

@media(max-width:560px) {
    .container {
        width: min(100% - 28px,1180px)
    }

    .student-search-wrap {
        padding: 13px
    }

    .student-search {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .gender-group {
        grid-column: auto
    }

    .search-note {
        text-align: center
    }

    .hero-copy h1 {
        font-size: 38px
    }

    .hero-copy p {
        font-size: 15px
    }

    .hero-visual {
        min-height: 395px
    }

    .hero-main {
        width: 88%;
        height: 355px;
        border-radius: 24px
    }

    .hero-small {
        width: 50%;
        bottom: 10px
    }

        .hero-small img {
            height: 155px
        }

    .hero-badge {
        right: 8px;
        padding: 11px 12px
    }

    .impact-item {
        padding: 20px 12px
    }

        .impact-item strong {
            font-size: 26px
        }

    .section-head h2 {
        font-size: 30px
    }

    .student-photo {
        height: 290px
    }

    .why-image .main-img {
        height: 370px;
        width: 90%
    }

    .why-image .small-img {
        height: 175px
    }

    .vol-copy, .form-card {
        padding: 26px
    }

        .vol-copy h2 {
            font-size: 31px
        }

    .quote-box {
        padding: 30px 22px
    }

    .quote {
        font-size: 17px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px
    }

        .footer-grid > div:nth-child(1) {
            grid-column: 1/-1
        }

        .footer-grid > div:nth-child(2) {
            grid-column: 1
        }

        .footer-grid > div:nth-child(3) {
            grid-column: 2
        }

        .footer-grid > div:nth-child(4) {
            grid-column: 1/-1
        }

    .copyright {
        display: block;
        text-align: center
    }
}

/* Hide top quick-action strip on mobile only */
@media (max-width: 768px) {
    .banner-mini-strip {
        display: none !important;
    }
}


/* Refreshed IK Education blue palette */
.btn-primary, .student-search-btn {
    background: linear-gradient(90deg,#087CC4,#16B4D8);
    border-color: #087CC4
}

    .btn-primary:hover, .student-search-btn:hover {
        background: linear-gradient(90deg,#066AA9,#087CC4);
        border-color: #066AA9
    }


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

        .footer-grid > div:nth-child(1) {
            grid-column: 1/-1
        }

        .footer-grid > div:nth-child(2) {
            grid-column: 1
        }

        .footer-grid > div:nth-child(3) {
            grid-column: 2
        }

        .footer-grid > div:nth-child(4) {
            grid-column: 1/-1
        }
}


.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 36px rgba(6,61,87,.14);
    z-index: 120
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    white-space: nowrap;
    border-radius: 8px
}

    .nav-dropdown-menu a:hover {
        background: var(--blue-soft);
        color: var(--blue)
    }


.mobile-menu-group {
    padding: 6px 0
}

    .mobile-menu-group strong {
        display: block;
        padding: 8px 0;
        color: var(--blue-dark);
        font-size: 13px
    }

    .mobile-menu-group a {
        padding-left: 14px !important;
        font-size: 14px !important
    }


/* Self-contained donation/cart icon — no external icon font required */
.donation-cart-icon {
    width: 29px;
    height: 29px;
    display: block;
    color: #087CC4;
    flex: 0 0 auto;
}

.header-icon-btn .donation-cart-icon,
.mobile-bottom-item .donation-cart-icon {
    margin: auto;
}


/* Darker navigation menu text */
.nav > a,
.nav-dropdown > a {
    color: #062F46 !important;
    font-weight: 700;
}

    .nav > a:hover,
    .nav-dropdown > a:hover {
        color: #087CC4 !important;
    }

.nav-dropdown-menu a {
    color: #062F46 !important;
    font-weight: 650;
}

    .nav-dropdown-menu a:hover {
        color: #087CC4 !important;
    }

/* Darker mobile navigation */
.mobile-drawer-links > a,
.mobile-menu-group strong,
.mobile-menu-group a {
    color: #062F46 !important;
}


/* ===== Actual TOP HEADER NAVIGATION - darker ===== */
.main-nav > a,
.main-nav .nav-dropdown > a,
.main-nav a,
header .main-nav a {
    color: #001F33 !important;
    font-weight: 700 !important;
}

    .main-nav > a:hover,
    .main-nav .nav-dropdown > a:hover,
    header .main-nav a:hover {
        color: #005F91 !important;
    }

/* Dropdown text */
.main-nav .nav-dropdown-menu a {
    color: #001F33 !important;
    font-weight: 650 !important;
}

    .main-nav .nav-dropdown-menu a:hover {
        color: #005F91 !important;
    }


/* ===== V8 TOP MENU: actual .container.nav selectors ===== */
header .container.nav > a,
.header .container.nav > a,
.container.nav > a,
.container.nav .nav-dropdown > a,
.container.nav .nav-dropdown-menu a {
    color: #001A2C !important;
    font-weight: 750 !important;
}

    header .container.nav > a:hover,
    .header .container.nav > a:hover,
    .container.nav > a:hover,
    .container.nav .nav-dropdown > a:hover,
    .container.nav .nav-dropdown-menu a:hover {
        color: #005A88 !important;
    }


/* ===== Header dropdown navigation ===== */
.top-menu {
    display: flex;
    align-items: center;
    gap: 27px;
    height: 100%;
}

    .top-menu > a,
    .top-menu-parent {
        color: #001A2C !important;
        font-weight: 750;
        font-size: 14px;
        text-decoration: none;
        white-space: nowrap;
        transition: .2s ease;
    }

        .top-menu > a:hover,
        .top-menu-parent:hover {
            color: #087CC4 !important;
        }

.top-menu-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 72px;
}

.menu-chevron {
    font-size: 15px;
    margin-left: 4px;
}

.top-submenu {
    position: absolute;
    left: -14px;
    top: calc(100% - 5px);
    width: 235px;
    padding: 9px;
    background: #fff;
    border: 1px solid #DCEAF0;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(0,31,51,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index: 999;
}

.top-menu-dropdown:hover .top-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #001A2C !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

    .top-submenu a:hover {
        color: #087CC4 !important;
        background: #EEF8FF;
    }

@media(max-width:980px) {
    .top-menu {
        display: none
    }
}


/* ===== Header alignment correction ===== */
.header .container.nav,
header .container.nav,
.container.nav {
    min-height: 78px !important;
    display: grid !important;
    grid-template-columns: 220px 1fr auto !important;
    align-items: center !important;
    column-gap: 28px !important;
}

    /* Logo */
    .container.nav .logo,
    .container.nav .brand {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }

        .container.nav .logo img,
        .container.nav .brand img {
            display: block !important;
            max-height: 62px !important;
            width: auto !important;
        }

/* Center navigation */
.top-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    height: 78px !important;
    margin: 0 !important;
    padding: 0 !important;
}

    .top-menu > a,
    .top-menu-dropdown {
        height: 78px !important;
        display: flex !important;
        align-items: center !important;
    }

.top-menu-parent {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.menu-chevron {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 6px !important;
    line-height: 1 !important;
}

/* Right-side actions */
.nav-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
    height: 78px !important;
}

    .nav-actions > * {
        flex-shrink: 0 !important;
    }

/* Keep submenu positioned correctly after vertical alignment */
.top-menu-dropdown {
    position: relative !important;
}

.top-submenu {
    top: calc(100% - 7px) !important;
}

/* Responsive: preserve original mobile header behavior */
@media(max-width:1100px) {
    .header .container.nav,
    header .container.nav,
    .container.nav {
        grid-template-columns: 190px 1fr auto !important;
        column-gap: 16px !important;
    }

    .top-menu {
        gap: 19px !important;
    }
}

@media(max-width:980px) {
    .top-menu {
        display: none !important;
    }

    .header .container.nav,
    header .container.nav,
    .container.nav {
        display: flex !important;
        justify-content: space-between !important;
        min-height: 68px !important;
    }
}


/* ===== Align only submenu arrows ===== */
.top-menu-parent {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.menu-chevron {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    font-size: 12px !important;
    margin: 0 !important;
    transform: translateY(-1px) !important;
}


/* Submenu arrow: same style/alignment as Account */
.top-menu-parent {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
}

    .top-menu-parent .menu-chevron {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        color: inherit !important;
        transform: none !important;
        position: relative !important;
        top: 0 !important;
        vertical-align: middle !important;
    }

/* CART SIDE POPUP */
#td-search-popup {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 100001;
    overflow-y: auto;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    transition: right .35s ease;
}

    #td-search-popup.active {
        right: 0;
    }

    /* Cart Header */
    #td-search-popup .cart-popup-header {
        height: 70px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e8eef2;
    }

        #td-search-popup .cart-popup-header h4 {
            margin: 0;
            color: #032B43;
            font-size: 20px;
            font-weight: 700;
        }

#cart-popup-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #eef8ff;
    color: #087CC4;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

    #cart-popup-close:hover {
        background: #087CC4;
        color: #fff;
    }

/* Cart Body */
#td-search-popup .search-form {
    padding: 20px;
}

#cartcontent {
    margin: 0;
}

/* Overlay */
#body-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 44, .55);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

    #body-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

body.cart-popup-open {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 576px) {
    #td-search-popup {
        width: 100%;
        right: -100%;
    }
}

/* =====================================
   CART POPUP CONTENT
===================================== */

#cartcontent {
    margin: 0;
}

    #cartcontent > * {
        width: 100%;
    }


/* Items wrapper */

.cart-items-wrapper {
    padding: 18px;
}


/* Student card */

.cart-student-card {
    display: flex;
    gap: 14px;
    padding: 15px;
    background: #e3edf3;
    border: 1px solid #bcd6e6;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(3, 43, 67, 0.06);
}


/* Image */

.cart-student-image-wrap {
    flex: 0 0 82px;
}

.cart-student-image {
    width: 82px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #eef8ff;
}


/* Content */

.cart-student-content {
    flex: 1;
    min-width: 0;
}

.cart-student-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cart-student-name {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #032B43;
    margin-bottom: 4px;
}

.cart-student-epp {
    font-size: 12px;
    color: #687b86;
}


/* Meta */

.cart-student-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

    .cart-student-meta span {
        font-size: 11px;
        font-weight: 600;
        color: #087CC4;
        background: #eef8ff;
        border-radius: 30px;
        padding: 5px 9px;
    }

.cart-student-area {
    margin-top: 8px;
    font-size: 12px;
    color: #566b77;
}


/* Price */

.cart-student-price-row {
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #edf2f5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.cart-price-main {
    font-size: 18px;
    font-weight: 800;
    color: #C45100;
}

    .cart-price-main small {
        font-size: 11px;
        font-weight: 600;
        color: #6c7d87;
    }

.cart-price-year {
    font-size: 11px;
    color: #6c7d87;
}


/* Delete */

.cart-delete-btn {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #d64545;
    background: #fff2f2;
    text-decoration: none;
    transition: .2s ease;
}

    .cart-delete-btn:hover {
        color: #fff;
        background: #d64545;
    }

    .cart-delete-btn svg {
        width: 17px;
        height: 17px;
    }


/* Footer checkout */

.cart-popup-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 15px 18px 18px;
    border-top: 1px solid #e8eef2;
}

.cart-checkout-btn {
    min-height: 50px;
    width: 100%;
    border-radius: 12px;
    background: #F58220;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
    box-shadow: 0 8px 20px rgba(245, 130, 32, .24);
}

    .cart-checkout-btn:hover {
        background: #e87313;
    }


/* Empty Cart */

.cart-empty-state {
    text-align: center;
    padding: 55px 28px;
}

.cart-empty-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    background: #EEF8FF;
    color: #087CC4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-empty-icon svg {
        width: 38px;
        height: 38px;
    }

.cart-empty-state h4 {
    margin: 0 0 8px;
    color: #032B43;
    font-size: 19px;
    font-weight: 700;
}

.cart-empty-state p {
    margin: 0 auto 20px;
    max-width: 260px;
    color: #697d88;
    font-size: 13px;
    line-height: 1.6;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    background: #087CC4;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* Mobile */

@media (max-width: 576px) {

    .cart-items-wrapper {
        padding: 13px;
    }

    .cart-student-card {
        gap: 11px;
        padding: 12px;
    }

    .cart-student-image-wrap {
        flex-basis: 72px;
    }

    .cart-student-image {
        width: 72px;
        height: 84px;
    }

    .cart-student-name {
        font-size: 15px;
    }

    .cart-student-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
}

/* =========================================
   FOOTER COUNTER
========================================= */

.footer-stats {
    padding: 0 0 22px 0;
}

.footer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-stat-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
}

.stat-green {
    background: #32d296;
}

.stat-red {
    background: #ff5148;
}

.stat-yellow {
    background: #ffb52e;
}

.footer-stat-content {
    line-height: 1.1;
}

.footer-stat-number {
    display: flex;
    align-items: baseline;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.footer-stat-title {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.years-text {
    margin-left: 5px;
    font-size: 18px;
}


/* Tablet */
@media (max-width: 991px) {

    .footer-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}


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

    .footer-stats {
        padding: 20px 0;
    }

    .footer-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }

    .footer-stat-item {
        gap: 10px;
        align-items: center;
    }

    .footer-stat-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }    

    .footer-stat-title {
        font-size: 9px;
        line-height: 1.35;
    }

    .years-text {
        font-size: 12px;
    }
}

.footer-stat-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}