            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
                body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background:transparent ;
            overflow-x: hidden;
        }

            /* Footer */
        footer {
            background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
            color: white;
            padding: 60px 20px 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ffd166, #1e3a5f, #ffd166, #1e3a5f, #ffd166);
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 25px;
            color: #ffd166;
            font-size: 22px;
            position: relative;
            padding-bottom: 15px;
            font-weight: bold;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #ffd166, transparent);
            border-radius: 2px;
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            transition: all 0.3s;
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-section a:hover {
            color: #ffd166;
            padding-left: 10px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background: #ffd166;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1e3a5f;
            font-size: 28px;
        }

        .footer-logo-text h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 5px;
            padding: 0;
        }

        .footer-logo-text h3::after {
            display: none;
        }

        .footer-logo-text p {
            font-size: 12px;
            color: #ffd166;
            margin: 0;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 209, 102, 0.1);
            border: 2px solid #ffd166;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            color: #ffd166;
            font-size: 18px;
        }

        .social-icon:hover {
            background: #ffd166;
            color: #1e3a5f;
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 20px rgba(255, 209, 102, 0.5);
        }

        .footer-newsletter {
            margin-top: 25px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: 2px solid #ffd166;
            border-radius: 5px;
            background: rgba(255, 209, 102, 0.1);
            color: white;
            font-size: 14px;
        }

        .newsletter-form input::placeholder {
            color: #ccc;
        }

        .newsletter-form button {
            padding: 12px 25px;
            background: #ffd166;
            color: #1e3a5f;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #ffbd33;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 209, 102, 0.2);
            color: #999;
        }

        .footer-bottom p {
            margin-bottom: 8px;
            font-size: 14px;
        }

        .footer-bottom a {
            color: #ffd166;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: bold;
        }

        .footer-bottom a:hover {
            color: #ffbd33;
            text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideGallery {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes slideTestimonials {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-icon {
                display: flex;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 5px;
            }

            .register-btn {
                padding: 8px 15px;
                font-size: 11px;
            }

            .features {
                flex-direction: column;
            }

            .testimonial-card {
                min-width: 300px;
            }

            .gallery-item {
                min-width: 250px;
                height: 350px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .teachers-grid {
                grid-template-columns: 1fr;
            }

            .logo-text h1 {
                font-size: 16px;
            }

            .logo-text p {
                font-size: 9px;
            }
        }

        @media (min-width: 769px) {
            nav ul {
                display: flex !important;
            }
        }