/* ================= RESET ================= */
    html,
    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
    }

    a {
        text-decoration: none
    }

    /* ================= CONTAINER ================= */
    .container-wide {
        max-width: 1440px;
        margin: auto;
        padding: 0 36px;
    }

    @media(max-width:576px) {
        .container-wide {
            padding: 0 15px;
        }
    }

    /* ================= HEADER ================= */
    .custom-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        padding: 20px 0;
    }

    .custom-navbar {
        background: #fff;
        border-radius: 60px;
        padding: 18px 36px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    }

    .nav-link {
        color: #333;
        font-weight: 500;
        padding: 8px 16px;
    }

    .nav-link:hover {
        color: #f28705;
    }

    .nav-separator {
        color: #bbb;
    }

    .apply-btn {
        background: linear-gradient(135deg, #f7a531, #f28705);
        color: #fff;
        padding: 12px 26px;
        border-radius: 30px;
        font-weight: 600;
    }




    /* ================= FORM ================= */
    .enroll-card {
        width: 420px;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
        overflow: hidden;
    }

    .enroll-header {
        background: linear-gradient(135deg, #f7a531, #f28705);
        color: #fff;
        text-align: center;
        padding: 13px;
    }

    .enroll-card form {
        padding: 28px;
    }

    .form-control {
        height: 48px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .enroll-btn {
        background: #008dd2;
        color: #fff;
        font-weight: 600;
        padding: 12px;
        border-radius: 10px;
    }

    /* ================= SECTIONS ================= */
    .section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-weight: 700;
    }

    .section-title p {
        color: #666;
    }

    /* ================= FACILITIES ================= */
    .facility-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        height: 100%;
    }

    .facility-card i {
        font-size: 36px;
        color: #f28705;
        margin-bottom: 15px;
    }

    /* ================= ADMISSIONS ================= */
    .steps li {
        margin-bottom: 12px;
        font-weight: 500;
    }

    /* ================= CONTACT ================= */
    .contact-box {
        background: #fff;
        padding: 30px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    /* ================= FOOTER ================= */
    footer {
        background: #222;
        color: #ccc;
        padding: 40px 0;
    }

    footer a {
        color: #ccc;
    }

    /* ================= ABOUT SECTION ================= */
    .about-section {
        padding: 90px 0;
        background: #fff;
    }

    .section-label {
        color: #f28705;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .section-heading {
        font-weight: 800;
        margin-bottom: 25px;
    }

    .about-text {
        max-width: 900px;
        margin: 0 auto 15px;
        color: #555;
        font-size: 16px;
        line-height: 1.7;
    }

    /* HIGHLIGHTS */
    .about-highlights {
        margin: 70px 0;
    }

    .highlight-title {
        font-weight: 700;
        margin-bottom: 40px;
    }

    .highlight-box {
        padding: 30px 20px;
        border: 1px solid #eee;
        background: #fafafa;
    }

    .highlight-number {
        font-size: 36px;
        font-weight: 800;
        color: #f28705;
    }

    /* MANAGEMENT */
    .management-section {
        margin-top: 80px;
    }

    .management-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transition: transform .3s ease;
    }

    .management-card:hover {
        transform: translateY(-6px);
    }

    .management-card h5 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .management-card .designation {
        display: block;
        font-size: 14px;
        color: #f28705;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .management-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    /* MANAGEMENT IMAGE (FIXED) */
    .management-img {
        margin: 0 auto 15px;
        border-radius: 10%;
        overflow: hidden;
        /* MUST */
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .management-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ================= FOUNDER SECTION ================= */
    /* ================= FOUNDER SECTION (HEIGHT ADJUSTED) ================= */

    .founder-image {
        height: 480px;
        /* ⬅️ increased from 420px */
    }

    @media (max-width: 991px) {
        .founder-image {
            height: 360px;
            /* tablet */
        }
    }

    @media (max-width: 576px) {
        .founder-image {
            height: 280px;
            /* mobile */
        }
    }

    .founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .founder-designation {
        display: block;
        font-size: 14px;
        color: #f28705;
        font-weight: 600;
        margin-bottom: 15px;
    }


    /* FORCE GLOBAL PARAGRAPH SIZE */
    body p {
        font-size: 18.5px !important;
        line-height: 1.75 !important;
        color: #555;
    }

    @media (max-width: 991px) {
        body p {
            font-size: 16px !important;
        }
    }

    @media (max-width: 576px) {
        body p {
            font-size: 15.5px !important;
            line-height: 1.7 !important;
        }
    }



    /* ================= FACILITIES SECTION ================= */
    .facilities-section {
        padding: 90px 0;
    }

    .facility-card {
        background: #fff;
        border-radius: 18px;
        padding: 35px 30px;
        height: 100%;
        text-align: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .facility-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .facility-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: rgba(242, 135, 5, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .facility-icon i {
        font-size: 30px;
        color: #f28705;
    }

    .facility-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .facility-card p {
        font-size: 15.5px;
        line-height: 1.6;
        color: #555;
    }

    /* MOBILE */
    @media (max-width: 576px) {
        .facility-card {
            padding: 28px 22px;
        }
    }


    /* .management-img {
    outline: 2px dashed red;
} */

    /* ================= ADMISSIONS SECTION ================= */
    .admissions-section {
        padding: 90px 0;
    }

    .admission-head {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .admission-highlights .admit-feature {
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform .3s ease;
    }

    .admission-highlights .admit-feature:hover {
        transform: translateY(-6px);
    }

    .admit-feature i {
        font-size: 36px;
        color: #f28705;
        margin-bottom: 10px;
    }

    .admit-feature h6 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .process-step {
        background: #fff;
        padding: 18px 22px;
        border-radius: 14px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    }

    .step-badge {
        background: #f28705;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        display: inline-block;
        margin-bottom: 10px;
    }

    .scholarship-section .scholar-box {
        background: #fff;
        padding: 14px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
        font-weight: 600;
        font-size: 15px;
    }

    .scholarship-section .tag {
        display: block;
        font-size: 13px;
        color: #007bff;
        margin-top: 4px;
        font-weight: 700;
    }

    /* ADMISSIONS OPEN STRIP */
    .admission-open-box {
        background: linear-gradient(135deg, #fff7ed, #fff);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .admission-badge {
        display: inline-block;
        background: #f28705;
        color: #fff;
        padding: 6px 14px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .admission-year {
        font-weight: 800;
        margin-bottom: 8px;
    }

    /* APPLY BUTTON (NEW COLOR) */
    .btn-admission-apply {
        background: #008dd2;
        color: #fff;
        padding: 14px 34px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 40px;
        transition: all 0.3s ease;
    }

    .btn-admission-apply:hover {
        background: #16873e;
        color: #fff;
        transform: translateY(-2px);
    }

    /* ================= ADMISSIONS PROCESS – REFINED ================= */

    .admission-process .process-card {
        background: #fff;
        border-radius: 18px;
        padding: 24px 28px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        height: 100%;
        /* equal height cards */
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .admission-process .process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

    /* STEP NUMBER */
    .step-circle {
        min-width: 46px;
        height: 46px;
        line-height: 46px;
        background: linear-gradient(135deg, #f28705, #f7a531);
        color: #fff;
        font-weight: 800;
        font-size: 16px;
        border-radius: 50%;
        text-align: center;
    }

    /* CONTENT */
    .process-content h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .process-content p {
        font-size: 15.5px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 576px) {
        .admission-process .process-card {
            padding: 20px;
            gap: 16px;
        }

        .step-circle {
            min-width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 14px;
        }
    }


    /* ================= SCHOLARSHIP – NEW COLOR THEME ================= */

    .scholarship-section h3 {
        font-weight: 800;
        color: #1f2937;
        /* dark slate */
    }

    /* COMMON CARD STYLE */
    .scholar-box {
        padding: 34px 22px;
        border-radius: 22px;
        color: #ffffff;
        text-align: center;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .scholar-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
    }

    .scholar-box h4 {
        font-size: 38px;
        font-weight: 900;
        margin-bottom: 6px;
    }

    .scholar-box p {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    /* COLOR VARIANTS */

    /* 95%+ */
    .scholar-box.highlight {
        background: linear-gradient(135deg, #16a34a, #22c55e);
        /* emerald green */
    }

    /* 90%+ */
    .scholar-box.primary {
        background: linear-gradient(135deg, #1d4ed8, #3b82f6);
        /* royal blue */
    }

    /* 85%+ */
    .scholar-box.secondary {
        background: linear-gradient(135deg, #0f766e, #14b8a6);
        /* teal */
    }

    /* 80%+ – DISTINCT COLOR */
    .scholar-box.tertiary {
        background: linear-gradient(135deg, #6d28d9, #8b5cf6);
        /* violet / indigo */
    }


    /* MOBILE */
    @media (max-width: 576px) {
        .scholar-box {
            padding: 26px 18px;
        }

        .scholar-box h4 {
            font-size: 32px;
        }
    }

    /* MOBILE SPACING FOR SCHOLARSHIP CARDS */
    @media (max-width: 576px) {
        .scholarship-section .col-sm-6 {
            margin-bottom: 16px;
            /* space between cards */
        }
    }


    /* ================= APPLY CTA – REDESIGN ================= */

    .apply-cta-section {
        margin-top: 70px;
        display: flex;
        justify-content: center;
    }

    .apply-cta-box {
        background: linear-gradient(135deg, #f28705, #f7a531);
        color: #fff;
        text-align: center;
        padding: 45px 40px;
        border-radius: 26px;
        max-width: 760px;
        width: 100%;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    }

    .apply-cta-box h4 {
        font-weight: 800;
        margin-bottom: 10px;
    }

    .apply-cta-box p {
        font-size: 16px;
        opacity: 0.95;
        margin-bottom: 22px;
    }

    .apply-cta-btn {
        display: inline-block;
        background: #ffffff;
        color: #f7a531;
        padding: 14px 42px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .apply-cta-btn:hover {
        transform: translateY(-2px);
        background: #f0fdf4;
        color: #f28705;
    }

    /* MOBILE */
    @media (max-width: 576px) {
        .apply-cta-box {
            padding: 32px 24px;
            border-radius: 20px;
        }

        .apply-cta-btn {
            width: 100%;
            padding: 14px;
        }
    }

    /* ================= CONTACT SECTION ================= */

    .contact-section {
        padding: 90px 0;
    }

    .contact-info-box {
        background: #fff;
        border-radius: 26px;
        padding: 40px 36px;
        height: 100%;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .contact-info-box h4 {
        font-weight: 800;
        margin-bottom: 8px;
    }

    .contact-desc {
        margin-bottom: 25px;
        color: #666;
    }

    .contact-item {
        display: flex;
        gap: 18px;
        margin-bottom: 22px;
    }

    .contact-item i {
        font-size: 22px;
        color: #f28705;
        min-width: 26px;
        margin-top: 4px;
    }

    .contact-item h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .contact-item p {
        margin: 0;
        color: #555;
        line-height: 1.6;
    }

    /* FIX EMAIL OVERFLOW ON MOBILE */
    .contact-item p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    @media (max-width: 576px) {
        .contact-item {
            gap: 14px;
        }
    }

    /* CTA BUTTONS */
    .contact-cta {
        display: flex;
        gap: 14px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .btn-call {
        background: #1ea44d;
        color: #fff;
        padding: 12px 26px;
        border-radius: 40px;
        font-weight: 600;
    }

    .btn-call:hover {
        background: #16873e;
        color: #fff;
    }

    .btn-map {
        background: #f28705;
        color: #fff;
        padding: 12px 26px;
        border-radius: 40px;
        font-weight: 600;
    }

    .btn-map:hover {
        background: #d97706;
        color: #fff;
    }

    /* MAP */
    .contact-map {
        height: 100%;
        min-height: 420px;
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* MOBILE */
    @media (max-width: 576px) {
        .contact-info-box {
            padding: 30px 24px;
        }

        .contact-map {
            min-height: 300px;
        }
    }

    /* ================= FEATURE BAR ================= */

    .feature-bar-section {
        margin-top: -20px;
        /* pulls bar upward over hero */
        position: relative;
        z-index: 5;
    }

    .feature-bar {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border-radius: 60px;
        padding: 26px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        gap: 20px;
    }

    /* ITEM */
    .feature-item {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, #f7a531, #f28705);
        /* SAME AS BUTTON */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(242, 135, 5, 0.35);
    }

    .feature-icon i {
        font-size: 22px;
        color: #ffffff;
        /* white icon */
    }


    .feature-item h6 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: #1f2937;
        white-space: nowrap;
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */
    @media (max-width: 991px) {
        .feature-bar {
            flex-wrap: wrap;
            justify-content: center;
            border-radius: 40px;
            padding: 24px;
        }

        .feature-item {
            width: 45%;
            justify-content: center;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .feature-bar-section {
            margin-top: -40px;
        }

        .feature-bar {
            border-radius: 26px;
            padding: 20px;
            gap: 16px;
        }

        .feature-item {
            width: 100%;
            justify-content: flex-start;
        }

        .feature-item h6 {
            font-size: 15px;
        }
    }


    /* ================= FEATURE BAR – MOBILE REFINEMENT ================= */
    @media (max-width: 576px) {

        .feature-bar {
            padding: 18px 16px;
            border-radius: 22px;
            margin-top: 66px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 10px;
        }

        /* ICON SMALLER & CLEAN */
        .feature-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            box-shadow: 0 6px 14px rgba(242, 135, 5, 0.25);
        }

        .feature-icon i {
            font-size: 18px;
        }

        /* TEXT OPTIMIZED */
        .feature-item h6 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
        }

        /* REMOVE HEAVY VISUAL SEPARATION */
        .feature-item:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
    }

    @media (max-width: 576px) {

    .feature-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 14px;
        padding: 18px 16px;
        border-radius: 22px;
        margin-top: 66px;
    }

    .feature-item {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 10px;
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    /* REMOVE bottom border (not needed in grid) */
    .feature-item:not(:last-child) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .feature-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-item h6 {
        white-space: normal;
        font-size: 12px;
        line-height: 1.2;
    }
    

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 17px;
    }
}




/* ================= HERO CONTENT REFINED ================= */

/* .hero-content {
    max-width: 560px;
} */

.hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-title-muted {
    /* color: #f7a531; */
    /* color: #1ea44d; */
    color: #f28705;
    font-weight: 800;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);

}

.hero-title-highlight {
    color: #f28705;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-subtext {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.hero-subtext {
    margin-top: 20px;
}

.hero-subtext .line {
    display: block;
    line-height: 1.7;
}


/* Line 1 */
.hero-subtext .line-1 {
    font-size: 26px;
    /* color: #1f2937; */
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.48);
}
/* Line 2 */
.hero-subtext .line-2 {
    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.48);
}
/* Line 3 – emphasis */
.hero-subtext .line-3 {
    /* font-size: 20px;
    font-weight: 600;
    color: #f7a531; brand orange */

    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.48);
}
/* Line 4 */
.hero-subtext .line-4 {
    
    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.48);
}

/* Line 5 */
.hero-subtext .line-5 {
    font-size: 26px;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.48);
}



.enroll-card {
    width: 490px;
    background: rgba(255, 255, 255, 0.65);   /* glass effect */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(6px);      /* Safari support */

    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

@media (max-width: 576px) {
    .enroll-card {
        width: 340px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(4px);
    }
}

 /* SMOOTH SCROLL */
    html {
        scroll-behavior: smooth;
    }

    section {
        scroll-margin-top: 140px;
        /* height of fixed header */
    }


/* ================= FIXED HEADER HEIGHT CONTROL ================= */

/* Desktop default */
.custom-header {
    padding: 20px 0;
}

/* Tablet */
@media (max-width: 991px) {
    .custom-header {
        padding: 14px 0;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-header {
        padding: 10px 0;
    }
}



/* ================= NAVBAR MOBILE REFINEMENT ================= */

@media (max-width: 576px) {
    .custom-navbar {
        padding: 14px 20px;
        border-radius: 40px;
    }

    .navbar-brand img {
        height: 48px; /* reduce logo size */
    }
}

@media (max-width: 576px) {
    section {
        scroll-margin-top: 160px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        border-radius: 20px;
        padding: 16px;
        margin-top: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
}

/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 576px) {
    .custom-header {
        height: 96px; /* FIXED HEIGHT */
        padding: 0;
        display: flex;
        align-items: center;
    }

    .custom-navbar {
        padding: 12px 18px;
        border-radius: 42px;
        width: 100%;
    }

    .navbar-brand img {
        height: 44px;
    }
}



/* ================= NAVBAR TOGGLER FIX ================= */

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Custom burger icon (dark, visible on white bg) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(242,135,5,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= MOBILE NAV TOGGLE – FINAL FIX ================= */
@media (max-width: 576px) {

    /* Prevent header from expanding */
    .custom-header {
        height: 96px;
        align-items: center;
    }

    /* Float menu BELOW header instead of inside */
    .navbar-collapse {
        position: absolute;
        top: 110%;
        left: 0;
        right: 0;

        background: #ffffff;
        border-radius: 26px;
        padding: 22px 20px;

        box-shadow: 0 30px 70px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    /* Center menu items */
    .navbar-nav {
        align-items: center;
        text-align: center;
    }

    /* Stack links nicely */
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 0;
    }

    /* ❌ REMOVE PIPE SYMBOLS */
    .nav-separator {
        display: none;
    }

    /* Apply button full width */
    .apply-btn {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* ================= TABLET + MOBILE NAV FIX ================= */
@media (max-width: 991px) {

    /* Prevent header stretching */
    .custom-header {
        height: 96px;
        display: flex;
        align-items: center;
    }

    /* Floating dropdown card */
    .navbar-collapse {
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translateX(-50%);

        width: calc(100% - 40px);
        max-width: 520px;

        background: #ffffff;
        border-radius: 28px;
        padding: 26px 22px;

        box-shadow: 0 30px 70px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    /* Center nav items */
    .navbar-nav {
        align-items: center;
        text-align: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 600;
        padding: 10px 0;
    }

    /* ❌ REMOVE PIPE SYMBOLS IN TOGGLE MODE */
    .nav-separator {
        display: none;
    }

    /* Apply button full width */
    .apply-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}


/* ================= TABLET HEADER WIDTH FIX ================= */


/* ================= TABLET HEADER – FULL WIDTH PILL ================= */
@media (max-width: 991px) {

    /* remove container padding ONLY for header */
    .custom-header .container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .custom-navbar {
        width: 100%;              /* full available width */
        max-width: none;          /* ✅ critical */
        margin: 0 auto;
        border-radius: 60px;
    }
}


/* ================= TABLET HEADER – FULL WIDTH PILL ================= */
@media (max-width: 991px) {

    /* remove container padding ONLY for header */
    .custom-header .container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .custom-navbar {
        width: 100%;              /* full available width */
        max-width: none;          /* ✅ critical */
        margin: 0 auto;
        border-radius: 60px;
    }
}





.justify-fix {
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -1.2px;
  hyphens: auto;
}

/* Hide hero subtext on mobile only */
@media (max-width: 767px) {
  .hero-subtext {
    display: none;
  }
}


@media (max-width: 767px) {
  .hero-subtext .line-3,
  .hero-subtext .line-4,
  .hero-subtext .line-5,
  .hero-subtext .line-6 {
    display: none;
  }
}



/* ================= GALLERY ================= */

.gallery-section {
    padding: 30px 0;
    background: #f9fafb;
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title h2 {
    font-weight: 800;
}

.gallery-title p {
    color: #666;
}

/* CAROUSEL */
.gallery-carousel {
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

/* CARD */
.gallery-card {
    flex: 0 0 320px;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CENTER CARD */
.gallery-card.active {
    transform: scale(1.08);
    opacity: 1;
    z-index: 2;
}

/* SIDE CARDS */
.gallery-card:not(.active) {
    transform: scale(0.9);
    opacity: 0.6;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .gallery-carousel {
        padding: 0;
        margin: 0 auto;
    }

    .gallery-track {
        transform: none !important;   /* 🔥 RESET DESKTOP TRANSFORM */
        justify-content: center;
        position: relative;
    }

    .gallery-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 300px;

        position: absolute;
        left: 0;
        top: 0;

        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .gallery-card.active {
        position: relative;
        opacity: 1;
        transform: scale(1);
    }

    .gallery-card:not(.active) {
        display: none;
    }
}

@keyframes focusGlow {
    0% { box-shadow: 0 0 0 rgba(242,135,5,0); }
    50% { box-shadow: 0 0 28px rgba(242,135,5,0.45); }
    100% { box-shadow: 0 0 0 rgba(242,135,5,0); }
}

.enroll-card.highlight {
    animation: focusGlow 1.6s ease-in-out infinite;
}


/* ================= MANAGEMENT SPOTLIGHT ================= */

.management-spotlight {
    max-width: 520px;
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 36px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
}

/* IMAGE */
.spotlight-img {
    width: 180px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(242,135,5,0.35);
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.management-spotlight h4 {
    font-weight: 800;
    margin-bottom: 4px;
}

/* DESIGNATION */
.management-spotlight .designation {
    display: block;
    color: #f28705;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 14px;
}

/* TEXT */
.management-spotlight p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* QUOTE */
.leadership-quote {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    font-style: italic;
    font-size: 14px;
    color: #666;
}

/* MOBILE */
@media (max-width: 576px) {
    .management-spotlight {
        padding: 32px 24px;
    }

    .spotlight-img {
        width: 150px;
        height: 190px;
    }
}


/* ================= SINGLE MANAGEMENT CARD FIX ================= */

.management-single {
    display: flex;
    justify-content: center;
}

/* Expand card width but keep it readable */
.management-single .management-card {
    max-width: 900px;        /* ⬅️ KEY */
    width: 100%;
    padding: 42px 46px;      /* more breathing space */
}

/* Improve text readability for long content */
.management-single .management-card p {
    font-size: 16px;
    line-height: 1.75;
}

/* Image + title spacing refinement */
.management-single .management-img {
    margin-bottom: 25px;
}

/* Tablet */
@media (max-width: 991px) {
    .management-single .management-card {
        max-width: 720px;
        padding: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .management-single .management-card {
        max-width: 100%;
        padding: 28px 24px;
    }
}


.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: 8px;
}

/* ================= MANAGEMENT SIDE-BY-SIDE ================= */

.management-single {
    display: flex;
    justify-content: center;
}

.management-split {
    max-width: 1320px;   /* ⬅️ desktop container width */
    width: 100%;
    padding: 56px 64px;
}


/* Image sizing */
.split-img {
    width: 220px;
    height: 280px;
    margin: 0 auto;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.management-split h5 {
    font-size: 22px;
    font-weight: 800;
}

/* Designation */
.management-split .designation {
    font-size: 15px;
    font-weight: 600;
    color: #f28705;
}


.management-split p {
    font-size: 17.5px;
    line-height: 1.9;
    max-width: 720px;      /* ⬅️ prevents very long lines */
    color: #444;
}

.split-img {
    background: #fff;
    padding: 14px;
    border-radius: 22px;
}

.management-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f28705, #f7a531);
    margin: 14px 0 18px;
    border-radius: 4px;
}


/* Tablet */
@media (max-width: 991px) {
    .management-split {
        padding: 36px;
    }

   .split-img {
    width: 240px;
    height: 300px;
}
}

/* Mobile – stack vertically */
@media (max-width: 576px) {
    .management-split {
        padding: 28px 24px;
        text-align: center;
    }

    .management-split p {
        text-align: justify;
    }
}

@media (max-width: 991px) {
    .management-split {
        max-width: 100%;
        padding: 40px;
    }

    .management-split p {
        max-width: 100%;
        font-size: 16.5px;
    }
}

@media (max-width: 576px) {
    .management-split {
        padding: 28px 24px;
        text-align: center;
    }

    .management-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================= FOUNDER SECTION – REDESIGN ================= */

.founder-section {
    padding: 100px 0;
    background: #fafafa;
}

.founder-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* IMAGE SIDE */
.founder-image-wrap {
    height: 100%;
    min-height: 520px;
}

.founder-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT SIDE */
.founder-content {
    padding: 64px 72px;
}

.founder-name {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 6px;
}

.founder-designation {
    display: block;
    color: #f28705;
    font-weight: 600;
    font-size: 16px;
}

/* DIVIDER */
.founder-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #f28705, #f7a531);
    border-radius: 3px;
    margin: 18px 0 26px;
}

/* TEXT */
.founder-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    max-width: 640px;
}

/* TABLET */
@media (max-width: 991px) {
    .founder-image-wrap {
        min-height: 420px;
    }

    .founder-content {
        padding: 48px;
    }

    .founder-name {
        font-size: 26px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .founder-section {
        padding: 70px 0;
    }

    .founder-content {
        padding: 32px 26px;
        text-align: center;
    }

    .founder-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-content p {
        max-width: 100%;
        text-align: justify;
        font-size: 16px;
    }
}


/* ================= FOUNDER – PREMIUM REDESIGN ================= */

.founder-section {
    padding: 110px 0;
    background: #f9fafb;
}

/* CARD */
.founder-card-premium {
    background: #ffffff;
    border-radius: 36px;
    box-shadow: 
        0 30px 70px rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(0,0,0,0.03);
    overflow: hidden;
}

/* IMAGE SIDE */
.founder-image-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: linear-gradient(
        135deg,
        #fff7ed,
        #ffffff
    );
}

.founder-image-frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(242,135,5,0.35);
}

.founder-image-frame img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CONTENT */
.founder-content-premium {
    padding: 70px 80px;
}

.founder-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1f2937;
}

.founder-designation {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #f28705;
}

/* DIVIDER */
.founder-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #f28705, #f7a531);
    margin: 18px 0 28px;
    border-radius: 3px;
}

/* TEXT */
.founder-content-premium p {
    font-size: 17.5px;
    line-height: 1.9;
    color: #444;
    max-width: 640px;
    margin-bottom: 18px;
}

/* QUOTE */
.founder-quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid #f28705;
    font-style: italic;
    font-size: 16px;
    color: #555;
}

/* TABLET */
@media (max-width: 991px) {
    .founder-content-premium {
        padding: 48px;
    }

    .founder-name {
        font-size: 26px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .founder-section {
        padding: 80px 0;
    }

    .founder-image-premium {
        padding: 36px;
    }

    .founder-content-premium {
        padding: 32px 26px;
        text-align: center;
    }

    .founder-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-content-premium p {
        max-width: 100%;
        text-align: justify;
        font-size: 16px;
    }

    .founder-quote {
        border-left: none;
        border-top: 2px solid #f28705;
        padding: 18px 0 0;
        margin-top: 24px;
    }
}

.hero-section {
        min-height: calc(100vh - 96px);
        padding-top: 120px;

        /* SECTION BACKGROUND IMAGE */
        background-image: url('../img/bg2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .hero-section {
        min-height: calc(100vh - 96px);
        padding-top: 120px;
    }

    /* Image behavior */
    .hero-image {
        width: 100%;
        height: auto;
        max-height: calc(100vh - 120px);
        object-fit: contain;
    }

    /* Desktop spacing */
    @media (min-width: 992px) {
        .hero-image-col {
            padding-right: 40px;
        }
    }

    /* Mobile spacing */
    @media (max-width: 991px) {
        .hero-image {
            margin-bottom: 40px;
        }
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .hero-section .row {
        margin-left: 0;
        margin-right: 0;
    }


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
