﻿


        /* --- BRAND COLOR PALETTE & FONTS --- */
        :root {
            --primary-navy: #0F294A;
            --secondary-blue: #1E3E62;
            --brand-gold: #EAAA08;
            --bg-cream: #FAF9F6;
            --text-dark: #1F2937;
            --text-muted: #4B5563;
            --font-heading: 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: #ffffff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* --- TOP BAR --- */
        .top-social-bar {
            background-color: var(--primary-navy);
            color: #ffffff;
            font-size: 0.85rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

            .top-social-bar a {
                color: rgba(255,255,255,0.85);
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .top-social-bar a:hover {
                    color: var(--brand-gold);
                }

        .social-links-top a {
            margin-left: 18px;
            font-size: 0.95rem;
        }

        /* --- PREMIUM HEADER MENU --- */
        .header-main {
            background-color: #ffffff;
            box-shadow: 0 4px 25px rgba(15, 41, 74, 0.06);
            padding: 12px 0;
        }

        .logo-img {
            max-height: 52px;
            width: auto;
        }

        @media(min-width: 992px) {
            .logo-img {
                max-height: 65px;
            }
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
            color: var(--primary-navy) !important;
            font-size: 1.4rem;
        }

            .navbar-toggler:focus {
                box-shadow: none;
            }

        /* --- DESKTOP VIEW MENU SYSTEM --- */
        @media(min-width: 992px) {
            .desktop-navbar-nav {
                display: flex !important;
                flex-direction: row;
                list-style: none;
                margin: 0;
                padding: 0;
                align-items: center;
                gap: 5px;
            }

                .desktop-navbar-nav .nav-item .nav-link {
                    color: var(--primary-navy) !important;
                    font-weight: 700;
                    font-size: 0.92rem;
                    letter-spacing: 0.2px;
                    padding: 10px 14px !important;
                    position: relative;
                    transition: color 0.3s ease;
                }

                    .desktop-navbar-nav .nav-item .nav-link::after {
                        content: '';
                        position: absolute;
                        bottom: -4px;
                        left: 14px;
                        width: 0;
                        height: 2px;
                        background-color: var(--brand-gold);
                        transition: width 0.3s ease;
                    }

                    .desktop-navbar-nav .nav-item .nav-link:hover::after,
                    .desktop-navbar-nav .nav-item .nav-link.active::after {
                        width: calc(100% - 28px);
                    }

                .desktop-navbar-nav .dropdown-menu {
                    border: none;
                    box-shadow: 0 15px 35px rgba(15, 41, 74, 0.1);
                    border-top: 3px solid var(--brand-gold);
                    border-radius: 0 0 8px 8px;
                    background-color: #ffffff;
                    padding: 10px 0;
                    display: none;
                    position: absolute;
                    z-index: 1000;
                }

                .desktop-navbar-nav .dropdown-item {
                    font-size: 0.88rem;
                    color: var(--text-dark);
                    font-weight: 600;
                    padding: 10px 24px;
                    transition: all 0.25s ease;
                }

                    .desktop-navbar-nav .dropdown-item:hover {
                        background-color: var(--bg-cream);
                        color: var(--secondary-blue);
                        padding-left: 28px;
                    }

                .desktop-navbar-nav .nav-item.dropdown:hover .dropdown-menu {
                    display: block;
                    margin-top: 0;
                    animation: fadeInSlide 0.3s ease forwards;
                }
        }

        /* 📱 EXCLUSIVE MOBILE & TABLET OFFCANVAS LAYOUT */
        @media (max-width: 991.98px) {
            .offcanvas-start {
                width: 300px !important;
                background-color: #ffffff;
                border-right: none;
            }

            .offcanvas-header {
                border-bottom: 1px solid #E5E7EB;
                padding: 20px 24px;
            }

            .navbar-nav {
                width: 100%;
            }

                .navbar-nav .nav-item {
                    width: 100%;
                    margin-bottom: 4px;
                }

                    .navbar-nav .nav-item .nav-link {
                        color: var(--primary-navy) !important;
                        font-size: 1rem;
                        font-weight: 700;
                        padding: 12px 14px !important;
                        border-radius: 8px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;
                    }

                        .navbar-nav .nav-item .nav-link:hover {
                            background-color: var(--bg-cream);
                        }

            .mobile-dropdown-menu {
                position: static !important;
                float: none;
                background-color: var(--bg-cream);
                border: none;
                box-shadow: none;
                margin-top: 5px !important;
                padding: 5px 0;
                border-left: 3px solid var(--brand-gold);
                border-radius: 0 8px 8px 0;
                display: none;
            }

                .mobile-dropdown-menu.show {
                    display: block;
                }

                .mobile-dropdown-menu .dropdown-item {
                    font-size: 0.92rem;
                    padding: 10px 20px;
                    color: var(--secondary-blue);
                    font-weight: 600;
                    display: block;
                    width: 100%;
                    text-decoration: none;
                }
        }

        @media (max-width: 767.98px) {
            .carousel-caption-custom h2 {
                font-size: 1.5rem !important;
            }
        }

        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- CAROUSEL SLIDER --- */
        .carousel-item {
            height: 40vh;
            min-height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        @media (min-width: 576px) {
            .carousel-item {
                height: 50vh;
            }
        }

        @media (min-width: 992px) {
            .carousel-item {
                height: 70vh;
            }
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(15, 41, 74, 0.5), rgba(15, 41, 74, 0.25));
        }

        .carousel-caption-custom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            text-align: center;
            width: 90%;
            z-index: 10;
        }

            .carousel-caption-custom h2 {
                font-family: var(--font-heading);
                font-size: 1.8rem;
                font-weight: 800;
                letter-spacing: -0.5px;
                text-shadow: 0 4px 15px rgba(15, 41, 74, 0.4);
                text-transform: uppercase;
            }

        @media (min-width: 768px) {
            .carousel-caption-custom h2 {
                font-size: 2.8rem;
            }
        }

        @media (min-width: 992px) {
            .carousel-caption-custom h2 {
                font-size: 3.5rem;
            }
        }

        .carousel-indicators .active {
            background-color: var(--brand-gold);
            opacity: 1;
            width: 24px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        /* --- INTRO SECTION --- */
        .intro-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        @media (min-width: 992px) {
            .intro-section {
                padding: 100px 0;
            }
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(15, 41, 74, 0.12);
        }

            .about-image-wrapper img {
                width: 100%;
                height: auto;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .about-image-wrapper:hover img {
                transform: scale(1.03);
            }

        .about-sub-badge {
            display: inline-block;
            background-color: rgba(234, 170, 8, 0.12);
            color: var(--primary-navy);
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            border: 1px solid rgba(234, 170, 8, 0.25);
        }

        .intro-content h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-navy);
            font-weight: 800;
            margin-bottom: 22px;
            letter-spacing: -0.5px;
        }

            .intro-content h2 span {
                color: var(--brand-gold);
                position: relative;
            }

        .about-desc {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .about-feature-tag-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .about-tag-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-cream);
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #f0edf0;
        }

            .about-tag-item i {
                color: #2E5A44;
                font-size: 1.1rem;
            }

            .about-tag-item span {
                font-size: 0.88rem;
                font-weight: 700;
                color: var(--primary-navy);
            }

        /* --- PRINCIPAL MESSAGE SECTION --- */
        .director-section {
            background-color: var(--bg-cream);
            padding: 50px 0;
        }

        @media(min-width: 992px) {
            .director-section {
                padding: 90px 0;
            }
        }

        .section-tagline {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--primary-navy);
            margin-bottom: 30px;
            font-weight: 800;
            position: relative;
            display: inline-block;
            letter-spacing: -0.5px;
        }

        @media(min-width: 992px) {
            .section-tagline {
                font-size: 2.2rem;
                margin-bottom: 45px;
            }
        }

        .section-tagline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background-color: var(--brand-gold);
        }

        .director-card {
            background-color: #ffffff;
            box-shadow: 0 15px 45px rgba(15, 41, 74, 0.04);
            border-radius: 16px;
            overflow: hidden;
        }

        .director-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        @media(min-width: 992px) {
            .director-img {
                height: 100%;
                min-height: 480px;
            }
        }

        .director-msg-box {
            background-color: var(--secondary-blue);
            color: #ffffff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media(min-width: 992px) {
            .director-msg-box {
                padding: 55px;
            }
        }

        .director-msg-box h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        @media(min-width: 992px) {
            .director-msg-box h3 {
                font-size: 1.75rem;
                margin-bottom: 22px;
            }
        }

        .director-msg-box p {
            font-size: 0.95rem;
            line-height: 1.75;
            opacity: 0.9;
            text-align: justify;
            font-weight: 400;
        }

        .director-signature {
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 15px;
        }

            .director-signature h4 {
                font-family: var(--font-heading);
                font-size: 1.15rem;
                font-weight: 700;
                margin: 0;
                color: var(--brand-gold);
            }

            .director-signature span {
                font-size: 0.78rem;
                color: rgba(255,255,255,0.7);
                letter-spacing: 0.5px;
                text-transform: uppercase;
                font-weight: 600;
            }

        /* --- OUR STRENGTH SECTION --- */
        .strength-section {
            background: linear-gradient(135deg, var(--primary-navy), #08182b);
            color: #ffffff;
            padding: 60px 0;
        }

        .strength-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }

            .strength-card:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.09);
                border-color: var(--brand-gold);
            }

        .strength-icon-box {
            width: 60px;
            height: 60px;
            background-color: rgba(234, 170, 8, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px auto;
            color: var(--brand-gold);
            font-size: 1.5rem;
        }

        .strength-card h3 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .strength-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.75);
            margin: 0;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* --- ANNOUNCEMENTS & INFRASTRUCTURE --- */
        .notice-facility-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .notice-board {
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            height: 440px;
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
        }

        .notice-header {
            background-color: var(--primary-navy);
            color: #ffffff;
            padding: 18px 24px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 5;
            letter-spacing: 0.2px;
        }

            .notice-header i {
                color: var(--brand-gold);
            }

        .notice-ticker-container {
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            background-color: #fffdfa;
            padding: 15px 24px;
        }

        .notice-ticker-inner {
            position: absolute;
            width: calc(100% - 48px);
            animation: scrollUpText 14s linear infinite;
        }

        .notice-ticker-container:hover .notice-ticker-inner {
            animation-play-state: paused;
        }

        @keyframes scrollUpText {
            0% {
                transform: translateY(80%);
            }

            100% {
                transform: translateY(-100%);
            }
        }

        .notice-item {
            padding: 15px 0;
            border-bottom: 1px dashed #E5E7EB;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

            .notice-item:last-child {
                border-bottom: none;
            }

        .notice-date {
            background: var(--bg-cream);
            border: 1px solid rgba(15,41,74,0.1);
            border-radius: 8px;
            padding: 8px 12px;
            text-align: center;
            min-width: 65px;
            font-weight: 800;
            font-size: 0.85rem;
            color: var(--primary-navy);
            line-height: 1.2;
        }

            .notice-date span {
                display: block;
                font-size: 0.65rem;
                font-weight: 700;
                color: var(--text-muted);
                text-transform: uppercase;
                margin-top: 2px;
            }

        .notice-text a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 500;
            line-height: 1.5;
            transition: color 0.2s;
        }

            .notice-text a:hover {
                color: var(--brand-gold);
            }

        .facility-mini-card {
            display: flex;
            gap: 18px;
            align-items: center;
            padding: 20px;
            background-color: var(--bg-cream);
            border-radius: 12px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        }

            .facility-mini-card:hover {
                background-color: #ffffff;
                box-shadow: 0 10px 25px rgba(15,41,74,0.06);
                border-color: rgba(234,170,8,0.3);
                transform: translateX(4px);
            }

        .facility-mini-icon {
            width: 50px;
            height: 55px;
            background-color: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-blue);
            font-size: 1.35rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            flex-shrink: 0;
        }

        .facility-mini-card:hover .facility-mini-icon {
            background-color: var(--primary-navy);
            color: #ffffff;
        }

        .facility-mini-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--primary-navy);
        }

        .facility-mini-text p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* --- LIFE AT SCHOOL (GALLERY) --- */
        .gallery-section {
            padding: 60px 0;
            background-color: var(--bg-cream);
        }

            .gallery-section h2 {
                font-family: var(--font-heading);
                font-size: 2rem;
                color: var(--primary-navy);
                margin-bottom: 35px;
                font-weight: 800;
                letter-spacing: -0.5px;
            }

        .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            height: 200px;
            box-shadow: 0 8px 25px rgba(15, 41, 74, 0.03);
            transition: transform 0.3s ease;
        }

            .gallery-item:hover {
                transform: translateY(-4px);
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.05);
            }

        /* --- COMBINED APP AND MAP PANEL --- */
        .app-map-combined-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .app-custom-card {
            background: linear-gradient(135deg, #13345c, #0a1f38);
            color: #ffffff;
            border-radius: 16px;
            padding: 40px 35px;
            height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 12px 35px rgba(15,41,74,0.1);
        }

            .app-custom-card h2 {
                font-family: var(--font-heading);
                font-weight: 800;
                letter-spacing: -0.5px;
            }

        .app-feature-list {
            list-style: none;
            padding: 0;
            margin: 15px 0 25px 0;
        }

            .app-feature-list li {
                margin-bottom: 10px;
                font-size: 0.92rem;
                display: flex;
                align-items: center;
                gap: 10px;
                color: rgba(255,255,255,0.85);
            }

                .app-feature-list li i {
                    color: var(--brand-gold);
                    font-size: 1rem;
                }

        .store-badge-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #000000;
            border: 1px solid rgba(255,255,255,0.15);
            padding: 8px 16px;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            transition: transform 0.3s, border-color 0.3s;
            margin-right: 10px;
            margin-bottom: 10px;
            min-width: 155px;
        }

            .store-badge-btn:hover {
                transform: translateY(-3px);
                border-color: var(--brand-gold);
                color: white;
            }

            .store-badge-btn i {
                font-size: 1.5rem;
            }

            .store-badge-btn span {
                display: block;
                text-align: left;
                font-size: 0.65rem;
                text-transform: uppercase;
                opacity: 0.7;
                line-height: 1.2;
            }

            .store-badge-btn strong {
                display: block;
                font-size: 0.88rem;
                font-weight: 700;
            }

        .map-custom-card {
            border: 1px solid #E5E7EB;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(15,41,74,0.05);
            background: #ffffff;
            padding: 12px;
            height: 450px;
        }

            .map-custom-card iframe {
                width: 100%;
                height: 100%;
                border: none;
                border-radius: 10px;
                display: block;
            }

        /* --- PREMIUM INSTITUTIONAL FOOTER --- */
        footer {
            background-color: var(--primary-navy);
            color: #ffffff;
            padding: 80px 0 0 0;
            position: relative;
            border-top: 5px solid var(--brand-gold);
        }

        .footer-logo-text h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .footer-logo-text p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.65;
            text-align: justify;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-family: var(--font-heading);
            letter-spacing: 0.2px;
        }

            .footer-col h4::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 35px;
                height: 2px;
                background-color: var(--brand-gold);
            }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

            .footer-col ul li {
                margin-bottom: 14px;
            }

                .footer-col ul li a {
                    color: rgba(255,255,255,0.75);
                    text-decoration: none;
                    font-size: 0.88rem;
                    transition: all 0.3s ease;
                    display: inline-block;
                    font-weight: 500;
                }

                    .footer-col ul li a:hover {
                        color: var(--brand-gold);
                        transform: translateX(5px);
                    }

        .footer-contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 16px;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.5;
        }

            .footer-contact-item i {
                color: var(--brand-gold);
                font-size: 1.05rem;
                margin-top: 3px;
            }

        .footer-social-panel {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

            .footer-social-panel a {
                width: 38px;
                height: 38px;
                background-color: rgba(255,255,255,0.06);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 1rem;
            }

                .footer-social-panel a:hover {
                    background-color: var(--brand-gold);
                    color: var(--primary-navy);
                    transform: translateY(-3px);
                }

        .footer-bottom-strip {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 50px;
            padding: 25px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }

            .footer-bottom-links a:hover {
                color: #ffffff;
            }

        /* ─── NEW ULTRA-PROFESSIONAL FEATURES STYLING ─── */

        /* 1. WHATSAPP FLOATING BUTTON */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .whatsapp-float:hover {
                transform: scale(1.1);
                color: #fff;
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            }

        /* 2. BACK TO TOP BUTTON */
        .scroll-top-btn {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 45px;
            height: 45px;
            background-color: var(--primary-navy);
            color: #ffffff;
            border: 2px solid var(--brand-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

            .scroll-top-btn.show {
                opacity: 1;
                visibility: visible;
            }

            .scroll-top-btn:hover {
                background-color: var(--brand-gold);
                color: var(--primary-navy);
                transform: translateY(-3px);
            }

        /* 3. ADMISSION OPEN POPUP MODAL */
        .admission-modal .modal-content {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 41, 74, 0.3);
        }

        .admission-modal-header {
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
            color: #ffffff;
            padding: 25px;
            text-align: center;
            position: relative;
            border-bottom: 4px solid var(--brand-gold);
        }

            .admission-modal-header h4 {
                font-weight: 800;
                margin: 0;
                letter-spacing: 0.5px;
                text-transform: uppercase;
            }

        .admission-modal-body {
            padding: 35px 25px;
            text-align: center;
            background-color: #ffffff;
        }

        .admission-badge {
            background-color: rgba(234, 170, 8, 0.15);
            color: var(--primary-navy);
            font-weight: 800;
            font-size: 1.1rem;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px dashed var(--brand-gold);
        }

        .admission-modal-body p {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-weight: 500;
            line-height: 1.6;
        }

        .admission-modal-footer {
            background-color: var(--bg-cream);
            padding: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            border-top: 1px solid #E5E7EB;
        }

        .btn-admission-apply {
            background-color: var(--primary-navy);
            color: #ffffff;
            font-weight: 700;
            padding: 10px 30px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

            .btn-admission-apply:hover {
                background-color: var(--brand-gold);
                color: var(--primary-navy);
            }
 




