        :root {
            --saffron: #FF9933;
            --green: #138808;
            --navy: #000080;
            --dark: #101828;
            --text: #667085;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #ffffff;
        }

        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;

            background:
                radial-gradient(circle at 10% 15%,
                    rgba(255, 153, 51, 0.16),
                    transparent 28%),

                radial-gradient(circle at 90% 80%,
                    rgba(19, 136, 8, 0.14),
                    transparent 30%),

                linear-gradient(135deg,
                    #ffffff,
                    #f8faff,
                    #f7fff7);
        }

        .hero::before {
            content: "☸";
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 650px;
            color: rgba(0, 0, 128, 0.025);
            font-family: Arial, sans-serif;
            pointer-events: none;
        }

        .container {
            width: min(90%, 1200px);
            margin: auto;
        }

        /* HERO CONTENT */

        .hero-container {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;

            padding: 9px 16px;

            border-radius: 50px;

            background: rgba(255,255,255,0.75);
            border: 1px solid rgba(0,0,128,0.10);

            color: var(--navy);

            font-size: 12px;
            font-weight: 600;

            box-shadow: 0 8px 25px rgba(16,24,40,0.06);
        }

        .hero-badge i {
            color: var(--saffron);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(19,136,8,0.10);
        }

        h1 {
            margin-top: 25px;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(48px, 6vw, 78px);
            line-height: 1.03;
            letter-spacing: -2px;
            color: var(--dark);
        }

        h1 .saffron {
            color: var(--saffron);
        }

        h1 .green {
            color: var(--green);
        }

        .hero-text {
            max-width: 600px;
            margin-top: 25px;
            color: var(--text);
            font-size: 15px;
            line-height: 1.9;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            min-height: 54px;
            padding: 0 23px;

            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;

            text-decoration: none;
            transition: 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #000080, #2439b6);
            color: white;
            box-shadow: 0 14px 30px rgba(0,0,128,0.22);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
        }

        .btn-secondary {
            background: white;
            color: var(--green);
            border: 1px solid rgba(19,136,8,0.25);
        }

        .btn-secondary:hover {
            background: var(--green);
            color: white;
            transform: translateY(-4px);
        }

        /* STATS */

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 48px;
        }

        .stat h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 29px;
            color: var(--dark);
        }

        .stat h3 span {
            color: var(--saffron);
        }

        .stat p {
            margin-top: 3px;
            font-size: 11px;
            color: var(--text);
        }

        /* CODE CARD */

        .visual {
            position: relative;
            min-height: 500px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .code-card {
            width: 100%;
            max-width: 430px;

            padding: 18px;

            background: rgba(255,255,255,0.90);
            border: 1px solid white;

            border-radius: 25px;

            box-shadow: 0 35px 80px rgba(0,0,128,0.16);

            transform: rotate(-2deg);
        }

        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 17px;
        }

        .card-logo {
            width: 45px;
            height: 45px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 13px;

            color: white;
            background: linear-gradient(135deg,
                var(--saffron),
                var(--navy),
                var(--green));
        }

        .status {
            color: var(--green);
            font-size: 10px;
            font-weight: 600;
        }

        .editor {
            background: #111827;
            border-radius: 16px;
            overflow: hidden;
        }

        .editor-header {
            height: 46px;
            background: #1f2937;

            display: flex;
            align-items: center;
            gap: 6px;

            padding: 0 16px;
        }

        .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

        .dot:nth-child(1) {
            background: #ff5f57;
        }

        .dot:nth-child(2) {
            background: #febc2e;
        }

        .dot:nth-child(3) {
            background: #28c840;
        }

        .editor-content {
            min-height: 220px;
            padding: 27px;

            color: #e5e7eb;

            font-family: monospace;
            font-size: 13px;
            line-height: 2;
        }

        .purple { color: #c084fc; }
        .blue { color: #60a5fa; }
        .orange { color: #fb923c; }
        .code-green { color: #4ade80; }

        .indent {
            padding-left: 24px;
        }

        /* FLOATING CARDS */

        .float-card {
            position: absolute;
            z-index: 3;

            display: flex;
            align-items: center;
            gap: 10px;

            padding: 12px;

            min-width: 145px;

            background: rgba(255,255,255,0.94);
            border: 1px solid white;

            border-radius: 15px;

            box-shadow: 0 15px 40px rgba(16,24,40,0.12);

            animation: float 4s ease-in-out infinite;
        }

        .float-card i {
            width: 38px;
            height: 38px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 10px;
        }

        .float-card strong {
            display: block;
            color: var(--dark);
            font-size: 11px;
        }

        .float-card small {
            color: var(--text);
            font-size: 9px;
        }

        .python {
            right: -10px;
            top: 55px;
        }

        .python i {
            color: var(--saffron);
            background: rgba(255,153,51,0.12);
        }

        .web {
            left: -20px;
            bottom: 90px;
            animation-delay: 1s;
        }

        .web i {
            color: var(--navy);
            background: rgba(0,0,128,0.08);
        }

        .app {
            right: 5px;
            bottom: 10px;
            animation-delay: 2s;
        }

        .app i {
            color: var(--green);
            background: rgba(19,136,8,0.10);
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* TIRANGA STRIP */

        .tiranga {
            position: absolute;
            bottom: 0;
            left: 0;

            width: 100%;
            height: 5px;

            display: flex;
        }

        .tiranga span {
            flex: 1;
        }

        .tiranga .orange-strip {
            background: var(--saffron);
        }

        .tiranga .white-strip {
            background: #e5e7eb;
        }

        .tiranga .green-strip {
            background: var(--green);
        }

        /* MOBILE */

        @media (max-width: 850px) {

            .hero-container {
                grid-template-columns: 1fr;
                padding: 80px 0;
                gap: 20px;
            }

            .hero {
                min-height: auto;
            }

            .visual {
                min-height: 430px;
                max-width: 550px;
                width: 100%;
                margin: auto;
            }
        }

        @media (max-width: 560px) {

            .hero-container {
                padding: 70px 0 80px;
            }

            h1 {
                font-size: 47px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            .stats {
                gap: 18px;
                justify-content: space-between;
            }

            .stat h3 {
                font-size: 23px;
            }

            .stat p {
                font-size: 9px;
            }

            .code-card {
                transform: none;
                padding: 13px;
            }

            .editor-content {
                padding: 20px;
                font-size: 10px;
            }

            .float-card {
                min-width: 120px;
                padding: 9px;
            }

            .python {
                right: -5px;
                top: 5px;
            }

            .web {
                left: -5px;
                bottom: 45px;
            }

            .app {
                right: -5px;
                bottom: -5px;
            }

        }
        /* ===============================
   PREMIUM NAVBAR
================================ */

.navbar {
    position: relative;
    z-index: 100;

    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 128, 0.06);
}

.nav-container {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: white;

    background: linear-gradient(
        135deg,
        var(--saffron),
        var(--navy),
        var(--green)
    );

    box-shadow: 0 10px 25px rgba(0, 0, 128, 0.18);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.5px;
    color: var(--dark);
}

.logo-text span {
    color: var(--green);
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;

    color: #475467;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        var(--saffron),
        var(--green)
    );

    transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* APPLY BUTTON */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    border-radius: 11px;

    background: linear-gradient(
        135deg,
        var(--saffron),
        #f57c00
    );

    color: white;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 24px rgba(255, 153, 51, 0.25);

    transition: 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-3px);
}


/* TIRANGA LINE */

.nav-tiranga {
    height: 4px;
    display: flex;
}

.nav-tiranga span {
    flex: 1;
}

.nav-tiranga span:nth-child(1) {
    background: var(--saffron);
}

.nav-tiranga span:nth-child(2) {
    background: white;
    border-top: 1px solid #eeeeee;
}

.nav-tiranga span:nth-child(3) {
    background: var(--green);
}


/* MOBILE BUTTON */

.menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    border: 1px solid #e4e7ec;
    background: white;

    border-radius: 12px;

    color: var(--navy);
    font-size: 18px;

    cursor: pointer;
}


/* MOBILE NAVBAR */

@media (max-width: 850px) {

    .nav-container {
        height: 72px;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

/* =========================================
   WHY CHOOSE CODEZEN-INDIA
========================================= */

.why-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Soft background decoration */

.why-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    left: -280px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 153, 51, 0.08),
        transparent 70%
    );

    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 2;

    max-width: 700px;
    margin: 0 auto 65px;

    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border-radius: 50px;

    background: rgba(0, 0, 128, 0.05);
    border: 1px solid rgba(0, 0, 128, 0.10);

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.section-badge i {
    color: var(--saffron);
}

.section-heading h2 {
    margin-top: 18px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--dark);
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading p {
    max-width: 600px;

    margin: 18px auto 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURE GRID
========================================= */

.features-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================
   FEATURE CARD
========================================= */

.feature-card {
    position: relative;

    min-height: 300px;

    padding: 32px 26px;

    background: #ffffff;

    border: 1px solid #eaecf0;

    border-radius: 22px;

    overflow: hidden;

    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0, 0, 128, 0.12);

    box-shadow: 0 25px 55px rgba(16, 24, 40, 0.10);
}


/* CARD NUMBER */

.feature-number {
    position: absolute;

    top: 22px;
    right: 24px;

    font-family: 'Outfit', sans-serif;

    font-size: 14px;

    font-weight: 700;

    color: rgba(0, 0, 128, 0.15);
}


/* FEATURE ICON */

.feature-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    font-size: 23px;

    margin-bottom: 26px;
}

.practical-icon {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.guidance-icon {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}

.project-icon {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.career-icon {
    background: rgba(255, 153, 51, 0.10);
    color: #e67e00;
}


/* CARD TEXT */

.feature-card h3 {
    font-family: 'Outfit', sans-serif;

    font-size: 21px;

    color: var(--dark);

    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text);

    font-size: 12px;

    line-height: 1.8;
}


/* BOTTOM HOVER LINE */

.feature-line {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--saffron),
        var(--navy),
        var(--green)
    );

    transition: 0.4s ease;
}

.feature-card:hover .feature-line {
    width: 100%;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .why-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        min-height: auto;
        padding: 28px 24px;
    }

}

/* =========================================
   POPULAR COURSES SECTION
========================================= */

.courses-section {
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
}

.courses-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.courses-heading h2 {
    margin: 18px 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.courses-heading h2 span {
    color: var(--green);
}

.courses-heading p {
    margin: 18px auto 0;
    max-width: 600px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   COURSES GRID
========================================= */

.courses-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100%;
}


/* =========================================
   COURSE CARD
========================================= */

.course-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 340px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 128, 0.2);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.12);
}


/* FEATURED PYTHON CARD */

.featured-course {
    border: 2px solid rgba(19, 136, 8, 0.25);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 9px 15px;

    background: var(--green);
    color: #ffffff;

    border-radius: 0 0 0 15px;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================
   CARD TOP
========================================= */

.course-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.course-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    font-size: 23px;
}

.course-orange {
    background: rgba(255, 153, 51, 0.12);
    color: #ff9933;
}

.course-blue,
.course-navy {
    background: rgba(0, 0, 128, 0.08);
    color: #000080;
}

.course-green {
    background: rgba(19, 136, 8, 0.10);
    color: #138808;
}

.course-tag {
    padding: 7px 12px;

    background: #f2f4f7;
    color: #667085;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================
   COURSE TEXT
========================================= */

.course-card h3 {
    margin: 0 0 12px;

    font-family: 'Outfit', sans-serif;
    font-size: 23px;

    color: var(--dark);
}

.course-card p {
    margin: 0;
    min-height: 65px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   COURSE META
========================================= */

.course-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;

    margin-top: 20px;
    padding-top: 18px;

    border-top: 1px solid #eaecf0;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #667085;

    font-size: 11px;
}

.course-meta i {
    color: var(--green);
}


/* =========================================
   COURSE LINK
========================================= */

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--navy);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.course-link:hover {
    color: var(--green);
}

.course-link i {
    transition: transform 0.3s ease;
}

.course-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.courses-bottom {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 28px;

    background: var(--navy);
    color: #ffffff;

    border-radius: 12px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-4px);
    background: var(--green);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .courses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .courses-section {
        padding: 75px 0;
    }

    .courses-heading {
        margin-bottom: 45px;
    }

    .courses-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .course-card {
        min-height: auto;
        padding: 24px;
    }

    .course-card p {
        min-height: auto;
    }

}

/* =========================================
   STUDENT PROJECTS SECTION
========================================= */

.projects-section {
    width: 100%;
    padding: 110px 0;
    background: #f8fafc;
}


/* =========================================
   PROJECTS HEADING
========================================= */

.projects-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.projects-heading h2 {
    margin: 18px 0 0;

    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;

    color: var(--dark);
}

.projects-heading h2 span {
    color: var(--green);
}

.projects-heading p {
    max-width: 620px;
    margin: 18px auto 0;

    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   PROJECT GRID
========================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
    position: relative;

    min-width: 0;
    padding: 30px;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 24px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 0, 128, 0.18);

    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.10);
}


/* FEATURED CARD */

.project-featured {
    border: 2px solid rgba(255, 153, 51, 0.35);
}


/* =========================================
   PROJECT NUMBER
========================================= */

.project-number {
    position: absolute;

    top: 22px;
    right: 25px;

    font-family: 'Outfit', sans-serif;

    font-size: 14px;
    font-weight: 800;

    color: rgba(0, 0, 128, 0.15);
}


/* =========================================
   PROJECT ICON
========================================= */

.project-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    font-size: 25px;
}

.project-orange {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.project-green {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.project-navy,
.project-blue {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}


/* =========================================
   PROJECT CATEGORY
========================================= */

.project-category {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* =========================================
   PROJECT CONTENT
========================================= */

.project-content h3 {
    margin: 0 0 12px;

    font-family: 'Outfit', sans-serif;

    font-size: 24px;

    color: var(--dark);
}

.project-content p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   TECHNOLOGY TAGS
========================================= */

.project-tech {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}

.project-tech span {
    padding: 7px 11px;

    background: #f2f4f7;

    border-radius: 50px;

    color: #667085;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   PROJECT LINK
========================================= */

.project-link {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: var(--navy);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.project-link:hover {
    color: var(--green);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   BOTTOM BUTTON
========================================= */

.projects-bottom {
    display: flex;
    justify-content: center;

    margin-top: 55px;
}

.view-projects-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 28px;

    background: var(--navy);

    color: #ffffff;

    border-radius: 12px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.view-projects-btn:hover {
    transform: translateY(-4px);

    background: var(--green);

    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .projects-section {
        padding: 75px 0;
    }

    .projects-heading {
        margin-bottom: 45px;
    }

    .project-card {
        padding: 25px;
    }

    .project-content h3 {
        font-size: 21px;
    }

}

/* =========================================
   STUDENT TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}


/* =========================================
   SECTION HEADING
========================================= */

.testimonials-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonials-heading h2 {
    margin: 18px 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.testimonials-heading h2 span {
    color: var(--green);
}

.testimonials-heading p {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   TESTIMONIAL GRID
========================================= */

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 128, 0.18);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.10);
}


/* FEATURED CARD */

.testimonial-featured {
    border: 2px solid rgba(19, 136, 8, 0.25);
    box-shadow: 0 15px 40px rgba(19, 136, 8, 0.08);
}


/* =========================================
   QUOTE ICON
========================================= */

.quote-icon {
    position: absolute;
    top: 25px;
    right: 28px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);

    font-size: 17px;
}


/* =========================================
   STAR RATING
========================================= */

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;

    color: var(--saffron);
    font-size: 13px;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
    margin: 0;

    min-height: 125px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   STUDENT INFO
========================================= */

.student-info {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 25px;
    padding-top: 22px;

    border-top: 1px solid #eaecf0;
}

.student-avatar {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--navy),
        var(--green)
    );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.student-info h4 {
    margin: 0 0 4px;

    font-family: 'Outfit', sans-serif;

    font-size: 15px;

    color: var(--dark);
}

.student-info span {
    color: var(--text);

    font-size: 11px;
}


/* =========================================
   TRUST STATS
========================================= */

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 70px;
    padding: 35px;

    background: linear-gradient(
        135deg,
        var(--navy),
        #0b2a72
    );

    border-radius: 24px;
}

.testimonial-stat {
    position: relative;
    text-align: center;
}

.testimonial-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 15%;
    right: -10px;

    width: 1px;
    height: 70%;

    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stat h3 {
    margin: 0;

    font-family: 'Outfit', sans-serif;

    font-size: 36px;

    color: #ffffff;
}

.testimonial-stat h3 span {
    color: var(--saffron);
}

.testimonial-stat p {
    margin: 6px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .testimonial-card:last-child {
        grid-column: span 2;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .testimonial-stat:nth-child(2)::after {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .testimonials-section {
        padding: 75px 0;
    }

    .testimonials-heading {
        margin-bottom: 45px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .testimonial-card:last-child {
        grid-column: auto;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        min-height: auto;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);

        padding: 28px 15px;

        gap: 30px 10px;

        border-radius: 20px;
    }

    .testimonial-stat h3 {
        font-size: 30px;
    }

    .testimonial-stat:not(:last-child)::after {
        display: none;
    }

}

/* =========================================
   ADMISSION CTA SECTION
========================================= */

.admission-section {
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
}

.admission-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;

    align-items: center;

    min-height: 500px;
    padding: 65px;

    overflow: hidden;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #071f5c
        );

    box-shadow:
        0 25px 70px
        rgba(0, 0, 128, 0.20);
}


/* =========================================
   LEFT CONTENT
========================================= */

.admission-content {
    position: relative;
    z-index: 3;
}

.admission-badge {
    display: inline-flex;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.15);
}

.admission-badge i {
    color: var(--saffron);
}

.admission-content h2 {
    margin: 22px 0 18px;

    max-width: 600px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    color: #ffffff;
}

.admission-content h2 span {
    color: var(--saffron);
}

.admission-content > p {
    max-width: 570px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   ADMISSION POINTS
========================================= */

.admission-points {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;
}

.admission-points div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 13px;
    font-weight: 500;
}

.admission-points i {
    color: var(--green);

    font-size: 16px;
}


/* =========================================
   BUTTONS
========================================= */

.admission-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}

.admission-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 23px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.primary-admission-btn {
    background: var(--saffron);

    color: #ffffff;
}

.primary-admission-btn:hover {
    transform: translateY(-4px);

    background: #ffffff;

    color: var(--navy);
}

.whatsapp-admission-btn {
    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;
}

.whatsapp-admission-btn:hover {
    transform: translateY(-4px);

    background: var(--green);

    border-color: var(--green);

    color: #ffffff;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.admission-visual {
    position: relative;

    height: 370px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* BACKGROUND CIRCLES */

.admission-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.circle-one {
    width: 300px;
    height: 300px;
}

.circle-two {
    width: 220px;
    height: 220px;

    border-color: rgba(255, 153, 51, 0.25);
}


/* MAIN ICON */

.admission-main-icon {
    position: relative;
    z-index: 2;

    width: 130px;
    height: 130px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 35px;

    background: linear-gradient(
        135deg,
        var(--saffron),
        #ff7b00
    );

    color: #ffffff;

    font-size: 55px;

    box-shadow:
        0 20px 50px
        rgba(255, 153, 51, 0.30);
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;
}

.floating-card i {
    color: var(--saffron);

    font-size: 17px;
}

.floating-card-one {
    top: 30px;
    left: 5%;
}

.floating-card-two {
    right: 0;
    top: 45%;
}

.floating-card-three {
    bottom: 20px;
    left: 15%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .admission-box {
        grid-template-columns: 1fr;

        padding: 50px;

        gap: 20px;
    }

    .admission-visual {
        height: 320px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .admission-section {
        padding: 75px 0;
    }

    .admission-box {
        padding: 35px 24px;

        border-radius: 24px;
    }

    .admission-content h2 {
        font-size: 38px;
    }

    .admission-points {
        flex-direction: column;

        gap: 12px;
    }

    .admission-buttons {
        flex-direction: column;
    }

    .admission-btn {
        width: 100%;
    }

    .admission-visual {
        height: 300px;

        margin-top: 10px;
    }

    .circle-one {
        width: 260px;
        height: 260px;
    }

    .circle-two {
        width: 190px;
        height: 190px;
    }

    .admission-main-icon {
        width: 110px;
        height: 110px;

        font-size: 45px;

        border-radius: 30px;
    }

    .floating-card {
        padding: 10px 12px;

        font-size: 10px;
    }

    .floating-card-one {
        top: 15px;
        left: 0;
    }

    .floating-card-two {
        right: 0;
        top: 48%;
    }

    .floating-card-three {
        bottom: 5px;
        left: 5%;
    }

}
/* =========================================
   LATEST UPDATES SECTION
========================================= */

.updates-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}


/* =========================================
   UPDATES HEADING
========================================= */

.updates-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 60px;
}

.updates-heading h2 {
    margin: 18px 0 0;

    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;

    color: var(--dark);
}

.updates-heading h2 span {
    color: var(--green);
}


/* VIEW ALL BUTTON */

.updates-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    border: 1px solid rgba(0, 0, 128, 0.15);
    border-radius: 12px;

    color: var(--navy);
    background: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.updates-view-btn:hover {
    background: var(--navy);
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   UPDATES GRID
========================================= */

.updates-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}


/* =========================================
   UPDATE CARD
========================================= */

.update-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 22px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.update-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 0, 128, 0.18);

    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.10);
}


/* =========================================
   UPDATE TOP
========================================= */

.update-top {
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 34px;
}

.update-top span {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.update-orange {
    background: rgba(255, 153, 51, 0.10);
    color: var(--saffron);
}

.update-green {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.update-navy {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}


/* =========================================
   UPDATE CONTENT
========================================= */

.update-content {
    padding: 28px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 14px;

    color: var(--green);

    font-size: 11px;
    font-weight: 600;
}

.update-content h3 {
    margin: 0 0 13px;

    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    line-height: 1.35;

    color: var(--dark);
}

.update-content p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   READ MORE LINK
========================================= */

.update-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--navy);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.update-link:hover {
    color: var(--green);
}

.update-link i {
    transition: transform 0.3s ease;
}

.update-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .updates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .update-card:last-child {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .updates-section {
        padding: 75px 0;
    }

    .updates-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 45px;
    }

    .updates-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .update-card:last-child {
        grid-column: auto;
    }

    .update-content {
        padding: 24px;
    }

    .updates-view-btn {
        width: 100%;
        justify-content: center;
    }

}/* =========================================
   LATEST UPDATES SECTION
========================================= */

.updates-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}


/* =========================================
   UPDATES HEADING
========================================= */

.updates-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 60px;
}

.updates-heading h2 {
    margin: 18px 0 0;

    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;

    color: var(--dark);
}

.updates-heading h2 span {
    color: var(--green);
}


/* VIEW ALL BUTTON */

.updates-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    border: 1px solid rgba(0, 0, 128, 0.15);
    border-radius: 12px;

    color: var(--navy);
    background: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.updates-view-btn:hover {
    background: var(--navy);
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   UPDATES GRID
========================================= */

.updates-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}


/* =========================================
   UPDATE CARD
========================================= */

.update-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 22px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.update-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 0, 128, 0.18);

    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.10);
}


/* =========================================
   UPDATE TOP
========================================= */

.update-top {
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 34px;
}

.update-top span {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.update-orange {
    background: rgba(255, 153, 51, 0.10);
    color: var(--saffron);
}

.update-green {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.update-navy {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}


/* =========================================
   UPDATE CONTENT
========================================= */

.update-content {
    padding: 28px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 14px;

    color: var(--green);

    font-size: 11px;
    font-weight: 600;
}

.update-content h3 {
    margin: 0 0 13px;

    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    line-height: 1.35;

    color: var(--dark);
}

.update-content p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   READ MORE LINK
========================================= */

.update-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--navy);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.update-link:hover {
    color: var(--green);
}

.update-link i {
    transition: transform 0.3s ease;
}

.update-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .updates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .update-card:last-child {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .updates-section {
        padding: 75px 0;
    }

    .updates-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 45px;
    }

    .updates-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .update-card:last-child {
        grid-column: auto;
    }

    .update-content {
        padding: 24px;
    }

    .updates-view-btn {
        width: 100%;
        justify-content: center;
    }

}/* =========================================
   LATEST UPDATES SECTION
========================================= */

.updates-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}


/* =========================================
   UPDATES HEADING
========================================= */

.updates-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 60px;
}

.updates-heading h2 {
    margin: 18px 0 0;

    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;

    color: var(--dark);
}

.updates-heading h2 span {
    color: var(--green);
}


/* VIEW ALL BUTTON */

.updates-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    border: 1px solid rgba(0, 0, 128, 0.15);
    border-radius: 12px;

    color: var(--navy);
    background: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.updates-view-btn:hover {
    background: var(--navy);
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   UPDATES GRID
========================================= */

.updates-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}


/* =========================================
   UPDATE CARD
========================================= */

.update-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #e4e7ec;
    border-radius: 22px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.update-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 0, 128, 0.18);

    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.10);
}


/* =========================================
   UPDATE TOP
========================================= */

.update-top {
    height: 145px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 34px;
}

.update-top span {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.update-orange {
    background: rgba(255, 153, 51, 0.10);
    color: var(--saffron);
}

.update-green {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.update-navy {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}


/* =========================================
   UPDATE CONTENT
========================================= */

.update-content {
    padding: 28px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 14px;

    color: var(--green);

    font-size: 11px;
    font-weight: 600;
}

.update-content h3 {
    margin: 0 0 13px;

    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    line-height: 1.35;

    color: var(--dark);
}

.update-content p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   READ MORE LINK
========================================= */

.update-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--navy);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.update-link:hover {
    color: var(--green);
}

.update-link i {
    transition: transform 0.3s ease;
}

.update-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .updates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .update-card:last-child {
        grid-column: span 2;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .updates-section {
        padding: 75px 0;
    }

    .updates-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 45px;
    }

    .updates-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .update-card:last-child {
        grid-column: auto;
    }

    .update-content {
        padding: 24px;
    }

    .updates-view-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   PREMIUM FOOTER
========================================= */

.footer {
    position: relative;
    padding: 80px 0 0;
    background: var(--dark);
    color: #ffffff;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;

    padding-bottom: 65px;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #ffffff;
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        var(--saffron),
        #ff7a00
    );

    color: #ffffff;

    font-size: 18px;
}

.footer-logo .logo-text {
    font-family: 'Outfit', sans-serif;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.3px;

    color: #ffffff;
}

.footer-logo .logo-text span {
    color: var(--saffron);
}


/* =========================================
   FOOTER ABOUT TEXT
========================================= */

.footer-column > p {
    max-width: 330px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h3 {
    margin: 8px 0 24px;

    font-family: 'Outfit', sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: #ffffff;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    position: relative;

    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    padding-left: 7px;
    color: var(--saffron);
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.footer-social {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);

    background: var(--saffron);

    color: #ffffff;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.footer-contact {
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    line-height: 1.6;
}

.contact-item i {
    width: 18px;

    margin-top: 3px;

    color: var(--saffron);

    font-size: 15px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.68);

    text-decoration: none;

    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--saffron);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}

.footer-made {
    font-weight: 500;
}

.footer-made span {
    margin: 0 6px;

    color: var(--saffron);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 50px;
    }

    .footer-column h3 {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        padding: 20px 0;
    }

}


/* =========================================
   ABOUT PAGE HERO
========================================= */

.page-hero {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061a4d,
            var(--navy)
        );
}

.page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -120px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: 8%;

    border-radius: 50%;

    border: 1px solid rgba(255, 153, 51, 0.20);
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;
}

.page-hero .section-badge {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;
}

.page-hero .section-badge i {
    color: var(--saffron);
}

.page-hero h1 {
    margin: 22px 0 20px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;

    line-height: 1.05;

    color: #ffffff;
}

.page-hero h1 span {
    color: var(--saffron);
}

.page-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   ABOUT INTRODUCTION
========================================= */

.about-intro-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 80px;
}

.about-intro-content h2 {
    margin: 20px 0;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.12;

    color: var(--dark);
}

.about-intro-content h2 span {
    color: var(--green);
}

.about-intro-content > p {
    margin: 0 0 16px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   ABOUT FEATURE LIST
========================================= */

.about-feature-list {
    display: grid;
    gap: 18px;

    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 18px;

    border: 1px solid #eaecf0;
    border-radius: 18px;

    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(8px);

    border-color: rgba(19, 136, 8, 0.25);

    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.07);
}

.about-feature-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);

    font-size: 19px;
}

.green-icon {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.navy-icon {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}

.about-feature h3 {
    margin: 2px 0 6px;

    font-family: 'Outfit', sans-serif;

    font-size: 17px;

    color: var(--dark);
}

.about-feature p {
    margin: 0;

    color: var(--text);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   ABOUT RIGHT VISUAL
========================================= */

.about-intro-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-card {
    position: relative;
    z-index: 2;

    width: 340px;
    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #071f5c
        );

    box-shadow:
        0 30px 70px
        rgba(0, 0, 128, 0.22);
}

.about-main-card::before {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-main-card > * {
    position: relative;
    z-index: 2;
}

.about-card-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 22px;

    background: var(--saffron);

    color: #ffffff;

    font-size: 35px;
}

.about-main-card span {
    color: var(--saffron);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.about-main-card h3 {
    margin: 12px 0;

    font-family: 'Outfit', sans-serif;

    font-size: 30px;

    color: #ffffff;
}

.about-main-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* FLOATING CARDS */

.about-floating-card {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: #ffffff;

    border: 1px solid #eaecf0;
    border-radius: 16px;

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.10);
}

.about-floating-card i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(19, 136, 8, 0.10);

    color: var(--green);
}

.about-floating-card strong {
    display: block;

    color: var(--dark);

    font-family: 'Outfit', sans-serif;

    font-size: 18px;
}

.about-floating-card span {
    display: block;

    margin-top: 2px;

    color: var(--text);

    font-size: 10px;
}

.about-float-one {
    top: 55px;
    left: 0;
}

.about-float-two {
    bottom: 55px;
    right: 0;
}

.about-float-two i {
    background: rgba(255, 153, 51, 0.12);

    color: var(--saffron);
}


/* =========================================
   MISSION & VISION
========================================= */

.mission-vision-section {
    padding: 110px 0;

    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.mission-card,
.vision-card {
    position: relative;

    padding: 50px;

    border-radius: 28px;

    overflow: hidden;
}

.mission-card {
    background: #ffffff;

    border: 1px solid #e4e7ec;
}

.vision-card {
    background:
        linear-gradient(
            135deg,
            var(--navy),
            #071f5c
        );

    color: #ffffff;
}

.mission-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 18px;

    background: rgba(255, 153, 51, 0.12);

    color: var(--saffron);

    font-size: 25px;
}

.vision-card .mission-icon {
    background: rgba(255, 255, 255, 0.10);
}

.mission-card > span,
.vision-card > span {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    color: var(--green);
}

.vision-card > span {
    color: var(--saffron);
}

.mission-card h2,
.vision-card h2 {
    margin: 0 0 18px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.2;
}

.mission-card h2 {
    color: var(--dark);
}

.vision-card h2 {
    color: #ffffff;
}

.mission-card h2 em,
.vision-card h2 em {
    display: block;

    font-style: normal;

    color: var(--saffron);
}

.mission-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.9;
}

.vision-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    padding: 110px 0;

    background: #ffffff;
}

.why-heading {
    max-width: 700px;

    margin-bottom: 60px;
}

.why-heading h2 {
    margin: 20px 0 0;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    color: var(--dark);
}

.why-heading h2 span {
    color: var(--green);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 30px 24px;

    border: 1px solid #e4e7ec;
    border-radius: 20px;

    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    border-color: rgba(19, 136, 8, 0.25);

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.08);
}

.why-card > i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background: rgba(19, 136, 8, 0.10);

    color: var(--green);

    font-size: 22px;
}

.why-card:nth-child(2) > i {
    background: rgba(255, 153, 51, 0.12);

    color: var(--saffron);
}

.why-card:nth-child(3) > i {
    background: rgba(0, 0, 128, 0.08);

    color: var(--navy);
}

.why-card h3 {
    margin: 0 0 10px;

    font-family: 'Outfit', sans-serif;

    font-size: 19px;

    color: var(--dark);
}

.why-card p {
    margin: 0;

    color: var(--text);

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-intro-visual {
        min-height: 430px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .page-hero {
        padding: 90px 0 85px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .about-intro-section,
    .mission-vision-section,
    .why-section {
        padding: 75px 0;
    }

    .about-intro-grid {
        gap: 50px;
    }

    .about-intro-visual {
        min-height: 400px;
    }

    .about-main-card {
        width: 280px;
        min-height: 300px;

        padding: 30px;
    }

    .about-main-card h3 {
        font-size: 25px;
    }

    .about-floating-card {
        padding: 11px 13px;
    }

    .about-float-one {
        top: 20px;
        left: 0;
    }

    .about-float-two {
        bottom: 15px;
        right: 0;
    }

    .mission-card,
    .vision-card {
        padding: 35px 28px;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 28px 22px;
    }

}

/* =========================================
   COURSES PAGE HERO
========================================= */

.courses-page-hero {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;

    background:
        linear-gradient(135deg, #061a4d 0%, var(--navy) 55%, #0b2d6b 100%);
}

.courses-page-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    right: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.courses-page-hero::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -170px;
    left: 8%;

    border-radius: 50%;

    background: rgba(255, 153, 51, 0.06);
}

.courses-page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;
}

.courses-page-hero .section-badge {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.15);
}

.courses-page-hero .section-badge i {
    color: var(--saffron);
}

.courses-page-hero h1 {
    margin: 22px 0 20px;

    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;

    line-height: 1.08;

    color: #ffffff;
}

.courses-page-hero h1 span {
    display: block;
    color: var(--saffron);
}

.courses-page-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   COURSE CATEGORY SECTION
========================================= */

.course-category-section {
    padding: 35px 0;

    background: #ffffff;

    border-bottom: 1px solid #e9ecef;
}

.course-category-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 65px;

    padding: 15px;

    text-decoration: none;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #ffffff;

    color: var(--dark);

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.category-card i {
    color: var(--green);
    font-size: 18px;

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);

    color: #ffffff;

    background: var(--navy);

    border-color: var(--navy);

    box-shadow: 0 12px 25px rgba(0, 0, 128, 0.15);
}

.category-card:hover i {
    color: var(--saffron);
}


/* =========================================
   COURSE LIST SECTION
========================================= */

.course-list-section {
    padding: 100px 0;

    background: #ffffff;
}

.light-section {
    background: #f7f9fc;
}


/* =========================================
   SECTION HEADING
========================================= */

.course-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.course-section-heading > div {
    max-width: 550px;
}

.course-small-title {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.course-section-heading h2 {
    margin: 0;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(35px, 4vw, 55px);
    font-weight: 800;

    line-height: 1.1;

    color: var(--dark);
}

.course-section-heading h2 span {
    color: var(--saffron);
}

.course-section-heading p {
    max-width: 430px;

    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   COURSE GRID
========================================= */

.detailed-course-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   DETAILED COURSE CARD
========================================= */

.detailed-course-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 30px;

    min-height: 420px;

    border: 1px solid #e5e7eb;
    border-radius: 22px;

    background: #ffffff;

    overflow: hidden;

    transition: all 0.35s ease;
}

.detailed-course-card:hover {
    transform: translateY(-8px);

    border-color: rgba(19, 136, 8, 0.30);

    box-shadow: 0 25px 50px rgba(16, 24, 40, 0.10);
}


/* FEATURED COURSE */

.featured-detailed-course {
    border: 2px solid rgba(255, 153, 51, 0.45);
}

.popular-course-label {
    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 7px 12px;

    border-radius: 50px;

    background: rgba(255, 153, 51, 0.12);

    color: var(--saffron);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================
   COURSE CARD TOP
========================================= */

.detailed-course-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.detailed-course-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 27px;
}

.saffron-bg {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.green-bg {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.navy-bg {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}

.course-level {
    padding: 7px 12px;

    border-radius: 50px;

    background: #f3f4f6;

    color: #667085;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================
   COURSE CONTENT
========================================= */

.detailed-course-card h3 {
    margin: 0 0 12px;

    font-family: 'Outfit', sans-serif;

    font-size: 23px;
    font-weight: 700;

    color: var(--dark);
}

.detailed-course-card > p {
    margin: 0 0 22px;

    color: var(--text);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   COURSE INFO
========================================= */

.course-info {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    padding: 16px 0;

    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
}

.course-info span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #667085;

    font-size: 11px;
}

.course-info i {
    color: var(--green);
}


/* =========================================
   COURSE SKILLS
========================================= */

.course-skills {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 20px 0;
}

.course-skills span {
    padding: 7px 11px;

    border-radius: 50px;

    background: #f3f5f7;

    color: #475467;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   COURSE BUTTON
========================================= */

.course-details-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    padding: 14px 18px;

    text-decoration: none;

    border-radius: 12px;

    background: #f5f7fa;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.course-details-btn:hover {
    background: var(--navy);

    color: #ffffff;
}

.course-details-btn i {
    transition: transform 0.3s ease;
}

.course-details-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   COURSE CTA
========================================= */

.course-page-cta {
    padding: 100px 0;

    background: #ffffff;
}

.course-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #071f5c
        );
}

.course-cta-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -150px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.course-cta-box > * {
    position: relative;
    z-index: 2;
}

.course-cta-box span {
    display: block;

    margin-bottom: 15px;

    color: var(--saffron);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.course-cta-box h2 {
    margin: 0 0 15px;

    max-width: 650px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.15;

    color: #ffffff;
}

.course-cta-box h2 em {
    display: block;

    font-style: normal;

    color: var(--saffron);
}

.course-cta-box p {
    margin: 0;

    max-width: 600px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.8;
}

.course-cta-btn {
    display: inline-flex;
    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 210px;

    padding: 17px 24px;

    text-decoration: none;

    border-radius: 12px;

    background: var(--saffron);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.course-cta-btn:hover {
    transform: translateY(-3px);

    background: #ff8a1f;

    box-shadow: 0 15px 30px rgba(255, 153, 51, 0.25);
}

.course-cta-btn i {
    font-size: 20px;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .course-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .detailed-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .course-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .courses-page-hero {
        padding: 90px 0 85px;
    }

    .courses-page-hero h1 {
        font-size: 42px;
    }

    .course-category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .category-card {
        min-height: 58px;

        font-size: 11px;

        padding: 10px;
    }

    .course-list-section {
        padding: 75px 0;
    }

    .course-section-heading {
        margin-bottom: 35px;
    }

    .detailed-course-grid {
        grid-template-columns: 1fr;
    }

    .detailed-course-card {
        min-height: auto;

        padding: 25px;
    }

    .course-page-cta {
        padding: 75px 0;
    }

    .course-cta-box {
        padding: 35px 25px;

        border-radius: 22px;
    }

    .course-cta-btn {
        width: 100%;
    }

}

/* =========================================
   ADMISSION PAGE HERO
========================================= */

.admission-hero {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #061a4d, var(--navy));
}

.admission-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.admission-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.admission-hero .section-badge {
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
}

.admission-hero .section-badge i {
    color: var(--saffron);
}

.admission-hero h1 {
    margin: 22px 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
}

.admission-hero h1 span {
    display: block;
    color: var(--saffron);
}

.admission-hero p {
    max-width: 650px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   ADMISSION PROCESS
========================================= */

.admission-process-section {
    padding: 100px 0;
    background: #fff;
}

.admission-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.admission-heading h2 {
    margin: 20px 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.admission-heading h2 span {
    display: block;
    color: var(--green);
}

.admission-heading > p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

.admission-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.admission-step {
    position: relative;
    padding: 35px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    transition: all 0.3s ease;
}

.admission-step:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(16,24,40,0.09);
    border-color: rgba(19,136,8,0.25);
}

.step-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #e5e7eb;
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.step-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 18px;
    font-size: 25px;
}

.saffron-step {
    background: rgba(255,153,51,0.12);
    color: var(--saffron);
}

.green-step {
    background: rgba(19,136,8,0.10);
    color: var(--green);
}

.navy-step {
    background: rgba(0,0,128,0.08);
    color: var(--navy);
}

.admission-step h3 {
    margin: 0 0 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    color: var(--dark);
}

.admission-step p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   ADMISSION FORM SECTION
========================================= */

.admission-form-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.admission-form-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.admission-small-title {
    display: block;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admission-info h2 {
    margin: 0 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.admission-info h2 span {
    display: block;
    color: var(--saffron);
}

.admission-info > p {
    max-width: 550px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

.admission-info-list {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.admission-info-item {
    display: flex;
    gap: 15px;
}

.admission-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,153,51,0.12);
    color: var(--saffron);
    font-size: 19px;
}

.green-info {
    background: rgba(19,136,8,0.10);
    color: var(--green);
}

.navy-info {
    background: rgba(0,0,128,0.08);
    color: var(--navy);
}

.admission-info-item h4 {
    margin: 2px 0 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    color: var(--dark);
}

.admission-info-item p {
    margin: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
}


/* CONTACT BOX */

.admission-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    border-radius: 18px;
    background: var(--navy);
}

.admission-contact-box > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admission-contact-box > div > i {
    font-size: 28px;
    color: #25D366;
}

.admission-contact-box strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.admission-contact-box span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,0.65);
    font-size: 10px;
}

.admission-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 15px;
    border-radius: 10px;
    background: var(--saffron);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   FORM CARD
========================================= */

.admission-form-card {
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(16,24,40,0.07);
}

.form-card-heading {
    margin-bottom: 30px;
}

.form-card-heading h3 {
    margin: 0 0 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    color: var(--dark);
}

.form-card-heading p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    transition: 0.3s;
}

.input-box:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(19,136,8,0.08);
}

.input-box > i {
    width: 45px;
    text-align: center;
    color: #98a2b3;
    font-size: 14px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 15px 15px 15px 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.input-box select {
    cursor: pointer;
}

.textarea-box {
    align-items: flex-start;
}

.textarea-box > i {
    padding-top: 17px;
}

.input-box textarea {
    resize: vertical;
    min-height: 110px;
}


/* SUBMIT BUTTON */

.admission-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: var(--navy);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.admission-submit-btn:hover {
    transform: translateY(-2px);
    background: var(--green);
    box-shadow: 0 12px 25px rgba(19,136,8,0.18);
}

.form-note {
    margin: 15px 0 0;
    text-align: center;
    color: #98a2b3;
    font-size: 10px;
}

.form-note i {
    margin-right: 4px;
    color: var(--green);
}


/* =========================================
   FINAL CTA
========================================= */

.admission-cta-section {
    padding: 100px 0;
    background: #fff;
}

.admission-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--navy), #071f5c);
}

.admission-cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.admission-cta-box > * {
    position: relative;
    z-index: 2;
}

.admission-cta-box span {
    display: block;
    margin-bottom: 14px;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admission-cta-box h2 {
    margin: 0 0 15px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    color: #fff;
}

.admission-cta-box h2 em {
    display: block;
    color: var(--saffron);
    font-style: normal;
}

.admission-cta-box p {
    margin: 0;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.admission-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 17px 25px;
    border-radius: 12px;
    background: var(--saffron);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.admission-cta-btn:hover {
    transform: translateY(-3px);
    background: var(--green);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .admission-steps-grid {
        grid-template-columns: 1fr;
    }

    .admission-form-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .admission-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    .admission-hero {
        padding: 90px 0 85px;
    }

    .admission-hero h1 {
        font-size: 42px;
    }

    .admission-process-section,
    .admission-form-section,
    .admission-cta-section {
        padding: 75px 0;
    }

    .admission-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .admission-contact-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .admission-contact-box a {
        width: 100%;
        justify-content: center;
    }

    .admission-cta-box {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .admission-cta-btn {
        width: 100%;
    }

}

/* =========================================
   CONTACT PAGE HERO
========================================= */

.contact-hero {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #061a4d, var(--navy));
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: 8%;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.06);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.contact-hero .section-badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hero .section-badge i {
    color: var(--saffron);
}

.contact-hero h1 {
    margin: 22px 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
}

.contact-hero h1 span {
    display: block;
    color: var(--saffron);
}

.contact-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info-section {
    padding: 90px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-info-card {
    padding: 30px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-7px);
    border-color: rgba(19, 136, 8, 0.25);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.09);
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    font-size: 22px;
}

.saffron-contact {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.green-contact {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.navy-contact {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}

.contact-info-card h3 {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: var(--dark);
}

.contact-info-card p {
    min-height: 45px;
    margin: 0 0 15px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.contact-info-card a:hover {
    color: var(--saffron);
}


/* =========================================
   CONTACT FORM SECTION
========================================= */

.contact-form-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-small-title {
    display: block;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-form-content h2 {
    margin: 0 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.contact-form-content h2 span {
    display: block;
    color: var(--saffron);
}

.contact-form-content > p {
    max-width: 550px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   CONTACT BENEFITS
========================================= */

.contact-benefits {
    display: grid;
    gap: 22px;
    margin-top: 40px;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-benefit > i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(19, 136, 8, 0.10);
    color: var(--green);

    font-size: 18px;
}

.contact-benefit h4 {
    margin: 2px 0 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    color: var(--dark);
}

.contact-benefit p {
    margin: 0;
    color: var(--text);
    font-size: 12px;
}


/* =========================================
   CONTACT FORM CARD
========================================= */

.contact-form-card {
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.07);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading h3 {
    margin: 0 0 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    color: var(--dark);
}

.contact-form-heading p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* =========================================
   CONTACT SUBMIT BUTTON
========================================= */

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px;

    border: none;
    border-radius: 12px;

    cursor: pointer;

    background: var(--navy);
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    background: var(--green);
    box-shadow: 0 12px 25px rgba(19, 136, 8, 0.18);
}


/* =========================================
   LOCATION SECTION
========================================= */

.contact-location-section {
    padding: 100px 0;
    background: #fff;
}

.location-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.location-heading > div {
    max-width: 600px;
}

.location-heading span {
    display: block;
    margin-bottom: 14px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.location-heading h2 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    color: var(--dark);
}

.location-heading h2 em {
    display: block;
    color: var(--saffron);
    font-style: normal;
}

.location-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.location-map {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
}

.location-map iframe {
    display: block;
}


/* =========================================
   CONTACT CTA
========================================= */

.contact-cta-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.contact-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 60px;

    overflow: hidden;
    border-radius: 30px;

    background: linear-gradient(135deg, var(--navy), #071f5c);
}

.contact-cta-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -220px;
    right: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-box > * {
    position: relative;
    z-index: 2;
}

.contact-cta-box span {
    display: block;
    margin-bottom: 14px;
    color: var(--saffron);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-cta-box h2 {
    margin: 0 0 15px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    color: #fff;
}

.contact-cta-box h2 em {
    display: block;
    color: var(--saffron);
    font-style: normal;
}

.contact-cta-box p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.8;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 210px;

    padding: 17px 25px;

    border-radius: 12px;

    background: var(--saffron);
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    background: var(--green);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .location-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .contact-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .contact-hero {
        padding: 90px 0 85px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-location-section,
    .contact-cta-section {
        padding: 75px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card p {
        min-height: auto;
    }

    .contact-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .location-map {
        border-radius: 18px;
    }

    .location-map iframe {
        height: 350px;
    }

    .contact-cta-box {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .contact-cta-btn {
        width: 100%;
    }

}
/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-hero {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #061a4d, var(--navy));
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: 8%;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.06);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.about-hero .section-badge {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero .section-badge i {
    color: var(--saffron);
}

.about-hero h1 {
    margin: 22px 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
}

.about-hero h1 span {
    display: block;
    color: var(--saffron);
}

.about-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   ABOUT INTRO SECTION
========================================= */

.about-intro-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {
    position: relative;
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-card {
    width: 100%;
    max-width: 470px;
    padding: 30px;

    border-radius: 25px;

    background: var(--navy);

    box-shadow: 0 30px 70px rgba(0, 0, 128, 0.20);
}

.about-code-header {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.about-code-logo {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--saffron);
    color: #ffffff;

    font-size: 18px;
}

.about-code-header span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-code-content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 45px 15px;
}

.code-line {
    font-family: monospace;
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 700;
}

.purple-text {
    color: #c084fc;
}

.blue-text {
    color: #60a5fa;
}

.green-text {
    color: #4ade80;
}


/* FLOATING CARDS */

.about-floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;

    border-radius: 15px;

    background: #ffffff;

    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.12);
}

.about-floating-card > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.about-floating-card strong {
    display: block;
    margin-bottom: 3px;

    color: var(--dark);

    font-size: 18px;
}

.about-floating-card span {
    color: var(--text);
    font-size: 10px;
}

.students-card {
    left: -20px;
    bottom: 45px;
}

.courses-card {
    right: -20px;
    top: 45px;
}

.courses-card > i {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}


/* =========================================
   ABOUT INTRO CONTENT
========================================= */

.about-small-title {
    display: block;
    margin-bottom: 15px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.about-intro-content h2 {
    margin: 0 0 22px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(35px, 4vw, 52px);
    font-weight: 800;

    line-height: 1.1;

    color: var(--dark);
}

.about-intro-content h2 span {
    display: block;
    color: var(--saffron);
}

.about-intro-content > p {
    margin-bottom: 16px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.9;
}


/* ABOUT POINTS */

.about-points {
    display: grid;
    gap: 14px;

    margin: 30px 0;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-point > div {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);
}

.about-point span {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}


/* BUTTON */

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 22px;

    border-radius: 12px;

    background: var(--navy);
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.about-primary-btn:hover {
    transform: translateY(-3px);

    background: var(--green);

    box-shadow: 0 12px 25px rgba(19, 136, 8, 0.18);
}


/* =========================================
   MISSION & VISION
========================================= */

.mission-vision-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card,
.vision-card {
    padding: 45px;

    border-radius: 25px;

    transition: all 0.3s ease;
}

.mission-card {
    background: var(--navy);
}

.vision-card {
    background: var(--green);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-6px);
}

.mission-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.12);
    color: var(--saffron);

    font-size: 25px;
}

.vision-card .mission-icon {
    color: #ffffff;
}

.mission-card > span,
.vision-card > span {
    display: block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.mission-card h2,
.vision-card h2 {
    margin: 0 0 18px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.15;

    color: #ffffff;
}

.mission-card h2 em,
.vision-card h2 em {
    display: block;

    color: var(--saffron);

    font-style: normal;
}

.vision-card h2 em {
    color: #ffffff;
}

.mission-card p,
.vision-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    padding: 110px 0;
    background: #ffffff;
}

.why-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}

.why-heading > div {
    max-width: 650px;
}

.why-heading span {
    display: block;

    margin-bottom: 15px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.why-heading h2 {
    margin: 0;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;

    color: var(--dark);
}

.why-heading h2 em {
    display: block;

    color: var(--saffron);

    font-style: normal;
}

.why-heading > p {
    max-width: 430px;

    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 30px 25px;

    border: 1px solid #e5e7eb;
    border-radius: 20px;

    background: #ffffff;

    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-7px);

    border-color: rgba(19, 136, 8, 0.25);

    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.09);
}

.why-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 16px;

    font-size: 22px;
}

.saffron-why {
    background: rgba(255, 153, 51, 0.12);
    color: var(--saffron);
}

.green-why {
    background: rgba(19, 136, 8, 0.10);
    color: var(--green);
}

.navy-why {
    background: rgba(0, 0, 128, 0.08);
    color: var(--navy);
}

.why-card h3 {
    margin: 0 0 10px;

    font-family: 'Outfit', sans-serif;

    font-size: 19px;

    color: var(--dark);
}

.why-card p {
    margin: 0;

    color: var(--text);

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================
   ABOUT STATS
========================================= */

.about-stats-section {
    padding: 85px 0;
    background: var(--navy);
}

.about-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat > i {
    margin-bottom: 15px;

    color: var(--saffron);

    font-size: 28px;
}

.about-stat h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-family: 'Outfit', sans-serif;

    font-size: 42px;
}

.about-stat h3 span {
    color: var(--saffron);
}

.about-stat p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}


/* =========================================
   ABOUT CTA
========================================= */

.about-cta-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.about-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    overflow: hidden;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        var(--navy),
        #071f5c
    );
}

.about-cta-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta-box > * {
    position: relative;
    z-index: 2;
}

.about-cta-box span {
    display: block;

    margin-bottom: 14px;

    color: var(--saffron);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.about-cta-box h2 {
    margin: 0 0 15px;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.15;

    color: #ffffff;
}

.about-cta-box h2 em {
    display: block;

    color: var(--saffron);

    font-style: normal;
}

.about-cta-box p {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.8;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 180px;

    padding: 17px 25px;

    border-radius: 12px;

    background: var(--saffron);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    transform: translateY(-3px);

    background: var(--green);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 600px;
        margin: auto;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .why-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 650px) {

    .about-hero {
        padding: 90px 0 85px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-intro-section,
    .mission-vision-section,
    .why-section,
    .about-cta-section {
        padding: 75px 0;
    }

    .about-visual {
        min-height: 380px;
    }

    .about-main-card {
        padding: 22px;
    }

    .about-code-content {
        padding: 35px 10px;
    }

    .students-card {
        left: 0;
        bottom: 10px;
    }

    .courses-card {
        right: 0;
        top: 10px;
    }

    .about-floating-card {
        padding: 12px;
    }

    .about-floating-card strong {
        font-size: 14px;
    }

    .about-floating-card span {
        font-size: 8px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .about-stat h3 {
        font-size: 34px;
    }

    .about-cta-box {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .about-cta-btn {
        width: 100%;
    }

}
/* =========================================
   GALLERY PAGE
========================================= */


/* =========================
   GALLERY HERO
========================= */

.gallery-hero {
    padding: 150px 0 100px;
    background:
        radial-gradient(circle at top right,
        rgba(255, 153, 51, 0.18),
        transparent 35%),
        #f8fafc;
    text-align: center;
}

.gallery-hero-content {
    max-width: 850px;
    margin: auto;
}

.gallery-hero .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.gallery-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 800;
}

.gallery-hero h1 span {
    color: #ff7a00;
}

.gallery-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}


/* =========================
   GALLERY INTRO
========================= */

.gallery-intro {
    padding: 100px 0 60px;
}

.gallery-intro-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.gallery-intro h2 {
    font-size: clamp(32px, 4vw, 50px);
    color: #0f172a;
    margin: 18px 0;
    font-weight: 800;
}

.gallery-intro h2 span {
    color: #138808;
}

.gallery-intro p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   GALLERY MAIN SECTION
========================= */

.gallery-section {
    padding: 40px 0 110px;
}


/* =========================
   FILTER BUTTONS
========================= */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.gallery-filter {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    border-color: #ff7a00;
    color: #ff7a00;
}

.gallery-filter.active {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
}


/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #e2e8f0;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* =========================
   IMAGE OVERLAY
========================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.9),
            rgba(15, 23, 42, 0.1)
        );

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 25px;

    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    transform: translateY(15px);
    transition: transform 0.35s ease;
}

.gallery-overlay i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #ff7a00;

    border-radius: 50%;

    transform: translateY(15px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}


/* =========================
   LIGHTBOX
========================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    background: rgba(2, 6, 23, 0.94);

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;

    padding: 70px 100px;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 1000px;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content p {
    color: #ffffff;
    margin-top: 15px;
    font-size: 17px;
    font-weight: 600;
}


/* CLOSE BUTTON */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.lightbox-close:hover {
    background: #ff7a00;
}


/* PREVIOUS / NEXT */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff7a00;
}


/* =========================
   GALLERY CTA
========================= */

.gallery-cta {
    padding: 0 0 110px;
}

.gallery-cta-box {
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    border-radius: 30px;

    padding: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    position: relative;

    overflow: hidden;
}

.gallery-cta-box::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 122, 0, 0.12);

    top: -150px;
    right: -100px;
}

.gallery-cta-box > * {
    position: relative;
    z-index: 1;
}

.gallery-cta-box span {
    color: #ff9d3d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.gallery-cta-box h2 {
    color: #ffffff;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.15;

    margin: 15px 0;
}

.gallery-cta-box h2 em {
    color: #ff9d3d;

    font-style: normal;
}

.gallery-cta-box p {
    max-width: 650px;

    color: #cbd5e1;

    line-height: 1.8;
}

.gallery-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #ff7a00;

    color: #ffffff;

    padding: 16px 28px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.gallery-cta-btn:hover {
    transform: translateY(-3px);

    background: #ffffff;

    color: #0f172a;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-cta-box {
        padding: 50px;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .gallery-hero {
        padding: 125px 0 75px;
    }

    .gallery-intro {
        padding: 75px 0 40px;
    }

    .gallery-section {
        padding-bottom: 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter {
        padding: 10px 18px;
        font-size: 13px;
    }

    .gallery-cta {
        padding-bottom: 80px;
    }

    .gallery-cta-box {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .gallery-lightbox {
        padding: 70px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

}

/* =========================================
   ADMISSION FORM PAGE
========================================= */

/* HERO */

.admission-form-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at top right,
        rgba(255, 136, 0, 0.12),
        transparent 35%),
        linear-gradient(135deg, #f8f9fc, #eef2f8);
    text-align: center;
}

.admission-form-hero-content {
    max-width: 750px;
    margin: auto;
}

.admission-form-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin: 20px 0;
    color: #182033;
}

.admission-form-hero h1 span {
    color: #ff8500;
}

.admission-form-hero p {
    max-width: 650px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #657084;
}


/* =========================================
   MAIN FORM SECTION
========================================= */

.student-admission-section {
    padding: 90px 0;
    background: #f7f8fb;
}

.student-admission-wrapper {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(20, 30, 55, 0.08);
    border: 1px solid #edf0f5;
}


/* =========================================
   FORM HEADER
========================================= */

.student-form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid #edf0f5;
}

.form-header-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff8500, #ff9f32);
    color: #ffffff;
    font-size: 26px;
    flex-shrink: 0;
}

.student-form-header h2 {
    font-size: 28px;
    margin: 0 0 6px;
    color: #182033;
}

.student-form-header p {
    margin: 0;
    color: #778196;
    font-size: 14px;
}

.student-form-header p span {
    color: #e53935;
    font-weight: 700;
}


/* =========================================
   FORM SECTION TITLE
========================================= */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 22px;
}

.form-section-title span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202b75;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.form-section-title h3 {
    margin: 0;
    font-size: 20px;
    color: #20263a;
}


/* =========================================
   FORM GRID
========================================= */

.student-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


/* =========================================
   FORM GROUP
========================================= */

.student-form-group {
    display: flex;
    flex-direction: column;
}

.student-form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #293246;
}

.student-form-group label span {
    color: #e53935;
}

.student-form-group input,
.student-form-group select,
.student-form-group textarea {
    width: 100%;
    border: 1px solid #dfe3ea;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 15px;
    font-family: inherit;
    font-size: 14px;
    color: #222;
    outline: none;
    transition: 0.3s ease;
}

.student-form-group textarea {
    resize: vertical;
}

.student-form-group input:focus,
.student-form-group select:focus,
.student-form-group textarea:focus {
    border-color: #ff8500;
    box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.1);
}

.student-form-group input::placeholder,
.student-form-group textarea::placeholder {
    color: #a0a7b3;
}

.student-form-group small {
    margin-top: 7px;
    font-size: 12px;
    color: #8a93a3;
}

.full-width {
    width: 100%;
}


/* =========================================
   FILE INPUT
========================================= */

.student-form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

.student-form-group input[type="file"]::file-selector-button {
    border: none;
    background: #eef1f7;
    color: #202b75;
    padding: 8px 12px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}


/* =========================================
   DECLARATION
========================================= */

.student-declaration {
    margin-top: 35px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fc;
    border: 1px solid #e8ebf1;
    border-radius: 12px;
}

.student-declaration input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #202b75;
    cursor: pointer;
    flex-shrink: 0;
}

.student-declaration label {
    font-size: 14px;
    line-height: 1.7;
    color: #687287;
    cursor: pointer;
}


/* =========================================
   SUBMIT AREA
========================================= */

.student-submit-area {
    margin-top: 30px;
    text-align: center;
}

.student-submit-btn {
    border: none;
    background: linear-gradient(135deg, #202b75, #3544a8);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(32, 43, 117, 0.2);
}

.student-submit-btn i {
    margin-left: 8px;
}

.student-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(32, 43, 117, 0.3);
}

.student-submit-area p {
    margin-top: 15px;
    font-size: 13px;
    color: #8991a0;
}

.student-submit-area p i {
    color: #1c8b3c;
    margin-right: 5px;
}


/* =========================================
   HELP SECTION
========================================= */

.admission-help-section {
    padding: 0 0 90px;
    background: #f7f8fb;
}

.admission-help-box {
    max-width: 1000px;
    margin: auto;
    padding: 30px 35px;
    background: linear-gradient(135deg, #202b75, #121a52);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(20, 30, 80, 0.18);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
}

.admission-help-box h3 {
    margin: 0 0 6px;
    font-size: 21px;
}

.admission-help-box p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.help-whatsapp-btn {
    margin-left: auto;
    white-space: nowrap;
    background: #ffffff;
    color: #1c8b3c;
    padding: 13px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.help-whatsapp-btn i {
    margin-right: 7px;
    font-size: 17px;
}

.help-whatsapp-btn:hover {
    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 768px) {

    .admission-form-hero {
        padding: 70px 0 60px;
    }

    .admission-form-hero h1 {
        font-size: 38px;
    }

    .student-admission-section {
        padding: 60px 0;
    }

    .student-admission-wrapper {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .student-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .student-form-header {
        align-items: flex-start;
    }

    .student-form-header h2 {
        font-size: 23px;
    }

    .admission-help-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .help-whatsapp-btn {
        margin-left: 0;
        margin-top: 10px;
    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 480px) {

    .admission-form-hero h1 {
        font-size: 32px;
    }

    .admission-form-hero p {
        font-size: 14px;
    }

    .student-admission-wrapper {
        padding: 25px 16px;
    }

    .student-form-header {
        flex-direction: column;
        gap: 14px;
    }

    .form-header-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .student-form-header h2 {
        font-size: 21px;
    }

    .form-section-title {
        margin-top: 32px;
    }

    .form-section-title h3 {
        font-size: 18px;
    }

    .student-form-group input,
    .student-form-group select,
    .student-form-group textarea {
        padding: 13px;
    }

    .student-submit-btn {
        width: 100%;
        padding: 16px 15px;
    }

    .admission-help-box {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .help-whatsapp-btn {
        width: 100%;
        text-align: center;
    }

}

/* =========================================
   HEADER LOGO - CORRECT FIX
========================================= */

.navbar {
    position: relative;
    z-index: 100;
    padding: 0 !important;
}

.nav-container {
    height: 72px !important;
    min-height: 72px !important;

    display: flex !important;
    align-items: center !important;
}

/* LOGO LINK */

.logo {
    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;
    height: 72px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
}

/* ACTUAL LOGO IMAGE */

.logo .website-logo {
    display: block !important;

    width: 100% !important;
    height: 100%; !important;

    max-width: 240px !important;
    max-height: 52px !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative !important;
    top: auto !important;
    left: auto !important;

    transform: none !important;
}

/* MOBILE */

@media (max-width: 850px) {

    .nav-container {
        height: 65px !important;
        min-height: 65px !important;
    }

    .logo {
        height: 65px !important;
    }

    .logo .website-logo {
        height: 44px !important;
        max-height: 44px !important;
        max-width: 190px !important;
    }

}

/* =========================================
   ADMISSION SUCCESS PAGE
========================================= */

.admission-success-section {
    min-height: 70vh;
    padding: 90px 0;
    background: #f7f8fb;
}

.admission-success-box {
    max-width: 750px;
    margin: auto;
    padding: 55px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(20, 30, 55, 0.10);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f7ed;
    color: #1c8b3c;

    font-size: 35px;
}

.admission-success-box h1 {
    margin: 20px 0 15px;
    font-size: 34px;
    color: #182033;
}

.admission-success-box h1 span {
    display: block;
    color: #202b75;
}

.success-message {
    max-width: 580px;
    margin: 0 auto;
    color: #737d90;
    line-height: 1.8;
}

.admission-number-box {
    margin: 35px 0;
    padding: 25px;
    background: linear-gradient(135deg, #202b75, #3544a8);
    border-radius: 16px;
    color: #ffffff;
}

.admission-number-box p {
    margin: 0 0 8px;
    font-size: 14px;
    opacity: 0.8;
}

.admission-number-box h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 2px;
}

.success-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.success-info > div {
    padding: 18px;
    background: #f8f9fc;
    border-radius: 12px;
}

.success-info i {
    color: #ff8500;
    font-size: 20px;
    margin-bottom: 8px;
}

.success-info p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6f7888;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.success-home-btn,
.success-new-btn {
    padding: 14px 22px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.success-home-btn {
    background: #202b75;
    color: #ffffff;
}

.success-home-btn i {
    margin-right: 7px;
}

.success-new-btn {
    border: 1px solid #dfe3ea;
    color: #202b75;
}

.success-home-btn:hover,
.success-new-btn:hover {
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 600px) {

    .admission-success-section {
        padding: 60px 0;
    }

    .admission-success-box {
        padding: 40px 20px;
    }

    .admission-success-box h1 {
        font-size: 26px;
    }

    .admission-number-box h2 {
        font-size: 24px;
    }

    .success-info {
        grid-template-columns: 1fr;
    }

    .success-buttons {
        flex-direction: column;
    }

    .success-home-btn,
    .success-new-btn {
        width: 100%;
    }

}

/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-dashboard {
    min-height: 100vh;
    padding: 50px 0;
    background: #f5f7fb;
}

.admin-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =========================================
   ADMIN HEADER
========================================= */

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 35px;
}

.admin-welcome {
    margin: 0 0 6px;

    color: #ff8500;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.admin-header h1 {
    margin: 0;

    color: #182033;

    font-size: 34px;
    font-weight: 700;
}

.admin-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 20px;

    background: #202b75;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    border-radius: 10px;

    transition: 0.3s ease;
}

.admin-site-btn:hover {
    background: #151d5c;
    transform: translateY(-2px);
}


/* =========================================
   ADMIN STATS
========================================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-bottom: 30px;
}

.admin-stat-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 25px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(20, 30, 55, 0.06);

    transition: 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(20, 30, 55, 0.10);
}

.admin-stat-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8ebff;
    color: #202b75;

    border-radius: 14px;

    font-size: 23px;
}

.admin-stat-icon.orange {
    background: #fff0df;
    color: #ff8500;
}

.admin-stat-icon.green {
    background: #e7f7ed;
    color: #1c8b3c;
}

.admin-stat-card span {
    display: block;

    margin-bottom: 5px;

    color: #7b8494;

    font-size: 14px;
}

.admin-stat-card h2 {
    margin: 0;

    color: #182033;

    font-size: 28px;
}

.status-active {
    color: #1c8b3c !important;
}


/* =========================================
   RECENT ADMISSIONS TABLE
========================================= */

.admin-table-box {
    padding: 28px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(20, 30, 55, 0.06);
}

.admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.admin-table-header h2 {
    margin: 0 0 5px;

    color: #182033;

    font-size: 22px;
}

.admin-table-header p {
    margin: 0;

    color: #7b8494;

    font-size: 14px;
}

.view-admissions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    border: 1px solid #dfe3ea;

    color: #202b75;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.view-admissions-btn:hover {
    background: #202b75;
    border-color: #202b75;

    color: #ffffff;
}


/* TABLE */

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 750px;
}

.admin-table th {
    padding: 15px;

    background: #f5f7fb;

    color: #6c7585;

    text-align: left;

    font-size: 13px;
    font-weight: 600;
}

.admin-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.admin-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.admin-table td {
    padding: 17px 15px;

    border-bottom: 1px solid #edf0f4;

    color: #4b5565;

    font-size: 14px;
}

.admin-table tbody tr {
    transition: 0.2s ease;
}

.admin-table tbody tr:hover {
    background: #fafbff;
}

.admission-id {
    color: #202b75 !important;

    font-weight: 700;
}

.no-admissions {
    padding: 40px !important;

    text-align: center;

    color: #8a93a3 !important;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .admin-stats {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .admin-dashboard {
        padding: 30px 0;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-header h1 {
        font-size: 28px;
    }

    .admin-site-btn {
        width: 100%;
        justify-content: center;
    }

    .admin-stat-card {
        padding: 20px;
    }

    .admin-table-box {
        padding: 18px;
    }

    .admin-table-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =========================================
   STUDENT DETAILS PAGE
========================================= */

.student-profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;

    box-shadow:
        0 10px 35px rgba(20, 30, 55, 0.08);
}


/* =========================================
   PROFILE TOP
========================================= */

.student-profile-top {
    display: flex;
    align-items: center;
    gap: 25px;

    padding-bottom: 30px;
    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f4;
}


/* STUDENT PHOTO */

.student-photo-box {
    width: 120px;
    height: 120px;

    flex-shrink: 0;

    border-radius: 18px;
    overflow: hidden;

    background: #f3f5fa;

    border: 3px solid #e8ebff;
}

.student-photo-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* PHOTO PLACEHOLDER */

.student-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #202b75;
    font-size: 45px;
}


/* MAIN INFO */

.student-main-info h2 {
    margin: 0 0 8px;

    color: #182033;

    font-size: 30px;
    font-weight: 700;
}

.student-admission-number {
    display: inline-block;

    margin: 0 0 15px;

    padding: 7px 13px;

    background: #e8ebff;

    color: #202b75;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* COURSE BADGE */

.student-course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 15px;

    background: #fff3e5;

    color: #e97800;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================
   DETAILS SECTION
========================================= */

.student-details-section {
    padding-bottom: 30px;
    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f4;
}

.student-details-section:last-of-type {
    border-bottom: none;
}


.student-details-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 22px;

    color: #182033;

    font-size: 19px;
}

.student-details-section h3 i {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e8ebff;

    color: #202b75;

    font-size: 15px;
}


/* DETAILS GRID */

.student-details-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.detail-item {
    padding: 18px;

    background: #f8f9fc;

    border-radius: 12px;

    border: 1px solid #edf0f4;
}


.detail-item span {
    display: block;

    margin-bottom: 7px;

    color: #8a93a3;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    font-weight: 600;
}


.detail-item strong {
    color: #273044;

    font-size: 15px;

    font-weight: 600;

    word-break: break-word;
}


/* =========================================
   ADDRESS
========================================= */

.student-address {
    padding: 20px;

    background: #f8f9fc;

    border-radius: 12px;

    border: 1px solid #edf0f4;
}

.student-address p {
    margin: 0 0 8px;

    color: #596273;

    font-size: 14px;

    line-height: 1.7;
}

.student-address p:last-child {
    margin-bottom: 0;

    font-weight: 600;

    color: #273044;
}


/* =========================================
   DOCUMENT BOX
========================================= */

.student-document-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px;

    margin: 30px 0;

    background: #f8f9fc;

    border: 1px solid #edf0f4;

    border-radius: 14px;
}


.student-document-box > div {
    display: flex;
    align-items: center;

    gap: 15px;
}


.student-document-box > div > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0df;

    color: #ff8500;

    border-radius: 11px;

    font-size: 21px;
}


.student-document-box h4 {
    margin: 0 0 5px;

    color: #273044;

    font-size: 16px;
}

.student-document-box p {
    margin: 0;

    color: #8a93a3;

    font-size: 13px;
}


/* VIEW DOCUMENT BUTTON */

.view-document-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    background: #202b75;

    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.view-document-btn:hover {
    background: #151d5c;

    transform: translateY(-2px);
}


/* =========================================
   APPLICATION DATE
========================================= */

.application-date {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 18px;

    background: #e8f7ed;

    color: #287a42;

    border-radius: 10px;

    font-size: 14px;
}

.application-date i {
    color: #1c8b3c;
}

.application-date strong {
    margin-left: 3px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .student-profile-card {
        padding: 22px;
    }

    .student-profile-top {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }

    .student-photo-box {
        width: 100px;
        height: 100px;
    }

    .student-main-info h2 {
        font-size: 25px;
    }

    .student-details-grid {
        grid-template-columns: 1fr;
    }

    .student-document-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .view-document-btn {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 480px) {

    .student-profile-card {
        padding: 18px;
        border-radius: 15px;
    }

    .student-details-section h3 {
        font-size: 17px;
    }

    .detail-item {
        padding: 15px;
    }

    .application-date {
        flex-wrap: wrap;
        text-align: center;
    }

}