:root {
    --primary-color: #1a3a5c;
    --accent-gold: #d4a574;
    --accent-red: #c41e3a;
    --text-dark: #1a3a5c;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

nav a:hover {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a8c 100%);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #c49660;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-red));
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 4rem;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    background-color: var(--bg-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: linear-gradient(135deg, var(--primary-color), #2d5a8c);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.program-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.program-card p {
    margin-bottom: 1rem;
}

/* Who is it for */
.who-is-it {
    padding: 80px 20px;
    background: #ffffff;
}

.who-is-it h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.who-is-it h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #f4b41a;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}


.who-is-it-description {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.who-is-it-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}


.program-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.program-showcase-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.program-showcase-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-showcase-card:hover img {
    transform: scale(1.08);
}


.program-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
    .who-is-it h2 {
        font-size: 28px;
    }

    .program-showcase-card img {
        height: 200px;
    }
}


/* Admissions Section */
.admissions {
    background-color: var(--bg-white);
}

.admissions-breadcrumb {
    background-color: #f0f0f0;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.admissions-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.admissions-breadcrumb a:hover {
    color: var(--accent-red);
}

.admissions-content {
    max-width: 900px;
    margin: 0 auto;
}

.admissions-section {
    margin-bottom: 3rem;
}

.admissions-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.75rem;
}

.admissions-section p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.admissions-section ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.admissions-section li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.admissions-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact h2 {
    color: var(--text-light);
    border-bottom: 3px solid var(--accent-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.map-box {
    justify-content: flex-start;
}

.contact-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);

    /* NEW */
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Footer */
footer {
    background-color: #f5f5f5;
    color: var(--text-dark);
    padding: 3rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
}

.footer-section {
    padding: 0;
}

.footer-logo {
    text-align: center;
}

.footer-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    background-color: #0f2438;
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Map box alignment */
.map-box iframe {
    display: block;
}

@media (max-width: 768px) {
    .map-box iframe {
        height: 220px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-section:hover {
    opacity: 0.95;
}

/* Fix clickable logo UI issue */
header .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    text-decoration: none;
    /* remove link underline */
    color: inherit;
    /* prevent link color */
}

/* Prevent header layout break */
header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.admissions-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.admissions-section h3 {
    color: #1a4d8f;
    margin-bottom: 10px;
}

.admissions-section ul {
    padding-left: 20px;
}

.admissions-section li {
    margin-bottom: 6px;
}

.admission-open {
    background: linear-gradient(135deg, #1a4d8f, #2d7bdc);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.admission-open h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.admission-open .session {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.admission-open p {
    margin-bottom: 20px;
    font-size: 16px;
}

.admission-btn {
    background-color: #ffffff;
    color: #1a4d8f;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.admission-btn {
    background-color: #ffffff;
    color: #1a3a5c;
    /* logo navy */
    font-weight: 600;
}

.admission-btn:hover {
    background-color: #ffdd57;
    color: #000000;
}


.top-admission-bar {
    background-color: #1a4d8f;
    color: #ffffff;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.admission-marquee {
    display: inline-block;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    animation: scrollText 40s linear infinite;
}

.admission-marquee a {
    color: #ffdd57;
    font-weight: bold;
    text-decoration: none;
}

.admission-marquee a:hover {
    text-decoration: underline;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Logo size — Recommended */
.logo-section img {
    width: 140px;
    /* Desktop: 120–150px */
    height: auto;
}

/* Mobile logo size */
@media (max-width: 768px) {
    .logo-section img {
        width: 90px;
        /* Mobile: 80–100px */
    }
}

/* Hamburger button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
}

/* Contact form UX status message */
.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    color: #2e7d32;
    /* green */
}

.form-status.error {
    color: #c62828;
    /* red */
}

/* Disabled submit button state */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===============================
   MOBILE HEADER POLISH
   =============================== */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    .header-content {
        padding: 0 1rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .logo-text span:first-child {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .menu-toggle {
        margin-left: auto;
    }
}

/* ===============================
   MOBILE HERO FIX
   =============================== */
@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ===============================
   MOBILE CONTENT SECTIONS
   =============================== */
@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {

    .program-showcase-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .program-showcase-card img {
        height: 200px;
    }
}

/* Remove bullets ONLY from header navigation */
header ul,
header ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* ===============================
   ABOUT SECTION – MOBILE FIX
   =============================== */
@media (max-width: 768px) {

    /* Stack layout properly */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Headings */
    .about-text h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Paragraph text */
    .about-text p {
        text-align: center;
        line-height: 1.8;
        max-width: 90%;
        margin: 0 auto 1rem;
        word-break: normal;
    }

    /* Bullet list */
    .values-list {
        max-width: 90%;
        margin: 1.5rem auto 0;
        text-align: left;
    }

    .values-list li {
        line-height: 1.7;
    }

    /* Icon / image box */
    .about-image {
        margin-top: 1.5rem;
        font-size: 3rem;
    }
}

/* ===============================
   HEADER NAVIGATION (FINAL – KEEP ONLY THIS)
   =============================== */

/* Remove bullets from header menu */
header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- DESKTOP ---------- */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: #ffffff;
    }

    nav {
        width: 100%;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        margin-top: 1rem;
        padding: 1rem 0;
        border-radius: 8px;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 0.75rem 0;
    }
}

/* =====================================
   FORCE DESKTOP HEADER NAV (FINAL FIX)
   ===================================== */
@media (min-width: 769px) {

    header nav {
        width: auto;
    }

    header .nav-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;

        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    header .nav-list li {
        padding: 0 !important;
    }
}

/* =========================================
   DESKTOP HEADER – HARD RESET (FINAL)
   ========================================= */
@media (min-width: 769px) {

    header .header-content {
        flex-direction: row !important;
    }

    header nav {
        width: auto !important;
    }

    header .nav-list {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;

        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        position: static !important;
    }

    header .nav-list li {
        padding: 0 !important;
    }

    header .menu-toggle {
        display: none !important;
    }
}

/* ===============================
   HEADER NAV — FINAL DESKTOP FIX
   =============================== */

/* RESET */
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* DESKTOP (ALWAYS HORIZONTAL) */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    header nav .nav-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 2rem;
    }
}

/* MOBILE (HAMBURGER) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
    }

    header nav .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        background-color: var(--primary-color);
        border-radius: 8px;
        padding: 1rem 0;
        text-align: center;
    }

    header nav .nav-list.active {
        display: flex;
    }

    header nav .nav-list li {
        padding: 0.75rem 0;
    }
}

/* =================================================
   HEADER NAV – FORCE HORIZONTAL ON DESKTOP (FINAL)
   ================================================= */

/* Remove bullets */
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* DESKTOP: ALWAYS HORIZONTAL */
@media (min-width: 769px) {
    header .nav-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 2rem;
    }

    header .nav-list li {
        padding: 0;
    }

    .menu-toggle {
        display: none !important;
    }
}

/* MOBILE: HAMBURGER */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
    }

    header .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        margin-top: 1rem;
        padding: 1rem 0;
        text-align: center;
    }

    header .nav-list.active {
        display: flex;
    }

    header .nav-list li {
        padding: 0.75rem 0;
    }
}

/* =========================================
   FORCE DESKTOP HEADER (ALL PAGES)
   ========================================= */
@media (min-width: 769px) {

    header .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    header nav {
        display: flex !important;
        align-items: center !important;
    }

    header .nav-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 2rem !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    header .nav-list li {
        display: inline-block !important;
    }

    header .menu-toggle {
        display: none !important;
    }
}

@media (min-width: 769px) {
    header .header-content {
        display: flex !important;
        flex-direction: row !important;
        /* Forces horizontal layout */
        align-items: center !important;
        justify-content: space-between !important;
    }

    header .nav-list {
        display: flex !important;
        flex-direction: row !important;
        /* Forces menu items horizontal */
        gap: 20px;
        list-style: none;
    }
}

/* ===============================
   HEADER NAV – FORCE HORIZONTAL (DESKTOP)
   =============================== */

@media (min-width: 769px) {
    header nav ul {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
}

header nav li {
    list-style: none;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 4px;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ===============================
   MOBILE HEADER – CENTER ALIGN
   =============================== */
@media (max-width: 768px) {

    /* Stack header content vertically */
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    /* Center logo + school name */
    .logo-section {
        justify-content: center;
        text-align: center;
    }

    .logo-text {
        align-items: center;
    }

    /* Center hamburger icon */
    .menu-toggle {
        margin: 0;
        align-self: center;
    }
}

/* ===============================
   MOBILE HAMBURGER MENU – SIZE FIX
   =============================== */
@media (max-width: 768px) {

    /* Reduce menu item spacing */
    header .nav-list {
        gap: 0;
        padding: 0.5rem 0;
    }

    /* Menu item size */
    header .nav-list li {
        padding: 0.5rem 0;
    }

    /* Menu link text size */
    header .nav-list li a {
        font-size: 1rem;
        /* smaller text */
        font-weight: 500;
        line-height: 1.4;
    }
}

/* 🔒 Prevent horizontal overflow (GLOBAL SAFETY) */
html,
body {
    overflow-x: hidden;
}

/* ===============================
   DESKTOP NAVIGATION – FIX
   =============================== */

@media (min-width: 769px) {

    .nav-list {
        display: flex;
        flex-wrap: wrap;      /* 👈 allows second row if needed */
        gap: 1rem 1.5rem;
        justify-content: flex-end;
    }
}

    .nav-list {
        display: flex;
        align-items: center;
        gap: 1.4rem;          /* 👈 reduced from 2rem */
        flex-wrap: nowrap;   /* stay on one line */
    }

    .nav-list a {
        font-size: 0.95rem;  /* slightly smaller */
        white-space: nowrap; /* prevents word break */
    }
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
    }

    header nav .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        margin-top: 1rem;
        padding: 1rem 0;
        text-align: center;
    }

    header nav .nav-list.active {
        display: flex;
    }

    header nav .nav-list li {
        padding: 0.75rem 0;
    }
}


    /* Hide scrollbar (still scrollable) */
    nav::-webkit-scrollbar {
        display: none;
    }

    nav {
        scrollbar-width: none; /* Firefox */
    }

.nav-list a.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}
.visitor-box {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #ffffff;
}

#visitor-count {
    color: #ffdd57;
    font-weight: bold;
    margin-left: 4px;
}
.visitor-box {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #ffffff;
    text-align: center;
}

.counter-wrapper img {
    margin-top: 6px;
    height: 24px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }
}

.chairperson-sign {
    margin-top: 2rem;
    color: var(--primary-color);
}
/* Chairperson Section */
.chairperson {
    background: #f9fbff;
    padding: 4rem 1rem;
}

.chairperson-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: auto;
}

/* Photo */
.chairperson-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Text */
.chairperson-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.chairperson-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.chairperson-sign {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chairperson-content {
        flex-direction: column;
        text-align: center;
    }
}
/* Director Message Section */
.director-section {
    padding: 60px 20px;
    background: #f9fafc;
}

.director-wrapper {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Heading */
.director-content h2 {
    font-size: 28px;
    color: #0b3c5d;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.director-content h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #f4b41a;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Paragraph text */
.director-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* First greeting line */
.director-content p strong {
    color: #222;
}

/* Signature */
.director-sign {
    margin-top: 30px;
    font-size: 16px;
    color: #222;
}
/* Director Section Layout */
.director-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Director Photo */
.director-photo img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #1f3c5c;
}

/* Responsive */
@media (max-width: 768px) {
    .director-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .director-photo img {
        width: 200px;
        height: 200px;
    }
}


/* Reveal animation (optional – since you used reveal class) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .director-wrapper {
        padding: 30px 20px;
    }

    .director-content h2 {
        font-size: 24px;
    }

    .director-content p {
        font-size: 15px;
    }
}

/* Common Message Card */
.message-section {
    padding: 80px 20px;
    background: #f6f8fb;
}

.message-card {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Headings */
.message-card h2 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 25px;
    position: relative;
}

.message-card h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #f4b41a, #d9980d);
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

/* Paragraphs */
.message-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}

/* Signature */
.message-sign {
    margin-top: 35px;
    font-size: 16px;
}

.message-sign strong {
    color: #222;
}
/* Chairperson Section */
.chairperson {
    background: #f6f8fb;
    padding: 80px 20px;
}

.chairperson-content {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chairperson-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.chairperson-text h2 {
    text-align: center;
}

/* Chairperson Photo */
.chairperson-photo img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.chairperson-photo img:hover {
    transform: scale(1.05);
}

/* Chairperson Text */
.chairperson-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.chairperson-text h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #f4b41a, #d9980d);
    display: block;
    margin: 10px auto 0;   /* ✅ PERFECT CENTER */
    border-radius: 3px;
}
@media (max-width: 900px) {
    .chairperson-text {
        text-align: center;
    }
}


.chairperson-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}

/* Signature */
.chairperson-sign {
    margin-top: 30px;
    font-size: 16px;
    color: var(--primary-color);
}
/* Director Message Section */
.director-section {
    background: #ffffff;
    padding: 80px 20px;
}

.director-wrapper {
    max-width: 1000px;
    margin: auto;
}

.director-content {
    background: #f9fbfd;
    padding: 50px;
    border-radius: 16px;
    border-left: 6px solid #f4b41a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Heading */
.director-content h2 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 25px;
    position: relative;
}

.director-content h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #f4b41a, #d9980d);
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

/* Text */
.director-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
}

/* Signature */
.director-sign {
    margin-top: 35px;
    font-size: 16px;
    color: #222;
}
@media (max-width: 900px) {
    .chairperson-content {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .chairperson-photo img {
        width: 200px;
        height: 200px;
    }

    .chairperson-text h2,
    .director-content h2 {
        font-size: 26px;
    }

    .director-content {
        padding: 35px 25px;
    }
}
/* TEMP FIX – FORCE VISIBILITY */
.reveal {
    opacity: 1 !important;
    transform: none !important;
}
.highlight-quote {
    font-size: 17px;
    font-style: italic;
    color: var(--primary-color);
    background: #f4f8ff;
    border-left: 4px solid #f4b41a;
    padding: 12px 18px;
    margin: 20px 0 25px;
    border-radius: 6px;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.home-admission-cta {
    background: #f6f8fb;
    padding: 70px 20px;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* ===== FIX HEADER LOGO CONSISTENCY ===== */
.logo-section img {
    height: 60px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}
footer .site-logo {
  height: 45px;
}
.site-logo {
  height: 65px;      /* Best for desktop */
  width: auto;
}

@media (max-width: 768px) {
  .site-logo {
    height: 50px;   /* Mobile friendly */
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.message-heading h2 {
    text-align: center;
}

.message-heading h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #f4b41a, #d9980d);
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}
.republic-day-banner {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(
        to right,
        #ff9933,
        #ffffff,
        #138808
    );
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

.republic-day-banner h2 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.republic-day-banner p {
    font-size: 18px;
    font-weight: 600;
}

.chakra {
    width: 70px;
    height: 70px;
    border: 4px solid #1a4fa3;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    animation: spin 6s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.tricolour-dot {
    position: absolute;
    bottom: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
        opacity: 0.8;
    }
    to {
        transform: translateY(-500px);
        opacity: 0;
    }
}
/* Republic Day Banner */
.republic-day-banner {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    background: linear-gradient(
        120deg,
        #ff9933,
        #ffffff,
        #138808
    );
}

/* Chakra Container */
.chakra-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Ashoka Chakra */
.chakra {
    position: relative;
    width: 80px;
    height: 80px;
    border: 4px solid #1a4fa3;
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

/* 24 Spokes */
.chakra span {
    position: absolute;
    width: 2px;
    height: 40px;
    background: #1a4fa3;
    top: 0;
    left: 50%;
    transform-origin: bottom center;
}

.chakra span:nth-child(1)  { transform: rotate(0deg); }
.chakra span:nth-child(2)  { transform: rotate(15deg); }
.chakra span:nth-child(3)  { transform: rotate(30deg); }
.chakra span:nth-child(4)  { transform: rotate(45deg); }
.chakra span:nth-child(5)  { transform: rotate(60deg); }
.chakra span:nth-child(6)  { transform: rotate(75deg); }
.chakra span:nth-child(7)  { transform: rotate(90deg); }
.chakra span:nth-child(8)  { transform: rotate(105deg); }
.chakra span:nth-child(9)  { transform: rotate(120deg); }
.chakra span:nth-child(10) { transform: rotate(135deg); }
.chakra span:nth-child(11) { transform: rotate(150deg); }
.chakra span:nth-child(12) { transform: rotate(165deg); }
.chakra span:nth-child(13) { transform: rotate(180deg); }
.chakra span:nth-child(14) { transform: rotate(195deg); }
.chakra span:nth-child(15) { transform: rotate(210deg); }
.chakra span:nth-child(16) { transform: rotate(225deg); }
.chakra span:nth-child(17) { transform: rotate(240deg); }
.chakra span:nth-child(18) { transform: rotate(255deg); }
.chakra span:nth-child(19) { transform: rotate(270deg); }
.chakra span:nth-child(20) { transform: rotate(285deg); }
.chakra span:nth-child(21) { transform: rotate(300deg); }
.chakra span:nth-child(22) { transform: rotate(315deg); }
.chakra span:nth-child(23) { transform: rotate(330deg); }
.chakra span:nth-child(24) { transform: rotate(345deg); }

/* Text */
.republic-day-banner h2 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 8px;
}

.republic-day-banner p {
    font-size: 18px;
    font-weight: 600;
}

/* Chakra Rotation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tricolour-dot {
    position: absolute;
    bottom: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
        opacity: 0.8;
    }
    to {
        transform: translateY(-500px);
        opacity: 0;
    }
}
/* ===============================
   MAHA SHIVRATRI – SPIRITUAL STYLE
   =============================== */

.shivratri-banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 110px 20px;
    background: linear-gradient(
        135deg,
        #0f2027 0%,
        #1a2a6c 50%,
        #2c5364 100%
    );
    color: #ffffff;
}


/* Soft overlay glow */
.shivratri-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Content */
.shivratri-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease;
}

/* Om symbol */
.om-symbol {
    font-size: 65px;
    margin-bottom: 20px;
    color: #ffd369;
    text-shadow: 0 0 20px rgba(255,211,105,0.8);
}


@keyframes gentleFloat {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Heading */
.shivratri-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}


/* Paragraph */
.shivratri-content p {
    font-size: 18px;
    opacity: 0.9;
    color: #e6f0ff;
    max-width: 700px;
    margin: 0 auto;
}


/* Entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.shiv-dot {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
        opacity: 0.8;
    }
    to {
        transform: translateY(-500px);
        opacity: 0;
    }
}
.social-icons {
    display: flex;
    gap: 15px;
    padding: 0;
}

.social-icons li {
    list-style: none;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
}

/* Individual Brand Colors */
.social-icons li:nth-child(1) a {
    background: #3b5998;  /* Facebook */
}

.social-icons li:nth-child(2) a {
    background: #e4405f;  /* Instagram */
}

.social-icons li:nth-child(3) a {
    background: #0077b5;  /* LinkedIn */
}

.social-icons li:nth-child(4) a {
    background: #ff0000;  /* YouTube */
}

/* Hover Effect */
.social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.85;
}

/* =====================================
   FINAL MOBILE HAMBURGER FIX (OVERRIDE)
   ===================================== */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: block !important;
        font-size: 2rem;
        cursor: pointer;
        color: #ffffff;
    }

    /* Hide menu by default */
    header nav .nav-list {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        background: var(--primary-color) !important;
        margin-top: 1rem !important;
        padding: 1rem 0 !important;
        text-align: center !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Show menu when active */
    header nav .nav-list.active {
        display: flex !important;
    }

    header nav .nav-list li {
        padding: 0.75rem 0 !important;
    }
}
/* =====================================
   MOBILE HEADER – PROPER ALIGNMENT
   ===================================== */
@media (max-width: 768px) {

    .header-content {
        flex-direction: column;   /* keep hamburger below */
        align-items: center;
    }

    /* Keep logo + text in one row */
    .logo-section {
        width: 100%;
        display: flex;
        align-items: center;      /* 🔥 vertical alignment */
        justify-content: flex-start; /* keep left aligned */
        gap: 0.75rem;
        text-align: left;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;  /* 🔥 vertical alignment */
        align-items: flex-start;  /* keep left aligned */
        line-height: 1.1;
    }

    .menu-toggle {
        margin-top: 0.75rem;
    }
}
/* =====================================
   FORCE HORIZONTAL NAV – ALL PAGES
   ===================================== */
@media (max-width: 768px) {

    .menu-toggle {
        display: none !important;
    }

    header nav .nav-list {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
        background: transparent !important;
        padding: 0.5rem 0 !important;
        margin: 0 auto !important;
    }

    header nav .nav-list li {
        padding: 0 !important;
    }

    header nav .nav-list a {
        font-size: 0.9rem !important;
    }
}
/* ===============================
   GLOBAL SMOOTH TRANSITIONS
================================ */

* {
    transition: background-color 0.4s ease,
                color 0.4s ease,
                transform 0.4s ease,
                opacity 0.4s ease,
                box-shadow 0.4s ease;
}

html {
    scroll-behavior: smooth;
}
/* ===============================
   PREMIUM BUTTON EFFECT
================================ */

button, .btn {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

button:hover, .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/* ===============================
   IMAGE MICRO ANIMATION
================================ */

img {
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover img,
.feature:hover img {
    transform: scale(1.05);
}
/* ===============================
   HERO TEXT ANIMATION
================================ */

.hero h1,
.hero p {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero p {
    animation-delay: 0.3s;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===============================
   DROPDOWN MENU (APPLE STYLE)
================================ */

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 10px 0;
    min-width: 170px;
    border-radius: 8px;

    /* Smooth animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu li {
    padding: 8px 18px;
}

.dropdown-menu li a {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

}
/* ===============================
   FIX NAVBAR ONE LINE
================================ */

header {
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    flex-wrap: nowrap;   /* Important */
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;  /* Prevent shrinking */
}

/* Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 16px;  /* reduce if needed */
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap; /* prevent wrapping */
}

.nav-list li {
    display: flex;
    align-items: center;
}

/* Prevent links from breaking */
.nav-list a {
    white-space: nowrap;
    font-size: 14px; /* slightly smaller */
}

/* ERP Button */
.erp-btn {
    padding: 6px 14px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
    }
}
/* ===============================
   APPLE STYLE MOBILE NAV
================================ */

.mobile-icons {
    display: none;
}

/* Overlay menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: inherit;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    padding: 40px 30px;
}

.nav-overlay.active {
    transform: translateY(0);
}

.nav-header {
    display: flex;
    justify-content: flex-end;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 40px;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-list a {
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .mobile-icons {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }
}
/* ===============================
   HAMBURGER RIGHT ALIGN
================================ */

.hamburger {
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .mobile-icons {
        display: block;
        position: absolute;
        right: 20px;   /* Move to right */
        top: 50%;
        transform: translateY(-50%);
    }

}

/* ===============================
   APPLE LEVEL MOBILE MENU
================================ */

/* Hamburger */
.hamburger {
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: #243f63; /* Your school color */
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    z-index: 9999;
    padding: 80px 40px;
}

.nav-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

/* Close X area */
.nav-header {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Menu items */
.mobile-nav-list {
    list-style: none;
    margin-top: 40px;
}

.mobile-nav-list li {
    margin: 28px 0;
}

.mobile-nav-list a {
    font-size: 30px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Apple hover feel */
.mobile-nav-list a:hover {
    opacity: 0.7;
    transform: translateX(6px);
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .mobile-icons {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ===============================
   HOLI BANNER SECTION
=================================
<!-- .holi-banner {
    background: linear-gradient(135deg, #ff6ec4, #7873f5, #42e695, #ffb347);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.holi-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.holi-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* Gradient Animation 
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile Responsive 
@media (max-width: 768px) {
    .holi-content h1 {
        font-size: 2rem;
    }
    .holi-content p {
        font-size: 1rem;
    }
}
/* ===============================
   HOLI CONFETTI ANIMATION
================================= 

#holiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Optional: Reduce on mobile for performance 
    #holiCanvas {
        opacity: 0.8;
    }
}
#holiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
} 
.womens-day-message{
    text-align:center;
    padding:50px 20px;
    background:#f9f4f6;
}

.womens-day-message h2{
    font-size:32px;
    color:#8b1d2c;
    margin-bottom:10px;
}

.flower{
    font-size:24px;
    margin:0 8px;
}

.divider{
    width:80px;
    height:3px;
    background:#d4a15c;
    margin:15px auto;
}

.womens-day-message p{
    max-width:600px;
    margin:auto;
    font-size:16px;
    color:#444;
    line-height:1.6;
}

/* Mobile 

@media (max-width:768px){

.womens-day-message h2{
    font-size:24px;
}

.flower{
    font-size:18px;
}

.womens-day-message p{
    font-size:14px;
}

}*/

/* HERO BANNER */
.hero {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

/* Mobile height */
@media (max-width: 768px) {
  .hero {
    height: 260px;
  }
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
  object-position: center;
}

/* Dark overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* TEXT CENTER */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 700px;
  z-index: 2;
}

.overlay h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background: #dc3545;
  color: #fff;
}

.btn-secondary {
  background: #d4a373;
  color: #000;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.prev { left: 15px; }
.next { right: 15px; }

/* MOBILE FIX */
@media (max-width: 768px) {

  .overlay h1 {
    font-size: 22px;
  }

  .overlay p {
    font-size: 14px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons button {
    flex: 1;
    max-width: 140px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 320px;
  }
}