* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        /* Header Styles */
        header {
            background-color: #1a237e;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 10px;
            border-radius: 30px;
        }

        .logo-text h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .logo-text p {
            font-size: 14px;
            opacity: 0.8;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffd700;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: white;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('sport image copy.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #ffd700;
            color: #1a237e;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #ffed4a;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .feature-card i {
            font-size: 40px;
            color: #1a237e;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1a237e;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Toppers Section */
        .toppers-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .toppers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .toppers-container h2 {
            font-size: 36px;
            color: #1a237e;
            margin-bottom: 15px;
        }

        .toppers-container > p {
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
        }

        .toppers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .topper-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid #f0f0f0;
        }

        .topper-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .topper-photo {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .topper-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .topper-card:hover .topper-photo img {
            transform: scale(1.05);
        }

        .rank-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(45deg, #ffd700, #ffed4a);
            color: #1a237e;
            padding: 8px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
        }

        .topper-info {
            padding: 20px;
            text-align: center;
        }

        .topper-info h3 {
            font-size: 20px;
            color: #1a237e;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .class-info {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .percentage {
            color: #4caf50;
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        /* Footer */
        footer {
            background-color: #1a237e;
            color: white;
            padding: 40px 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-section p {
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-section ul li a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 1;
        }

        /* Top Navigation Bar */
        .top-navbar {
            width: 100%;
            background: #ffd700;
            color: #2a40a3;
            font-weight: bold;
            font-size: 16px;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 2000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .top-navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 38px;
            position: relative;
        }
        .top-navbar-links {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .top-link {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            padding: 0 8px;
            transition: color 0.2s;
            display: inline-block;
        }
        .top-link:hover {
            color: #333;
        }
        .top-navbar-marquee {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            height: 38px;
        }
        .marquee {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
        }
        .marquee span {
            display: inline-block;
            padding-left: 100%;
            animation: marquee-scroll 10s linear infinite;
            font-size: 16px;
            color: #1a237e;
        }
        @keyframes marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        /* LMS Dropdown (fixed structure) */
        .lms-dropdown {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        .lms-dropdown .top-link {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            padding: 0 8px;
            transition: color 0.2s;
            display: inline-block;
        }
        .lms-dropdown .top-link:hover,
        .lms-dropdown:hover .top-link {
            color: #333;
        }
        .lms-dropdown .dropdown-menu {
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            min-width: 160px;
            background: #fffbe6;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 8px;
            z-index: 3000;
            padding: 8px 0;
            opacity: 0;
            transform: translateY(10px) scale(0.98);
            transition: opacity 0.25s, transform 0.25s;
        }
        .lms-dropdown:hover .dropdown-menu,
        .lms-dropdown:focus-within .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .dropdown-item {
            display: block;
            padding: 12px 24px;
            color: #1a237e;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border: none;
            background: none;
            transition: background 0.2s, color 0.2s, padding-left 0.2s;
            border-radius: 4px;
        }
        .dropdown-item:hover {
            background: linear-gradient(90deg, #ffd700 0%, #fffbe6 100%);
            color: #0d133d;
            padding-left: 32px;
            box-shadow: 0 2px 8px rgba(255,215,0,0.08);
        }
        /* Result Dropdown */
        .result-dropdown {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        .result-dropdown .top-link {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            padding: 0 8px;
            transition: color 0.2s;
            display: inline-block;
        }
        .result-dropdown .top-link:hover,
        .result-dropdown:hover .top-link {
            color: #333;
        }
        .result-dropdown .dropdown-menu {
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            min-width: 160px;
            background: #fffbe6;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 8px;
            z-index: 3000;
            padding: 8px 0;
            opacity: 0;
            transform: translateY(10px) scale(0.98);
            transition: opacity 0.25s, transform 0.25s;
        }
        .result-dropdown:hover .dropdown-menu,
        .result-dropdown:focus-within .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        /* Payment Dropdown */
        .payment-dropdown {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        .payment-dropdown .top-link {
            color: #1a237e;
            text-decoration: none;
            font-weight: 600;
            padding: 0 8px;
            transition: color 0.2s;
            display: inline-block;
        }
        .payment-dropdown .top-link:hover,
        .payment-dropdown:hover .top-link {
            color: #333;
        }
        .payment-dropdown .dropdown-menu {
            display: none;
            position: absolute;
            left: 0;
            top: 100%;
            min-width: 160px;
            background: #fffbe6;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 8px;
            z-index: 3000;
            padding: 8px 0;
            opacity: 0;
            transform: translateY(10px) scale(0.98);
            transition: opacity 0.25s, transform 0.25s;
        }
        .payment-dropdown:hover .dropdown-menu,
        .payment-dropdown:focus-within .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #1a237e;
                flex-direction: column;
                padding: 20px 0 8px 0;
                margin: 0;
                gap: 0;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 0;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .hero h2 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .toppers-container h2 {
                font-size: 28px;
            }

            .toppers-container > p {
                font-size: 16px;
            }

            .toppers-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .topper-photo {
                height: 150px;
            }

            .topper-info h3 {
                font-size: 18px;
            }

            .percentage {
                font-size: 16px;
            }
            .top-navbar-content {
                flex-direction: column;
                height: auto;
                padding: 4px 10px;
            }
            .top-navbar-links {
                margin-bottom: 2px;
                width: 100%;
                justify-content: space-around;
            }
            .top-navbar-marquee {
                height: 28px;
            }
            .marquee span {
                font-size: 14px;
            }
            .lms-dropdown .dropdown-menu {
                left: 0;
                right: auto;
                min-width: 160px;
            }
            /* Ensure dropdowns open on tap/focus and stack well on mobile */
            .lms-dropdown:focus-within .dropdown-menu,
            .result-dropdown:focus-within .dropdown-menu,
            .payment-dropdown:focus-within .dropdown-menu {
                display: block;
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            .lms-dropdown .top-link,
            .result-dropdown .top-link,
            .payment-dropdown .top-link {
                outline: none;
            }
            .dropdown-item {
                font-size: 14px;
                padding: 10px 16px;
            }
            .top-navbar-links {
                gap: 10px;
            }
        }

        /* Adjust header position to account for fixed top-navbar */
        header {
            top: 38px;
        }
        .hero {
            padding-top: 118px;
        }

/* Admission Enquiry Box */
.admission-enquiry-box {
    max-width: 350px;
    background: #fffbe6;
    border: 2px solid #ffd700;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 28px 24px 20px 24px;
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 1200;
    font-family: 'Arial', sans-serif;
}
.admission-enquiry-box h3 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
}
.admission-enquiry-box .timer {
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    font-size: 16px;
}
#admissionEnquiryBox form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#admissionEnquiryBox input,
#admissionEnquiryBox textarea {
    padding: 10px 12px;
    border: 1.5px solid #ffd700;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    resize: none;
    background: #fff;
    transition: border 0.2s;
}
#admissionEnquiryBox input:focus,
#admissionEnquiryBox textarea:focus {
    border-color: #1a237e;
}
#admissionEnquiryBox button {
    background: #ffd700;
    color: #1a237e;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#admissionEnquiryBox button:disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
}
.enquiry-success {
    color: #388e3c;
    font-weight: bold;
    text-align: center;
    margin-top: 18px;
    font-size: 17px;
}
.enquiry-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    color: #d32f2f;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
    font-weight: bold;
    line-height: 1;
}
.enquiry-close:hover {
    color: #fff;
    background: #d32f2f;
    border-radius: 50%;
    transform: scale(1.15);
    padding: 2px 6px;
}
@media (max-width: 900px) {
    .admission-enquiry-box {
        position: static;
        margin: 30px auto 0 auto;
        right: unset;
        top: unset;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    }
}
@media (max-width: 600px) {
    .admission-enquiry-box {
        width: 100vw;
        left: 0;
        right: 0;
        top: 0;
        position: fixed;
        margin: 0;
        border-radius: 0 0 16px 16px;
        z-index: 3000;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        padding: 18px 6px 12px 6px;
    }
    body {
        padding-top: 140px;
    }
    .admission-enquiry-box h3 {
        font-size: 18px;
    }
    .admission-enquiry-box .timer {
        font-size: 14px;
    }
    .enquiry-close {
        top: 8px;
        right: 10px;
        font-size: 22px;
    }
}
.hamburger i {
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    vertical-align: middle;
}
.hamburger i.fa-times {
    color: #ffd700;
}
.hamburger i:active {
    transform: scale(1.1);
}

.floating-social {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.social-main-btn {
    background: #1a237e;
    color: #ffd700;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    outline: none;
}
.social-main-btn:hover {
    background: #ffd700;
    color: #1a237e;
    transform: scale(1.08);
}
.social-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.25s, transform 0.25s;
}
.social-options.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}
.social-icon:last-child {
    margin-bottom: 0;
}
.social-icon.whatsapp {
    background: #25d366;
    color: #fff;
}
.social-icon.facebook {
    background: #1877f3;
    color: #fff;
}
.social-icon.instagram {
    background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
    color: #fff;
}
.social-icon:hover {
    transform: scale(1.13);
    filter: brightness(1.1);
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 4000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float i {
    color: white;
    font-size: 28px;
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
    .floating-social {
        bottom: 16px;
        right: 12px;
    }
    .social-main-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
        margin-bottom: 7px;
    }
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float i {
        font-size: 24px;
    }
}