
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ===== HERO SECTION (ENHANCED WITH INTERACTIVE EFFECTS) ===== */
        .hero-section {
            background: linear-gradient(135deg, #1a7a5a 0%, #168a63 50%, #14a085 100%);
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 80px;
            min-height: 600px;
            display: flex;
            align-items: center;
            --mouse-x: 50%;
            --mouse-y: 50%;
            transition: filter 0.4s ease;
        }

        /* Interactive Light Effect */
        .hero-section::before {
            content: '';
            position: absolute;
            top: var(--mouse-y);
            left: var(--mouse-x);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(52, 211, 153, 0.6) 0%, rgba(52, 211, 153, 0.3) 30%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            filter: blur(60px);
            pointer-events: none;
            z-index: 1;
            transition: all 0.2s ease-out;
            opacity: 0;
        }

        .hero-section.mouse-active::before {
            opacity: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(34, 197, 94, 0.15) 50%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite reverse;
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }

        /* Primary Animated Orbs */
        .hero-orb-1 {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: 5%;
            filter: blur(50px);
            animation: orbFloat1 18s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        .hero-orb-2 {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: 50%;
            transform: translateX(-50%);
            filter: blur(50px);
            animation: orbFloat2 22s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        .hero-orb-3 {
            position: absolute;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            top: 10%;
            left: -80px;
            filter: blur(50px);
            animation: orbFloat3 20s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        /* Grid Pattern Overlay */
        .hero-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(52, 211, 153, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(52, 211, 153, 0.08) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridShift 30s linear infinite;
            z-index: 2;
            pointer-events: none;
            opacity: 0.5;
        }

        /* Animated Particles */
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(52, 211, 153, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
            animation: particleFloat linear infinite;
            transition: transform 0.3s ease-out;
        }

        .particle:nth-child(1) { 
            left: 10%; 
            top: 20%; 
            animation-duration: 20s; 
            animation-delay: 0s;
        }
        .particle:nth-child(2) { 
            left: 20%; 
            top: 60%; 
            animation-duration: 25s; 
            animation-delay: 2s;
        }
        .particle:nth-child(3) { 
            left: 60%; 
            top: 10%; 
            animation-duration: 30s; 
            animation-delay: 4s;
        }
        .particle:nth-child(4) { 
            left: 80%; 
            top: 70%; 
            animation-duration: 28s; 
            animation-delay: 1s;
        }
        .particle:nth-child(5) { 
            left: 40%; 
            top: 80%; 
            animation-duration: 22s; 
            animation-delay: 3s;
        }
        .particle:nth-child(6) { 
            left: 90%; 
            top: 30%; 
            animation-duration: 26s; 
            animation-delay: 5s;
        }

        /* Keyframe Animations */
        @keyframes orbFloat1 {
            0% { 
                transform: translate(0, 0) scale(1);
            }
            25% { 
                transform: translate(50px, -40px) scale(1.1);
            }
            50% { 
                transform: translate(80px, 20px) scale(0.95);
            }
            75% { 
                transform: translate(30px, 50px) scale(1.05);
            }
            100% { 
                transform: translate(0, 0) scale(1);
            }
        }

        @keyframes orbFloat2 {
            0% { 
                transform: translateX(-50%) translateY(0) scale(1);
            }
            33% { 
                transform: translateX(-30%) translateY(-60px) scale(1.08);
            }
            66% { 
                transform: translateX(-70%) translateY(30px) scale(0.98);
            }
            100% { 
                transform: translateX(-50%) translateY(0) scale(1);
            }
        }

        @keyframes orbFloat3 {
            0% { 
                transform: translateY(0) translateX(0) scale(1);
            }
            25% { 
                transform: translateY(-30px) translateX(40px) scale(1.1);
            }
            50% { 
                transform: translateY(-50px) translateX(60px) scale(0.95);
            }
            75% { 
                transform: translateY(-20px) translateX(20px) scale(1.05);
            }
            100% { 
                transform: translateY(0) translateX(0) scale(1);
            }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1);
            }
            50% { 
                transform: translateY(40px) scale(1.05);
            }
        }

        @keyframes gridShift {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(100px);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        @keyframes slideDown {
            from { 
                opacity: 0; 
                transform: translateY(-30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(52, 211, 153, 0.5), 0 8px 24px rgba(0, 0, 0, 0.2);
            }
            50% { 
                box-shadow: 0 0 40px rgba(52, 211, 153, 0.8), 0 8px 32px rgba(0, 0, 0, 0.3);
            }
        }

        /* Content Layers */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(2.5rem, 10vw, 4.5rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -2px;
            margin-bottom: 1.5rem;
            animation: slideDown 0.8s ease-out;
            background: linear-gradient(135deg, #ffffff 0%, #d0f0e8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            filter: drop-shadow(0 4px 12px rgba(20, 160, 133, 0.3));
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideUp 0.8s ease-out 0.2s backwards;
            line-height: 1.8;
            color: #e0f7f4;
        }

        .section-subtitle {
            font-size: 0.95rem;
            font-weight: 600;
            color: #34d399;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: slideDown 0.8s ease-out;
        }

        .badge-hero {
            display: inline-block;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideUp 0.8s ease-out 0.4s backwards, pulse-glow 3s ease-in-out infinite;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .badge-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .badge-hero:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 32px rgba(52, 211, 153, 0.4), 0 0 40px rgba(52, 211, 153, 0.3);
        }

        .badge-hero:hover::before {
            left: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 80px;
                padding-bottom: 60px;
                min-height: auto;
            }
            
            .hero-title {
                margin-bottom: 1rem;
            }
            
            .badge-hero {
                font-size: 0.85rem;
                padding: 10px 20px;
            }
            
            .hero-orb-1, .hero-orb-2, .hero-orb-3 {
                opacity: 0.7;
            }
        }
   