/*
    NAVAPRABHAT VIDYAYATANA - PREMIUM CSS
    Color Palette:
    - Maroon: #6b1d1d
    - Gold: #c79a3b
    - Cream: #faf7f2
    - Forest Green: #173d2d
    - Warm Beige: #f3eadc
    - Charcoal: #222222
*/

:root {
    --maroon: #5a1212;
    --maroon-dark: #3e0c0c;
    --maroon-light: rgba(90, 18, 18, 0.1);
    --gold: #c79a3b;
    --gold-light: rgba(199, 154, 59, 0.1);
    --navy: #1a2b4a;
    --navy-dark: #0f1a2e;
    --cream: #fdfaf5;
    --forest-green: #173d2d;
    --green-light: rgba(23, 61, 45, 0.1);
    --warm-beige: #f3eadc;
    --charcoal: #222222;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.bg-navy { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.text-navy { color: var(--navy) !important; }
.text-navy-dark { color: var(--navy-dark) !important; }
.bg-light-cream { background-color: var(--cream); }
.text-maroon { color: var(--maroon); }
.text-gold { color: var(--gold); }
.text-green { color: var(--forest-green); }
.bg-maroon { background-color: var(--maroon); }
.bg-gold { background-color: var(--gold); }
.bg-green { background-color: var(--forest-green); }
.bg-maroon-light { background-color: var(--maroon-light); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-green-light { background-color: var(--green-light); }

.rounded-premium { border-radius: 20px; }
.tracking-widest { letter-spacing: 0.2em; }
.x-small { font-size: 0.75rem; }

/* Gurukul Image Styles */
.gurukul-image-box {
    padding: 20px;
    background: radial-gradient(circle, rgba(199, 154, 59, 0.08) 0%, transparent 70%);
}

.gurukul-featured-img {
    border-radius: 30px 0 30px 0;
    border: 8px solid white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-height: 500px;
    transition: var(--transition);
}

.gurukul-featured-img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-maroon {
    background-color: var(--maroon);
    color: var(--white) !important;
    border: 2px solid var(--maroon);
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-green {
    background-color: var(--forest-green);
    color: var(--white);
    border: 1px solid var(--forest-green);
}

.btn-green:hover {
    background-color: transparent;
    color: var(--forest-green);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* 1. TOP BAR */
.top-bar {
    background-color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar a {
    color: #5d4037;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--maroon);
}

.social-icons a {
    margin-left: 15px;
    font-size: 0.9rem;
}

/* 2. HEADER / NAVBAR */
.header-top {
    background-color: #fdfaf5; /* Welcome section background */
    padding: 25px 0;
    transition: var(--transition);
}

.navbar-brand .logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border: none;
}

.school-name {
    border-left: 2px solid var(--gold);
    padding-left: 15px;
}

.school-name h1 {
    font-size: 1.8rem;
    color: var(--maroon);
    letter-spacing: 2px;
    line-height: 1.1;
}

.school-name h2 {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.1;
}

.school-name .tagline {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.8;
    font-style: italic;
    margin-top: 3px;
}

.header-buttons .btn {
    border-radius: 8px;
}

.nav-row {
    background-color: var(--maroon);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

header.sticky-top.shadow-lg .header-top {
    display: none;
}

header.sticky-top.shadow-lg .nav-row {
    background-color: var(--maroon);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 15px 15px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

/* Dropdown on Hover */
@media (min-width: 1200px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        border-top: 3px solid var(--gold);
        border-radius: 0 0 10px 10px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        padding: 15px 0;
        min-width: 220px;
    }
}

.dropdown-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--maroon-light);
    color: var(--maroon);
    padding-left: 30px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--maroon);
    color: var(--white);
}

/* 3. HERO SECTION */
.hero-section {
    overflow: hidden;
    height: 80vh;
    width: 100%;
    margin-top: -100px; /* Offset for sticky header if needed */
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 80vh;
    width: 100%;
}

.hero-content h1 {
    line-height: 1.1;
    color: var(--white);
    font-size: 4.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Swiper Customization */
.hero-next, .hero-prev {
    color: var(--white) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 1000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-next:hover, .hero-prev:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

.hero-next::after, .hero-prev::after {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
}

.hero-pagination {
    bottom: 30px !important;
    z-index: 1000 !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

.hero-content .text-gold {
    color: var(--gold) !important;
}

.lotus-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.hero-btns .btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.hero-btns .btn-gold:hover {
    background-color: #b08934;
    border-color: #b08934;
}

.main-hero-img {
    display: none;
}

/* 4. FEATURE CARDS */
.feature-section {
    margin-top: -100px;
    padding-top: 40px;
    position: relative;
    z-index: 10;
}

.premium-feature-box {
    background-color: #fffdf9;
    border: 1px solid #f3eadc;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-item {
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text h6 {
    font-size: 0.95rem;
    color: var(--maroon);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.border-start-custom {
    border-left: 1px solid #eee;
}

@media (max-width: 991px) {
    .border-start-custom {
        border-left: none;
        border-top: 1px solid #eee;
    }
    .feature-section {
        margin-top: -50px;
    }
}

/* 5. ABOUT SECTION MODERN */
.about-section-modern {
    background-color: var(--cream);
}

.welcome-pattern-left, .welcome-pattern-right {
    position: absolute;
    width: 350px;
    height: auto;
    opacity: 0.15; /* Slightly more visible as per image */
    pointer-events: none;
    z-index: 1;
}

.welcome-pattern-left {
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: left top;
}

.welcome-pattern-right {
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: right bottom;
}

.about-modern-container {
    border: none;
}

.header-line-gold {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.btn-theme-modern {
    background-color: var(--maroon);
    color: #fff !important;
    border: 2px solid var(--maroon);
    border-radius: 5px;
    transition: var(--transition);
}

.diya-lamp-about {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 5;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: url('https://www.transparenttextures.com/patterns/mandala.png');
    opacity: 0.03;
    transform: translateY(-50%);
    pointer-events: none;
}

/* 6. ACADEMICS SECTION MODERN */
.bg-light-cream { background-color: #fcfaf7; } /* Theme Light Beige */
.bg-section-muted { background-color: #f1f3f6; } /* Professional Steel Gray (Little Dark) */

.academic-card-modern {
    background: white;
    border-radius: 15px;
    border: 1px solid #f1f1f1;
    transition: var(--transition);
}

.academic-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.academic-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.explore-more-link {
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

.explore-more-link:hover {
    letter-spacing: 2px;
}

/* Swiper for Academics */
.academic-next, .academic-prev {
    color: var(--navy) !important;
    width: 40px !important;
    height: 40px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.academic-next::after, .academic-prev::after {
    font-size: 1rem !important;
    font-weight: bold;
}

.academic-pagination .swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* Colors for Academics */
.bg-maroon-dark { background-color: #5a1212; }
.bg-gold-dark { background-color: #b08934; }
.text-maroon-dark { color: #5a1212; }
.text-gold-dark { color: #b08934; }

/* MODERN COMPONENTS */
.card-modern {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

.section-header-modern .header-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

/* Home Messages Section */
.message-card-v2 {
    transition: var(--transition);
}

.message-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* LEADERSHIP SECTION V4 */
.home-leadership {
    background-color: #fcf8f1;
}

.leadership-lotus-icon {
    font-size: 1.75rem;
    opacity: 0.95;
}

.leadership-section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.04em;
}

.leadership-subtitle {
    letter-spacing: 0.06em;
    font-weight: 400;
}

.leadership-header-v4 .ornament-line-v4 {
    width: 90px;
    max-width: 22vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    position: relative;
}

.leadership-header-v4 .ornament-line-v4::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--gold);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.leadership-header-v4 .ornament-line-v4:first-child::after { right: -4px; }
.leadership-header-v4 .ornament-line-v4:last-child::after { left: -4px; }

.header-ornament-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-ornament-flourish .flourish-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.85;
}

.header-ornament-flourish .flourish-center {
    width: 48px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 10'%3E%3Cpath d='M0 5 Q12 0 24 5 T48 5' fill='none' stroke='%23c79a3b' stroke-width='1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.leadership-card-v4 {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.leadership-divider-v4 {
    display: none;
}

@media (min-width: 992px) {
    .leadership-divider-v4 {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
        width: 1px;
        transform: translateX(50%);
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(199, 154, 59, 0.5) 15%,
            rgba(199, 154, 59, 0.5) 85%,
            transparent 100%
        );
        pointer-events: none;
    }
}

.leadership-image-box-v4 {
    max-width: 220px;
    padding-bottom: 28px;
}

.leadership-image-border-v4 {
    padding: 8px;
    border: 1px solid rgba(199, 154, 59, 0.55);
    border-radius: 18px;
    background: #fff;
}

.leadership-portrait-v4 {
    border-radius: 14px;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.leadership-badge-v4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: var(--maroon);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fcf8f1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    z-index: 3;
    font-size: 1.1rem;
}

.leadership-badge-v4 i {
    color: var(--gold);
}

.om-symbol-v4 {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.leadership-card-title-v4 h5 {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}

.leadership-quote-v4 {
    position: relative;
    padding: 0 0 0.25rem;
}

.quote-mark-v4 {
    font-size: 2.75rem;
    color: var(--gold);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 0.85;
    font-weight: 700;
    opacity: 0.85;
}

.open-quote {
    display: block;
    margin-bottom: 0.15rem;
}

.close-quote {
    display: block;
    text-align: right;
    margin-top: 0.15rem;
    line-height: 0.5;
}

.message-text-v4 {
    line-height: 1.75;
    color: #4a4a4a;
    font-size: 0.875rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.leadership-signatory-v4 {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .leadership-signatory-v4 {
        margin-left: 0;
        margin-right: 0;
    }
}

.leadership-signatory-v4 h6 {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.signatory-flourish {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.footer-ornament-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ornament-line-v4-sm {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.65;
}

.btn-maroon-v4 {
    background: var(--maroon);
    color: #fff !important;
    border: 2px solid var(--maroon);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 11px 22px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(90, 18, 18, 0.22);
    transition: var(--transition);
}

.btn-maroon-v4:hover,
.btn-maroon-v4:focus-visible,
.btn-maroon:hover,
.btn-maroon:focus-visible,
.btn-theme-modern:hover,
.btn-theme-modern:focus-visible {
    background: transparent;
    background-color: transparent;
    color: var(--gold) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(199, 154, 59, 0.25);
}

.btn-maroon-v4:hover i,
.btn-maroon-v4:focus-visible i,
.btn-maroon:hover i,
.btn-maroon:focus-visible i,
.btn-theme-modern:hover i,
.btn-theme-modern:focus-visible i {
    color: var(--gold);
}

@media (max-width: 575px) {
    .leadership-image-box-v4 {
        max-width: 200px;
    }

    .leadership-card-v4 {
        padding: 1.5rem !important;
    }
}

.message-avatar-v2 {
    width: 100px;
    height: 100px;
    position: relative;
}

.message-avatar-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-outline-maroon {
    color: var(--maroon);
    border-color: var(--maroon);
    transition: var(--transition);
}

.btn-outline-maroon:hover {
    background-color: var(--maroon);
    color: white;
}

.btn-outline-navy {
    color: var(--navy);
    border-color: var(--navy);
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: white;
}

.header-divider-gold-v6 {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, #c79a3b, transparent);
}

.view-all-link {
    color: var(--maroon);
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--gold);
    transform: translateX(3px);
}

/* GALLERY PROFESSIONAL */
.gallery-img-box-professional {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-img-box-professional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-img-box-professional:hover img {
    transform: scale(1.08);
}

.dots-pagination-professional .dot {
    width: 8px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: var(--transition);
}

.dots-pagination-professional .dot.active {
    background: var(--maroon);
    width: 18px;
    border-radius: 10px;
}

/* NOTIFICATIONS PROFESSIONAL */
.icon-circle-notif {
    width: 45px;
    height: 45px;
    background-color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.notif-icon-mini {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.notif-date-mini .month {
    font-size: 0.65rem;
    color: #888;
    line-height: 1;
}

.notif-date-mini .day {
    font-size: 1.1rem;
    line-height: 1;
}

.notif-item-professional {
    transition: var(--transition);
}

.notif-item-professional:hover {
    background-color: #fdfaf5;
    padding-left: 5px;
}

.view-all-link-professional:hover {
    color: var(--gold) !important;
}

/* DASHBOARD V6 ENHANCEMENTS - MATCHING NEW IMAGE */
.updates-dashboard-v6 {
    background-color: #ffffff;
}

.dashboard-row-v6 {
    background: #fff;
}

.dashboard-col-v6 {
    padding-top: 25px;
    padding-bottom: 25px;
    border-color: #eee !important;
    display: flex;
    flex-direction: column;
}

.dashboard-list-v6 {
    flex-grow: 1;
}

.header-divider-gold-v6 {
    width: 45px;
    height: 2px;
    background-color: var(--gold);
}

.updates-dashboard-v6 h5 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.view-all-dashboard-v6 {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-dashboard-v6:hover {
    color: var(--maroon);
    transform: translateX(3px);
}

.item-img-v6 {
    width: 100px;
    height: 70px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 8px;
}

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

.event-date-v6 {
    width: 50px;
    min-width: 50px;
}

.event-date-v6 .day {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    color: var(--gold);
}

.event-date-v6 .month {
    font-size: 0.8rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 0.5px;
}

.event-icon-v6 {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #fcfcfc;
}

.notif-bullet-v6 {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
}

.border-bottom-v6 {
    border-bottom: 1px solid #eee;
}

.border-top-v6 {
    border-top: 1px solid #eee;
}

@media (max-width: 991px) {
    .dashboard-col-v6 {
        border: none !important;
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee !important;
    }
    .dashboard-col-v6:last-child {
        border-bottom: none !important;
    }
}

/* Fixes for Gallery in one row */
.gallery-img-box-professional {
    height: 200px;
}

@media (max-width: 767px) {
    .gallery-img-box-professional {
        height: 150px;
    }
}

/* 7. FULL WIDTH GALLERY SECTION */
.bg-navy-dark { background-color: var(--navy-dark) !important; }

.border-end-footer-custom {
    border-right: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
    .border-end-footer-custom { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
}

/* OLD SECTIONS REPLACEMENTS */

/* 10. TESTIMONIALS */
.testimonial-card {
    border: 1px solid #f0f0f0;
}

.parent-img img {
    width: 80px;
    height: 80px;
    border: 4px solid var(--warm-beige);
}

/* 12. NEW PAGES STYLING */

/* Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "/";
}

/* Gallery Page */
.gallery-card-modern {
    height: 250px;
    transition: var(--transition);
}

.gallery-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-modern:hover img {
    transform: scale(1.1);
}

.gallery-overlay-v6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 74, 0.85); /* Navy overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card-modern:hover .gallery-overlay-v6 {
    opacity: 1;
}

.gallery-icon-v6 {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.gallery-icon-v6:hover {
    background: var(--maroon);
    color: white;
    transform: scale(1.1);
}

/* Pagination */
.pagination-modern .page-link {
    border: none;
    color: var(--navy);
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-modern .page-item.active .page-link {
    background-color: var(--maroon);
    color: white;
}

.pagination-modern .page-link:hover:not(.active) {
    background-color: var(--maroon-light);
    color: var(--maroon);
}

/* News Page */
.news-card-v6 {
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.news-card-v6:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.badge.bg-gold { background-color: var(--gold); color: white; }
.badge.bg-maroon { background-color: var(--maroon); color: white; }

/* Notifications Page */
.border-start-maroon { border-left: 5px solid var(--maroon); }
.border-start-gold { border-left: 5px solid var(--gold); }
.border-start-success { border-left: 5px solid #28a745; }

.notif-card-page {
    transition: var(--transition);
}

.notif-card-page:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* Contact Page v6 */
.contact-info-box-v6 {
    transition: var(--transition);
    background: #fff;
}

.contact-info-box-v6:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06) !important;
    border-color: var(--gold) !important;
}

.contact-form-v6 .form-control-modern {
    background-color: #fcfcfc;
}

.contact-form-v6 .form-control-modern:focus {
    background-color: #fff;
}

/* 11. FOOTER SECTION */
/* 8. CONTACT SECTION MODERN */
.contact-section-modern {
    background-color: #f1f3f6; /* Steel Gray (Little Dark) */
}

#contact {
    scroll-margin-top: 140px;
}

.contact-card-modern {
    background: white;
    border-radius: 20px;
    border: none;
    box-shadow: none;
}

.contact-form-modern .btn,
.contact-form-v6 .btn {
    border-radius: 8px;
}

.inquiry-swal-popup {
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
}

.inquiry-swal-title {
    font-family: 'Cinzel', serif;
    color: #1a2b4a;
}

.inquiry-swal-btn {
    border-radius: 8px !important;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.inquiry-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.map-container-modern {
    height: 300px;
    min-height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container-modern iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--gold);
}

.form-control-modern {
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control-modern:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 154, 59, 0.1);
    outline: none;
}

.contact-info-box {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    width: 100%;
}

.contact-info-unified-card {
    padding: 0;
    background: transparent;
    overflow: visible;
}

.contact-info-unified-card .contact-info-item {
    padding: 14px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
}

.contact-info-unified-card .contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-unified-card .contact-info-item:last-child {
    padding-bottom: 0;
}

.contact-info-box-phone {
    max-width: 100%;
}

.contact-info-box-email .contact-info-text {
    min-width: 0;
}

.contact-email-value {
    display: block;
    max-width: 100%;
    line-height: 1.45;
    color: #1a1a1a;
    font-size: 0.88rem;
    word-break: break-word;
}

@media (min-width: 992px) {
    .contact-email-value {
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

.contact-icon-pill {
    width: auto;
    height: auto;
    min-width: 1.25rem;
    background: transparent;
    color: var(--maroon);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: none;
}

.contact-label-v6 {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 2px;
}

.contact-value-v6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-section {
    background-color: #5a1212; /* Deep maroon */
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern-left, .footer-pattern-right {
    position: absolute;
    bottom: 0;
    width: 350px; /* Adjust size based on actual image dimensions */
    height: auto;
    opacity: 0.12; /* Very subtle */
    pointer-events: none;
    z-index: 1;
}

.footer-pattern-left {
    left: 0;
    top: 0;
    object-fit: contain;
    object-position: left top;
}

.footer-pattern-right {
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: right bottom;
}

.diya-lamp {
    position: absolute;
    bottom: 40px;
    z-index: 10;
}

.diya-lamp.far-left { left: 40px; }
.diya-lamp.far-right { right: 40px; }

.footer-logo-modern {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand-link:hover .footer-brand-name,
.footer-brand-link:hover .footer-brand-sub {
    color: var(--gold) !important;
}

.footer-brand-name {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-brand-tagline {
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

.footer-brand-trust {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
}

.footer-mission-line {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    font-family: 'Montserrat', sans-serif;
}

.footer-contact-link:hover {
    color: var(--gold) !important;
}

.gold-text {
    color: var(--gold) !important;
    letter-spacing: 1px;
}

.social-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    color: white;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-box:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.footer-col-title {
    color: white;
    border-bottom: none;
    margin-bottom: 25px !important;
}

.border-start-footer {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
}

.footer-links-modern li, .footer-contact-modern li {
    margin-bottom: 12px;
}

.footer-links-modern a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links-modern a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-input {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: white !important;
    font-size: 0.85rem;
    padding: 10px 15px;
}

.footer-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-gold-footer {
    background-color: #d48e15;
    color: white;
    border: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold-footer:hover {
    background-color: #b8780f;
    color: white;
    transform: translateY(-2px);
}

/* Bottom Divider with Om */
.footer-divider-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-om-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(199, 154, 59, 0.5), transparent);
}

.om-symbol-box {
    position: absolute;
    background: #5a1212;
    padding: 0 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .border-start-footer {
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .school-name h1 { font-size: 1.4rem; }
    .nav-link { font-size: 0.75rem; padding: 15px 10px !important; }
}

@media (max-width: 991px) {
    .header-top .btn { margin-top: 0; width: auto; }
}

/* Admin login page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(160deg, #fdfaf5 0%, #f3eadc 45%, #ebe3d6 100%);
}

.login-page-inner {
    width: 100%;
    max-width: 420px;
}

.login-panel {
    position: relative;
    background: #fff;
    border: 1px solid rgba(199, 154, 59, 0.22);
    border-radius: 16px;
    padding: 2.25rem 2rem 1.75rem;
    box-shadow: 0 18px 48px rgba(26, 43, 74, 0.08);
    overflow: hidden;
}

.login-panel-header {
    margin-bottom: 1.75rem;
}

.login-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(199, 154, 59, 0.35);
    margin-bottom: 1.25rem;
}

.login-title {
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.login-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
    letter-spacing: 0.04em;
}

.login-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.45rem;
}

.login-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    background: #faf8f5;
    border: 1px solid #e4ddd2;
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.login-input-wrap:focus-within {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 154, 59, 0.12);
}

.login-input-icon {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--maroon);
}

.login-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    outline: none;
}

.login-input::placeholder {
    color: #9a9a9a;
}

.login-form-options {
    margin-top: 0.25rem;
}

.login-check-label,
.login-forgot-link {
    font-size: 0.78rem;
}

.login-forgot-link {
    color: var(--maroon);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.login-forgot-link:hover {
    color: var(--gold);
}

.login-check {
    border-color: #ccc;
}

.login-check:checked {
    background-color: var(--maroon);
    border-color: var(--maroon);
}

.login-submit-btn {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.login-panel-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.login-back-link {
    font-size: 0.82rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.login-back-link:hover {
    color: var(--maroon);
}

.login-watermark {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    font-size: 7rem;
    color: rgba(90, 18, 18, 0.04);
    pointer-events: none;
    line-height: 1;
}

.login-copyright {
    margin-top: 1.25rem;
    font-size: 0.72rem;
    color: #8a8a8a;
    letter-spacing: 0.02em;
}

/* Legal pages */
.legal-content-card .legal-list {
    padding-left: 1.25rem;
    line-height: 1.85;
}

.legal-content-card .legal-list li {
    margin-bottom: 0.35rem;
}

.legal-content-card .legal-list li:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE — SMALL SCREENS ===== */
@media (max-width: 1199px) {
    .school-name h1 { font-size: 1.35rem; }
    .school-name h2 { font-size: 0.9rem; }
    .nav-link { font-size: 0.75rem; padding: 12px 10px !important; }
    .hero-section,
    .hero-slide { height: 65vh; }
}

@media (max-width: 991px) {
    .header-top { padding: 18px 0; }
    .header-top-inner { text-align: center; }
    .navbar-brand { justify-content: center; }
    .school-name { border-left: none; padding-left: 0; text-align: center; }
    .navbar-brand .logo-img { width: 72px; height: 72px; }

    .nav-row .navbar { flex-wrap: wrap; }
    .nav-row .navbar-toggler { margin-left: auto; margin-right: 0; }
    .navbar-collapse {
        background: var(--maroon-dark);
        border-radius: 0 0 12px 12px;
        margin-top: 0.5rem;
    }
    .navbar-nav { padding: 0.5rem 0; }
    .navbar-nav .nav-link {
        padding: 12px 1.25rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .dropdown-menu {
        background: rgba(0, 0, 0, 0.15);
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        padding-left: 2rem;
    }
    .navbar-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .hero-section,
    .hero-slide { height: 55vh; margin-top: 0; }
    .hero-next, .hero-prev {
        width: 42px !important;
        height: 42px !important;
    }
    .hero-next::after, .hero-prev::after { font-size: 1rem !important; }

    .feature-section { margin-top: -30px; padding-top: 20px; }
    .premium-feature-box { padding: 1rem !important; }
    .feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.25rem;
    }
    .feature-item { padding: 0.75rem !important; }

    .about-section-modern .display-5,
    .about-content-modern h2 { font-size: 1.65rem; }
    .about-content-modern { padding-right: 0 !important; }
    .gurukul-featured-img { max-height: 320px; border-width: 4px; }
    .diya-lamp-about {
        width: 48px;
        height: 48px;
        right: 0;
        bottom: 0;
    }

    .leadership-section-title { font-size: 1.35rem; }
    .leadership-col-president { margin-bottom: 2rem; }
    .leadership-messages-row .col-lg-6:last-child { margin-bottom: 0; }

    .dashboard-col-v6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .dashboard-item-v6 { flex-wrap: wrap; }
    .item-info-v6 { min-width: 0; }

    .section-title-modern h2 { font-size: 1.35rem; }
    .section-title-modern .header-line-gold { width: 30px; }

    .contact-card-modern { padding: 1.25rem !important; }
    .map-container-modern { height: 220px; }
    #contact { scroll-margin-top: 100px; }

    .page-header h1.display-4 { font-size: 2rem; }
    .page-header .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

    .border-start-footer {
        border-left: none !important;
        padding-left: 0;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand-link { flex-direction: column; text-align: center; }
    .footer-title { text-align: center; }
    .footer-brand-mission { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-legal .me-4 { margin-right: 0 !important; }

    .gallery-card-modern { height: 200px; }
    .news-card-v6 .row { flex-direction: column; }
    .news-img-v6 { min-height: 180px; }
    .news-img-v6 img { min-height: 180px; object-fit: cover; }
    .events-sidebar-v6.sticky-top { position: static !important; top: auto !important; }
    .news-events-page .container.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .gallery-page .container.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}

@media (max-width: 767px) {
    .top-bar-inner { text-align: center; }
    .portal-links { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }

    .hero-section,
    .hero-slide { height: 45vh; min-height: 260px; }

    .feature-text h6 { font-size: 0.85rem; }
    .feature-text p { font-size: 0.78rem; }

    .about-section-modern,
    .home-leadership,
    .gallery-section-modern,
    .contact-section-modern,
    .updates-dashboard-v6 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

    .leadership-header-v4 .d-flex.align-items-center.justify-content-center {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .leadership-section-title { font-size: 1.15rem; margin-left: 0 !important; margin-right: 0 !important; }
    .ornament-line-v4 { width: 40px; }
    .quote-mark-v4 { font-size: 2rem; }
    .message-text-v4 { font-size: 0.82rem; }

    .item-img-v6 {
        width: 80px;
        min-width: 80px;
        height: 58px;
    }
    .event-date-v6 .day { font-size: 1.4rem; }
    .event-details-v6 h6 { font-size: 0.78rem; }

    .gallery-img-box-professional { height: 140px; }

    .contact-info-unified-card .contact-info-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn { padding: 10px 22px; font-size: 0.78rem; }
    .founders-box-modern p { font-size: 0.95rem !important; }

    main section.py-5 .container.py-5,
    main section.py-5 .container.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}

@media (max-width: 575px) {
    .school-name h1 { font-size: 1.15rem; letter-spacing: 1px; }
    .school-name h2 { font-size: 0.78rem; }
    .school-name .tagline { font-size: 0.68rem; }
    .navbar-brand .logo-img { width: 60px; height: 60px; }
    .navbar-brand .logo-container { margin-right: 0.75rem !important; }

    .hero-section,
    .hero-slide { height: 38vh; min-height: 220px; }
    .hero-pagination { bottom: 12px !important; }

    .premium-feature-box .row > [class*="col-"] { border-top: 1px solid #eee; }
    .premium-feature-box .row > [class*="col-"]:first-child { border-top: none; }
    .border-start-custom { border-top: 1px solid #eee; }

    .about-section-modern h2,
    .about-content-modern h2 { font-size: 1.4rem; }
    .gurukul-image-box { padding: 10px; }

    .leadership-image-box-v4 { max-width: 180px; }
    .leadership-card-v4 { padding: 1rem !important; }

    .section-title-modern .d-flex { flex-wrap: wrap; gap: 0.5rem; }
    .section-title-modern h2 { font-size: 1.15rem; width: 100%; }

    .dashboard-col-v6 h5 { font-size: 0.95rem; }
    .dashboard-item-v6.mb-3 { margin-bottom: 1rem !important; }

    .contact-card-modern h4 { font-size: 1.1rem; }
    .map-container-modern { height: 200px; border-radius: 14px; }

    .page-header h1.display-4 { font-size: 1.65rem; }
    .page-header .lotus-icon i { font-size: 1.5rem !important; }

    .footer-logo-modern { width: 56px; height: 56px; }
    .footer-bottom .container { text-align: center; }

    .pagination-modern .page-link { padding: 8px 12px; margin: 0 2px; font-size: 0.82rem; }

    .login-panel { padding: 1.75rem 1.25rem 1.25rem; }
    .login-title { font-size: 1.35rem; }
}

@media (max-width: 991px) {
    .header-top { text-align: center; }
    .hero-overlay-students, .vedic-watermark { display: none !important; }
}
