:root {
            --primary: #2C5F7C;
            --primary-dark: #1E4258;
            --secondary: #E8A03D;
            --accent: #4A9D8E;
            --text: #2D3748;
            --text-light: #64748B;
            --bg: #FFFFFF;
            --bg-secondary: #F8FAFC;
            --bg-tertiary: #EEF2F6;
            --border: #E2E8F0;
            --shadow: rgba(0, 0, 0, 0.08);
            --shadow-md: rgba(0, 0, 0, 0.12);
            --shadow-lg: rgba(0, 0, 0, 0.16);
        }

        [data-theme="dark"] {
            --primary: #5A9FBD;
            --primary-dark: #4A8CA9;
            --secondary: #F4B860;
            --accent: #6BC4B5;
            --text: #E2E8F0;
            --text-light: #94A3B8;
            --bg: #0F172A;
            --bg-secondary: #1E293B;
            --bg-tertiary: #334155;
            --border: #334155;
            --shadow: rgba(0, 0, 0, 0.3);
            --shadow-md: rgba(0, 0, 0, 0.4);
            --shadow-lg: rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Header */
        header {
            background: var(--bg);
            box-shadow: 0 2px 20px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            box-shadow: 0 4px 12px var(--shadow-md);
        }

        .school-info h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.2rem;
        }

        .school-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: var(--bg-tertiary);
            border: 2px solid var(--border);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .theme-toggle:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Navigation */
        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Mobile Theme Toggle (hidden by default) */
        .mobile-theme-toggle {
            display: none;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--bg);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                box-shadow: -5px 0 20px var(--shadow-lg);
                transition: right 0.3s ease;
                gap: 1.5rem;
                z-index: 999;
            }

            nav.active {
                right: 0;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }
            
            /* Hide desktop theme toggle on mobile */
            .desktop-theme-toggle {
                display: none;
            }
            
            /* Show mobile theme toggle */
            .mobile-theme-toggle {
                display: flex;
                width: 100%;
                height: 50px;
                border-radius: 10px;
                justify-content: center;
                margin-top: 1rem;
                font-size: 1.3rem;
            }
        }

        @media (min-width: 1025px) {
            .hamburger {
                display: none;
            }
            
            .mobile-theme-toggle {
                display: none;
            }
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            background: var(--bg-tertiary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44, 95, 124, 0.95), rgba(74, 157, 142, 0.9)),
                        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80') center/cover;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--text);
            box-shadow: 0 4px 15px rgba(232, 160, 61, 0.4);
        }

        .btn-primary:hover {
            background: #D89231;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(232, 160, 61, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        /* About Section */
        .about {
            background: var(--bg-secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .vision-mission {
            display: grid;
            gap: 2rem;
        }

        .vm-card {
            background: var(--bg);
            padding: 2rem;
            border-radius: 16px;
            border-left: 5px solid var(--secondary);
            box-shadow: 0 4px 15px var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vm-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px var(--shadow-md);
        }

        .vm-card h4 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .vm-card h4::before {
            content: '✦';
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow-lg);
        }

        /* Academics Section */
        .academics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .academic-card {
            background: var(--bg);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent);
            text-align: center;
        }

        .academic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px var(--shadow-lg);
        }

        .academic-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 6px 20px var(--shadow-md);
        }

        .academic-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .academic-card p {
            color: var(--text-light);
        }

        /* Admissions Section */
        .admissions {
            background: var(--bg-secondary);
        }

        .admission-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
        }

        .admission-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
            background: var(--bg);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 15px var(--shadow);
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 25px var(--shadow-md);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .step-content p {
            color: var(--text-light);
        }

        .admission-form {
            background: var(--bg);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px var(--shadow-md);
        }

        .admission-form h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--text);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            background: var(--bg-secondary);
            color: var(--text);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--bg);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--shadow-lg);
        }

        /* Facilities Section */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .facility-card {
            background: var(--bg);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .facility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .facility-card:hover::before {
            transform: scaleX(1);
        }

        .facility-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px var(--shadow-md);
        }

        .facility-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .facility-card h3 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .facility-card p {
            color: var(--text-light);
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }

        .why-choose .section-header h2 {
            color: white;
        }

        .why-choose .section-header h2::after {
            background: var(--secondary);
        }

        .why-choose .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .feature-card p {
            opacity: 0.95;
        }

        /* Gallery Section */
        .gallery {
            background: var(--bg-secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 4px 15px var(--shadow);
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px var(--shadow-md);
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay p {
            color: white;
            font-weight: 600;
        }

        .view-toggle-btn {
            display: block;
            margin: 2rem auto 0;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-toggle-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px var(--shadow-md);
        }

        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .testimonial-card {
            background: var(--bg);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px var(--shadow);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card.hidden {
            display: none;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px var(--shadow-md);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .rating {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        /* Contact Section */
        .contact {
            background: var(--bg-secondary);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: grid;
            gap: 2rem;
        }

        .info-card {
            background: var(--bg);
            padding: 2rem;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: 0 4px 15px var(--shadow);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 25px var(--shadow-md);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .info-content p {
            color: var(--text-light);
        }

        .info-content a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: var(--primary);
        }

        .map-container {
            border-radius: 10px;
            padding: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px var(--shadow-md);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        /* Footer */
        footer {
            background: var(--bg-tertiary);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .footer-links h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 2px solid var(--border);
            text-align: center;
            color: var(--text-light);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .whatsapp-float:hover {
            background: #20BA59;
            transform: scale(1.15);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-container {
                padding: 1rem;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--bg);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                box-shadow: -5px 0 20px var(--shadow-lg);
                transition: right 0.3s ease;
                gap: 1.5rem;
            }

            nav.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero h2 {
                font-size: 2.5rem;
            }

            .about-content,
            .admission-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .school-info h1 {
                font-size: 1.2rem;
            }

            .school-info p {
                font-size: 0.75rem;
            }

            .logo {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }