 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');
        
        * {
            scroll-behavior: smooth;
        }
        
        body {
            background: #ffffff;
            color: #1e293b;
        }
        
        /* Animated gradient text */
        .gradient-text {
            background: linear-gradient(135deg, 
                #6366f1 0%, 
                #06b6d4 33%, 
                #f97316 66%, 
                #10b981 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 300%;
            animation: gradientFlow 8s ease infinite;
        }
        
        /* Colorful cards */
        .colorful-card {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .colorful-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(99, 102, 241, 0.1), 
                transparent);
            transition: left 0.7s ease;
        }
        
        .colorful-card:hover::before {
            left: 100%;
        }
        
        .colorful-card:hover {
            transform: translateY(-8px);
            border-color: #6366f1;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }
        
        /* Section backgrounds with gradient */
        .gradient-section {
            background: linear-gradient(135deg, 
                #f8fafc 0%, 
                #f1f5f9 50%, 
                #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }
        
        .gradient-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                #6366f1, 
                #06b6d4, 
                #f97316, 
                transparent);
        }
        
        /* Colorful buttons */
        .colorful-btn {
            background: linear-gradient(135deg, 
                #6366f1 0%, 
                #06b6d4 50%, 
                #f97316 100%);
            background-size: 200% 200%;
            color: white;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .colorful-btn::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.7s ease;
        }
        
        .colorful-btn:hover {
            background-position: 100% 100%;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }
        
        .colorful-btn:hover::before {
            left: 100%;
        }
        
        /* Outline button with gradient border */
        .outline-gradient-btn {
            background: transparent;
            border: 2px solid transparent;
            background-image: linear-gradient(white, white), 
                              linear-gradient(135deg, #6366f1, #06b6d4, #f97316);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            color: #6366f1;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .outline-gradient-btn:hover {
            background-image: linear-gradient(rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.05)), 
                              linear-gradient(135deg, #6366f1, #06b6d4, #f97316);
            transform: translateY(-3px);
        }
        
        /* Terminal styling */
        .terminal {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .terminal-header {
            background: #000000; /*linear-gradient(90deg, 
                #f8fafc 0%, 
                #f1f5f9 100%);*/
            border-bottom: 1px solid #e2e8f0;
            padding: 12px 20px;
        }
        
        .terminal-body {
            background: #000000; /*#ffffff;*/
        }
        
        /* Floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.1;
            z-index: -1;
        }
        
        .floating-element.purple {
            background: linear-gradient(135deg, #6366f1, #818cf8);
        }
        
        .floating-element.cyan {
            background: linear-gradient(135deg, #06b6d4, #22d3ee);
        }
        
        .floating-element.orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }
        
        /* Colorful stats */
        .colorful-stat {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.08), 
                rgba(6, 182, 212, 0.08), 
                rgba(249, 115, 22, 0.08));
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }
        
        .colorful-stat:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
        }
        
        /* Particle container */
        .particle-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #6366f1, #06b6d4);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #818cf8, #22d3ee);
        }
        
        /* Blinking cursor */
        .blink {
            animation: blink 1s step-end infinite;
        }
        
        @keyframes blink {
            from, to { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Colorful tags */
        .colorful-tag {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.1), 
                rgba(6, 182, 212, 0.1));
            color: #6366f1;
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* Industry cards */
        .industry-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .industry-card:hover {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
        }
        
        .industry-icon {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.1), 
                rgba(6, 182, 212, 0.1));
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            color: #6366f1;
            transition: all 0.3s ease;
        }
        
        .industry-card:hover .industry-icon {
            background: linear-gradient(135deg, #6366f1, #06b6d4);
            color: white;
            transform: scale(1.1);
        }
        
        /* Colorful badge */
        .colorful-badge {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.1), 
                rgba(6, 182, 212, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: #6366f1;
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        /* Floating tech bubbles */
        .tech-bubble {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }