
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --royal-red: #8B0000;
            --burgundy: #800020;
            --gold: #D4AF37;
            --gold-light: #F0E68C;
            --cream: #FFFDD0;
            --charcoal: #36454F;
            --navy: #1B2A4E;
            --glass: rgba(255, 255, 255, 0.98);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #fff;
            color: var(--charcoal);
            overflow-x: hidden;
            width: 100%;
        }

        /* Announcement Banner */
        .announcement-banner {
            background: linear-gradient(90deg, var(--gold), var(--burgundy));
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .scrolling-text {
            animation: scroll 25s linear infinite;
            white-space: nowrap;
            font-weight: 500;
            display: inline-block;
            padding-left: 100%;
        }

        .scrolling-text span {
            margin: 0 30px;
            display: inline-block;
        }

        @keyframes scroll {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }

        /* Premium Top Bar */
        .top-bar {
            background: var(--navy);
            color: white;
            padding: 10px 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            border-bottom: 3px solid var(--gold);
            gap: 10px;
        }

        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .social-icons i {
            margin: 0 5px;
            color: var(--gold);
            transition: 0.3s;
            cursor: pointer;
        }

        .social-icons i:hover {
            color: white;
            transform: translateY(-3px);
        }

        /* Header & Logo Section */
        header {
            padding: 15px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            flex-wrap: wrap;
            gap: 20px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .logo-container {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .site-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1px;
            position: relative;
            z-index: 2;
        }

        .brand-text h1 {
            font-family: 'Cinzel', serif;
            margin: 0;
            font-size: clamp(24px, 5vw, 36px);
            background: linear-gradient(135deg, var(--royal-red), var(--burgundy));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .brand-text span {
            font-size: clamp(11px, 3vw, 14px);
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .header-contact {
            text-align: right;
            display: flex;
    align-items: center;
    gap: 12px;
        }

        .admission-btn {
            background: linear-gradient(135deg, var(--royal-red), var(--burgundy));
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(12px, 3vw, 14px);
            letter-spacing: 0.5px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(139,0,0,0.2);
            display: inline-block;
            white-space: nowrap;
        }

        .admission-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(139,0,0,0.3);
        }

        /* Premium Navigation */
        nav {
            background: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-top: 1px solid rgba(212,175,55,0.2);
            border-bottom: 2px solid var(--gold);
            width: 100%;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            position: relative;
            padding: 0 15px;
        }

        nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            position: relative;
            flex-wrap: wrap;
            justify-content: center;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            padding: 18px 18px;
            display: block;
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
            position: relative;
            white-space: nowrap;
        }

        nav ul li a i {
            margin-left: 5px;
            font-size: 12px;
            color: var(--gold);
            transition: transform 0.3s;
        }

        nav ul li:hover > a i {
            transform: rotate(180deg);
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            border-radius: 4px;
            border-top: 3px solid var(--gold);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            padding: 10px 0;
        }

        nav ul li:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content li {
            width: 100%;
            display: block;
        }

        .dropdown-content li a {
            padding: 12px 25px;
            font-weight: 500;
            font-size: 13px;
            color: var(--charcoal);
            display: block;
            text-align: left;
            transition: 0.2s all;
            background: transparent;
            border-bottom: 1px solid #f5f5f5;
            white-space: normal;
        }

        .dropdown-content li:last-child a {
            border-bottom: none;
        }

        .dropdown-content li a:hover {
            background: #fdfaf0;
            color: var(--royal-red);
            padding-left: 30px;
        }

        /* Hero Slider */
        .hero-slider {
            height: 85vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .heroSwiper {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .swiper-slide {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--gold);
        }

        .swiper-pagination-bullet {
            background: white;
            opacity: 0.6;
        }

        .swiper-pagination-bullet-active {
            background: var(--gold);
            opacity: 1;
        }

        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            pointer-events: none;
            padding: 20px;
        }

        .hero-box {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(2px);
            padding: clamp(30px, 6vw, 60px);
            border: 2px solid var(--gold);
            border-radius: 20px;
            animation: fadeInUp 1.5s;
            max-width: 900px;
            width: 100%;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-box h2 {
            font-family: 'Cinzel', serif;
            color: white;
            font-size: clamp(28px, 6vw, 60px);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-box p {
            font-size: clamp(14px, 3vw, 18px);
            color: white;
            letter-spacing: 2px;
        }

        /* Features Strip */
        .features-strip {
            background: linear-gradient(135deg, var(--navy), var(--charcoal));
            padding: 30px 5%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            color: white;
        }

        .feature-item {
            text-align: center;
            border-right: 1px solid var(--gold);
            padding: 0 15px;
        }

        .feature-item:last-child {
            border-right: none;
        }

        .feature-item i {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .feature-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 14px;
        }

        /* About Section */
        .about-section {
            padding: 60px 5%;
            background: linear-gradient(135deg, #fff, var(--cream));
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-content h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(28px, 5vw, 42px);
            color: var(--royal-red);
            margin-bottom: 25px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 35px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 15px;
            color: var(--charcoal);
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 20px 20px 40px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 300px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Leadership Messages */
        .messages-section {
            padding: 60px 5%;
            background: white;
        }

        .section-title {
            text-align: center;
            font-family: 'Cinzel', serif;
            font-size: clamp(28px, 5vw, 42px);
            margin-bottom: 15px;
            color: var(--royal-red);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gold);
            margin-bottom: 50px;
            font-size: 18px;
        }

        .message-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .msg-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: 0.5s;
            text-align: center;
            border: 1px solid rgba(212,175,55,0.2);
        }

        .msg-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(139,0,0,0.1);
        }

        .img-container {
            padding: 30px 30px 15px;
            background: linear-gradient(135deg, var(--royal-red), var(--burgundy));
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .msg-card img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 5px solid var(--gold);
            object-fit: cover;
            transition: 0.5s;
            max-width: 100%;
        }

        .msg-card:hover img {
            transform: scale(1.05);
        }

        .msg-card h3 {
            margin: 20px 0 5px;
            color: var(--royal-red);
            font-size: 22px;
        }

        .msg-card .designation {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .msg-card p {
            padding: 0 20px 25px;
            color: var(--charcoal);
            font-size: 14px;
            line-height: 1.7;
        }

        /* Facilities Section */
        .facilities-section {
            padding: 60px 5%;
            background: linear-gradient(135deg, #f8f9fa, white);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .facility-card {
            text-align: center;
            padding: 35px 15px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .facility-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(139,0,0,0.1);
        }

        .facility-card i {
            font-size: 45px;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .facility-card h4 {
            color: var(--royal-red);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .facility-card p {
            font-size: 14px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            color: #999;
            padding: 60px 5% 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            font-family: 'Cinzel', serif;
            margin-bottom: 20px;
            border-left: 3px solid var(--gold);
            padding-left: 15px;
            font-size: 18px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #999;
            text-decoration: none;
            transition: 0.3s;
            font-size: 14px;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
            min-width: 150px;
        }

        .newsletter-form button {
            padding: 12px 18px;
            background: var(--gold);
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            cursor: pointer;
        }

        .map-frame {
            border: 2px solid var(--gold);
            border-radius: 10px;
            filter: grayscale(100%) invert(90%);
            width: 100%;
            height: 150px;
        }

        .bottom-bar {
            text-align: center;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 13px;
        }

        .menu-btn {
            display: none;
            background: var(--gold);
            border: none;
            padding: 12px 18px;
            font-size: 20px;
            border-radius: 10px;
            cursor: pointer;
            color: white;
        }

        /* ===== RESPONSIVE FIXES ===== */
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .facilities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .features-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-item:nth-child(2) {
                border-right: none;
            }
            .message-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                text-align: center;
                font-size: 12px;
            }
            
            .menu-btn {
               display: inline-flex;
        justify-content: center;
        align-items: center;
            }

            .header-contact {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .brand {
                flex: 1;
                justify-content: flex-start;
            }

            header {
                position: relative;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                display: none;
                background: white;
                width: 100%;
                padding: 15px 0;
                max-height: 80vh;
                overflow-y: auto;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            nav ul li a {
                padding: 15px;
                white-space: normal;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                background: #f9f9f9;
                margin: 0;
                padding: 0;
                display: none;
                min-width: 100%;
            }

            nav ul li:hover .dropdown-content {
                display: block;
            }

            .hero-slider {
                height: 60vh;
                min-height: 400px;
            }

            .hero-box {
                padding: 25px;
            }

            .features-strip {
                grid-template-columns: 1fr;
            }
            .feature-item {
                border-right: none;
                border-bottom: 1px solid var(--gold);
                padding-bottom: 20px;
            }
            .feature-item:last-child {
                border-bottom: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .message-grid {
                grid-template-columns: 1fr;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h4 {
                border-left: none;
                text-align: center;
                padding-left: 0;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 5px;
                margin-bottom: 8px;
            }

            .newsletter-form button {
                border-radius: 5px;
            }

            .map-frame {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .brand {
                flex-direction: column;
                text-align: center;
            }
            .brand-text h1 {
                font-size: 26px;
            }
            .hero-box h2 {
                font-size: 26px;
            }
            .hero-box p {
                font-size: 14px;
            }
            .admission-btn {
                padding: 10px 18px;
                font-size: 12px;
            }
            .features-strip {
                padding: 20px 15px;
            }
        }

        /* Ensure no content is removed */
        img, iframe, .social-icons i, .stat-number, .msg-card, .facility-card {
            display: block;
        }

        .swiper-slide {
            background-size: cover;
        }
/* ================================
   OUR SCHOOL PAGE - EXTRA CSS ONLY
================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy), #0f1a2f);
    padding: 40px 5%;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 6vw, 48px);
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--gold-light);
    font-size: 18px;
}


/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 12px 5%;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--royal-red);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--charcoal);
}


/* School Sections */
.school-section {
    padding: 70px 5%;
    background: white;
}

.school-section:nth-child(even) {
    background: #fcfaf5;
}


/* Section Titles */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 5vw, 38px);
    color: var(--royal-red);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-title.center {
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}


/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.col-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.col-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}


/* Legacy Badge */
.legacy-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 3px solid white;
    outline: 3px solid var(--gold);
}


/* Infrastructure Grid */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.infra-item {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.infra-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.infra-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.infra-item h4 {
    color: var(--royal-red);
    margin-bottom: 12px;
    font-size: 20px;
}

.infra-item p {
    font-size: 14px;
    line-height: 1.6;
}


/* Stats Big Strip */
.stats-big {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    background: linear-gradient(135deg, var(--navy), #10233e);
    padding: 50px 5%;
    border-radius: 30px;
    color: white;
    margin-top: 30px;
}

.stat-block {
    text-align: center;
}

.stat-block .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cinzel';
}


/* Timeline */
.timeline {
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    margin-top: 30px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--royal-red);
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    left: -40px;
    top: 5px;
}

.timeline-year {
    font-weight: 700;
    color: var(--royal-red);
    font-size: 22px;
}


/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0e6d2;
}

.value-card i {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h4 {
    color: var(--royal-red);
    font-size: 22px;
    margin-bottom: 10px;
}


/* ================================
   RESPONSIVE FIXES
================================ */

@media (max-width: 1100px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
   

        /* ---------- page header premium ---------- */
        .page-header {
            background: linear-gradient(135deg, #0b1a33 0%, #122b4a 100%);
            padding: 55px 5% 60px;
            text-align: center;
            border-bottom: 4px solid #c9a13b;
            position: relative;
            isolation: isolate;
        }

        .page-header::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .page-header h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(34px, 7vw, 52px);
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            color: #f5e3b3;
            font-size: 20px;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            border-bottom: 2px dashed rgba(212, 175, 55, 0.5);
            display: inline-block;
            padding-bottom: 12px;
            letter-spacing: 0.8px;
            position: relative;
            z-index: 2;
        }

        /* ---------- breadcrumb elevated ---------- */
        .breadcrumb {
            background: #f1ede5;
            padding: 16px 5%;
            border-bottom: 1px solid #d8c8a8;
            font-size: 15px;
            font-weight: 500;
            color: #2e2e2e;
            box-shadow: inset 0 -2px 0 #ffffff;
        }

        .breadcrumb a {
            color: #9e2a2b;
            text-decoration: none;
            transition: 0.2s;
            font-weight: 600;
        }

        .breadcrumb a:hover {
            color: #b84c3a;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .breadcrumb span {
            color: #4a4a4a;
            font-weight: 400;
        }

        /* ---------- management section refined ---------- */
        .management-section {
            padding: 80px 5% 90px;
            background: #fcfaf7;   /* warm white */
            text-align: center;
        }

        .management-section h3 {
            font-family: 'Cinzel', serif;
            font-size: clamp(32px, 5vw, 44px);
            color: #9e2a2b;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .management-section h3::after {
            content: '';
            display: block;
            width: 70%;
            height: 3px;
            background: linear-gradient(90deg, #c9a13b, #b78a2c, #c9a13b);
            margin: 14px auto 0;
            border-radius: 4px;
        }

        .management-section p {
            max-width: 800px;
            margin: 0 auto 55px;
            font-size: 17px;
            line-height: 1.9;
            color: #2e3b4e;
            font-weight: 400;
            background: rgba(212, 175, 55, 0.03);
            padding: 18px 30px;
            border-radius: 60px 60px 30px 30px;
            box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.05);
        }

        /* ---------- cards – elegant & detailed ---------- */
        .management-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .management-card {
            background: #ffffff;
            padding: 40px 20px 35px;
            border-radius: 30px;
            box-shadow: 0 15px 35px rgba(84, 45, 25, 0.06), 0 2px 0 0 #f0e1c6 inset;
            border: 1px solid rgba(201, 161, 59, 0.25);
            transition: all 0.35s ease;
            position: relative;
            backdrop-filter: blur(2px);
        }

        .management-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 45px -12px rgba(158, 42, 43, 0.2), 0 0 0 2px rgba(201, 161, 59, 0.3) inset;
            border-color: #c9a13b;
        }

        .management-card i {
            font-size: 62px;
            background: linear-gradient(145deg, #b78a2c, #dbb152);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 22px;
            transition: 0.3s;
            display: inline-block;
            filter: drop-shadow(0 6px 8px rgba(172, 132, 42, 0.3));
        }

        .management-card:hover i {
            transform: scale(1.08);
            filter: drop-shadow(0 10px 12px rgba(172, 132, 42, 0.5));
        }

        .management-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: #9e2a2b;
            margin-bottom: 10px;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.5px;
        }

        .management-card span {
            font-size: 18px;
            font-weight: 500;
            color: #1f3a57;       /* deep navy */
            display: inline-block;
            background: #f0ebdf;
            padding: 8px 22px;
            border-radius: 50px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.02);
            border: 1px solid #e5d6b5;
            margin-top: 12px;
            font-family: 'Montserrat', sans-serif;
            transition: 0.2s;
        }

        .management-card:hover span {
            background: #e7dcc8;
            color: #092033;
            border-color: #c9a13b;
        }

        /* subtle decoration on card */
        .management-card::before {
            content: "“";
            font-size: 70px;
            font-family: serif;
            color: rgba(212, 175, 55, 0.1);
            position: absolute;
            top: 5px;
            left: 15px;
            font-weight: 700;
            line-height: 1;
        }

        /* ---------- RESPONSIVE (preserved + fine-tuned) ---------- */
        @media (max-width: 900px) {
            .management-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .management-section p {
                padding: 18px 20px;
                border-radius: 30px;
            }
        }

        @media (max-width: 600px) {
            .management-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .page-header {
                padding: 40px 5% 45px;
            }
            .breadcrumb {
                padding: 12px 5%;
                font-size: 14px;
            }
            .management-section p {
                font-size: 16px;
                padding: 16px 18px;
            }
        }
       

        .staff-section {
            padding: 70px 5%;
            background: #fcfaf7;   /* same warm background as management section */
            text-align: center;
            font-family: 'Montserrat', sans-serif;
        }

        .staff-section h3 {
            font-family: 'Cinzel', serif;
            font-size: clamp(32px, 5vw, 44px);
            color: #9e2a2b;         /* royal red */
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .staff-section h3::after {
            content: '';
            display: block;
            width: 70%;
            height: 3px;
            background: linear-gradient(90deg, #c9a13b, #b78a2c, #c9a13b);
            margin: 14px auto 0;
            border-radius: 4px;
        }

        .staff-section .section-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 17px;
            line-height: 1.8;
            color: #2e3b4e;
            background: rgba(212, 175, 55, 0.03);
            padding: 16px 30px;
            border-radius: 60px 60px 30px 30px;
            box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.05);
        }

        /* ---------- Staff grid (responsive) ---------- */
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        /* ---------- Staff card – elegant, matches management card style ---------- */
        .staff-card {
            background: white;
            padding: 28px 15px 22px;
            border-radius: 28px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03), 0 2px 0 0 #f0e1c6 inset;
            border: 1px solid rgba(201, 161, 59, 0.2);
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .staff-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -8px rgba(158, 42, 43, 0.15), 0 0 0 2px rgba(201, 161, 59, 0.2) inset;
            border-color: #c9a13b;
        }

        /* small decorative icon / avatar placeholder */
        .staff-card .staff-icon {
            font-size: 40px;
            width: 70px;
            height: 70px;
            background: #f4efe5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: #9e2a2b;
            border: 2px solid #e9d7b5;
            transition: 0.2s;
        }

        .staff-card:hover .staff-icon {
            background: #e7dcc8;
            color: #c9a13b;
            border-color: #c9a13b;
        }

        .staff-card .staff-name {
            font-size: 18px;
            font-weight: 600;
            color: #1f3a57;       /* deep navy */
            margin-bottom: 6px;
            font-family: 'Cinzel', serif;
            line-height: 1.4;
        }

        .staff-card .staff-designation {
            font-size: 15px;
            font-weight: 500;
            color: #7f5d38;
            background: #f0ebdf;
            padding: 6px 18px;
            border-radius: 40px;
            display: inline-block;
            border: 1px solid #e5d6b5;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            margin-top: 6px;
            transition: 0.2s;
        }

        .staff-card:hover .staff-designation {
            background: #e7dcc8;
            color: #4a2e1b;
            border-color: #b78a2c;
        }

        /* tiny role badge variation */
        .staff-card.principal .staff-icon {
            background: #dbb15230;
            color: #b8860b;
        }

        /* responsive micro-adjust */
        @media (max-width: 600px) {
            .staff-section {
                padding: 50px 5%;
            }
            .staff-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .staff-card {
                padding: 22px 12px;
            }
        }
   
