 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #fff;
            min-height: 100vh;
        }

        nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }

        .logo {
            height: 60px;
            width: 60px;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2b2e62;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #2b2e62;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button::after {
            display: none;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

         @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
        }




         /* Hero Section */
        .hero {
            position: relative;
            height: 600px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../assets/images/academy.jpg");
            overflow: hidden;
            background-size: cover;
            padding: 100px 5% 60px;
        }

        /* Animated Background Elements */
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(50px, -50px) scale(1.1);
            }
        }

        /* Hero Content */
        .hero-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
            
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            animation: slideInLeft 1s ease;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            color: white;
            font-size: 0.9em;
            font-weight: 500;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-title {
            font-size: 3em;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-title .highlight {
            background: linear-gradient(90deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.3em;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 18px 40px;
            background: white;
            color: #2b2e62;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            color: white;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Hero Image/Illustration */
        .hero-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            animation: slideInRight 1s ease;
        }

        .hero-visual {
            width: 100%;
            max-width: 600px;
            height: 500px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .visual-icon {
            font-size: 15em;
            opacity: 0.9;
            animation: pulse 3s infinite ease-in-out;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            left:58%;
            bottom:25%;
            align-items: center;
            gap: 15px;
            animation: floatCard 4s infinite ease-in-out;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #020a54 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
        }

        .card-text h4 {
            font-size: 1.1em;
            color: #333;
            margin-bottom: 3px;
        }

        .card-text p {
            font-size: 0.85em;
            color: #666;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            bottom: 1%;
            left: 73%;
            animation-delay: 1s;
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

       
        @media (max-width: 600px) {
            
        .hero-content h1{
            font-size: 2.3rem;
            
        }
        .hero-content p{
            font-size: 1.1rem;
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 10px 20px;
            left:8%;
            bottom:103%;
            gap: 15px;
            
        }

        
        .floating-card:nth-child(2) {
            bottom: 10%;
            left: 38%;
            animation-delay: 1s;
            padding: 10px 20px;
            width: 70%;
        }

         .btn-primary {
            padding: 23px 10px;
            color: #2b2e62;
            font-size: 1em;
        }

        .btn-secondary {
            
            position: relative;
            padding: 20px 10px;
            font-size: 1em;
            top: -6rem;
            left: 11rem;
            display:none;
            
        }

        .content-spacer p{
            font-size: 1.3rem;
        }


        }