 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #39FF14 0%, #00ff88 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            line-height: 1.8;
            color: #b0b0b0;
            animation: slideUp 1s ease-out 0.2s backwards;
        }

        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            color: #39FF14;
            text-align: center;
            text-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
        }

        .timeline {
            position: relative;
            padding-left: 3rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #39FF14, rgba(57, 255, 20, 0.2));
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -3.5rem;
            top: 0;
            width: 16px;
            height: 16px;
            background: #39FF14;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
        }

        .timeline-item h3 {
            font-size: 1.5rem;
            color: #39FF14;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: #a0a0a0;
            line-height: 1.6;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .mv-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            border-color: #39FF14;
            box-shadow: 0 8px 32px rgba(57, 255, 20, 0.3);
        }

        .mv-card:hover::before {
            opacity: 1;
        }

        .mv-card h3 {
            font-size: 1.8rem;
            color: #39FF14;
            margin-bottom: 1rem;
        }

        .mv-card p {
            color: #b0b0b0;
            line-height: 1.7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .team-member {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: scale(1.05);
            border-color: #39FF14;
            box-shadow: 0 8px 32px rgba(57, 255, 20, 0.3);
        }
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

        .team-avatar {
            width: 150px;
            height: 150px;
            overflow: hidden;
            border-radius: 50%;
            background: linear-gradient(135deg, #39FF14, #00ff88);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 700;
            color: #0a0a0a;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }

        .team-member h4 {
            font-size: 1.3rem;
            color: #39FF14;
            margin-bottom: 0.5rem;
        }

        .team-member .title {
            color: #808080;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .team-member p {
            color: #a0a0a0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #39FF14;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
        }

        .stat-label {
            color: #808080;
            font-size: 1rem;
        }

        .cta-section {
            text-align: center;
            padding: 6rem 2rem;
            background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.05));
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #e0e0e0;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 3rem;
            background: #39FF14;
            color: #0a0a0a;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
            cursor: pointer;
            border: none;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.8);
        }

        .btn-secondary {
            background: transparent;
            color: #39FF14;
            border: 2px solid #39FF14;
        }

        .btn-secondary:hover {
            background: #39FF14;
            color: #0a0a0a;
        }

        @media (max-width: 768px) {
            .timeline {
                padding-left: 2rem;
            }
            
            .timeline::before {
                left: 0;
            }
            
            .timeline-item::before {
                left: -2.5rem;
            }
        }