
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1a1a2e;
            overflow-x: hidden;
            background: #0a0a0f;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Floating Particles Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, #4ECDC4, transparent);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(78, 205, 196, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: 0 8px 32px rgba(78, 205, 196, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4ECDC4, #FF9A4D, #4ECDC4);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .logo-img {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #4ECDC4, #FF9A4D);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(78, 205, 196, 0.3);
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4ECDC4, #FF9A4D);
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #4ECDC4;
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #4ECDC4;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(78, 205, 196, 0.1);
            border: 1px solid rgba(78, 205, 196, 0.3);
            color: #4ECDC4;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #4ECDC4 50%, #FF9A4D 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInUp 1s ease-out;
        }

        .hero .subtitle {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 32px rgba(78, 205, 196, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 50px rgba(78, 205, 196, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(78, 205, 196, 0.5);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: rgba(78, 205, 196, 0.2);
            border-color: #4ECDC4;
            transform: translateY(-3px);
        }

        /* Floating Animation */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 8rem 0;
            position: relative;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1a1a2e, #4ECDC4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-content h3 {
            color: #4ECDC4;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            margin-top: 2.5rem;
        }

        .about-content h3:first-child {
            margin-top: 0;
        }

        .about-content p {
            color: #475569;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-visual {
            background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
            border-radius: 25px;
            height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(78, 205, 196, 0.4);
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .about-visual-content {
            position: relative;
            z-index: 2;
        }

        .about-visual h4 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .about-visual p {
            opacity: 0.9;
            font-size: 1.2rem;
        }

        /* Programs Section */
        .programs {
            background: #ffffff;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
        }

        .program-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(78, 205, 196, 0.1);
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4ECDC4, #FF9A4D);
        }

        .program-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 80px rgba(78, 205, 196, 0.25);
        }

        .program-card .icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(78, 205, 196, 0.3));
        }

        .program-card h3 {
            color: #1a1a2e;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .program-card p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            display: block;
            background: linear-gradient(135deg, #ffffff, #FF9A4D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 600;
        }

        /* Events Section */
        .events {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .events-grid {
            display: grid;
            gap: 3rem;
        }

        .event-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            border-left: 6px solid #4ECDC4;
            transition: all 0.4s ease;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(78, 205, 196, 0.1), transparent);
            border-radius: 50%;
        }

        .event-card:hover {
            transform: translateX(15px);
            box-shadow: 0 25px 70px rgba(78, 205, 196, 0.15);
        }

        .event-date {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
        }

        .event-card h3 {
            color: #1a1a2e;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .event-card p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Team Section */
        .team {
            background: #ffffff;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .team-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(78, 205, 196, 0.1);
        }

        .team-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 80px rgba(78, 205, 196, 0.2);
        }

        .team-photo {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .team-photo.placeholder::before {
            content: '📷';
            font-size: 4rem;
            opacity: 0.5;
            color: #64748b;
        }

        .team-photo.placeholder::after {
            content: 'Photo Coming Soon';
            position: absolute;
            bottom: 20px;
            color: #64748b;
            font-size: 1rem;
            font-weight: 600;
        }

        .team-info {
            padding: 2.5rem;
            text-align: center;
            position: relative;
        }

        .team-specialty {
            position: absolute;
            top: -15px;
            right: 25px;
            background: linear-gradient(135deg, #FF9A4D, #4ECDC4);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(255, 154, 77, 0.4);
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #4ECDC4;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-bio {
            color: #64748b;
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(78, 205, 196, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.3rem;
        }

        .social-link:hover {
            background: #4ECDC4;
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        /* Mentorship Section */
        .mentorship {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .mentorship-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .mentorship-features {
            list-style: none;
            padding: 0;
        }

        .mentorship-features li {
            margin: 1.5rem 0;
            padding-left: 3rem;
            position: relative;
            font-size: 1.1rem;
            color: #475569;
        }

        .mentorship-features li::before {
            content: '✨';
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }

        .signup-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            padding: 3.5rem;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(78, 205, 196, 0.15);
            border: 2px solid rgba(78, 205, 196, 0.2);
            text-align: center;
        }

        /* Partnership & Contact Sections */
        .partnership {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
        }

        .contact {
            background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.8rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-card .icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .contact-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #0a0a0f;
            color: #64748b;
            text-align: center;
            padding: 3rem 0;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 3rem;
                transition: left 0.3s ease;
                border-top: 1px solid rgba(78, 205, 196, 0.2);
            }

            .nav-links.active {
                left: 0;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .mentorship-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }
   