 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #8b5cf6;
            --accent: #06b6d4;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --dark: #0a0a0a;
            --dark-light: #1a1a1a;
            --dark-lighter: #2a2a2a;
            --text-light: #64748b;
            --border: #333333;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        [data-theme="light"] {
            --dark: #ffffff;
            --dark-light: #f8fafc;
            --dark-lighter: #e2e8f0;
            --text-light: #475569;
            --border: #e2e8f0;
            --glass: rgba(0, 0, 0, 0.05);
            --glass-border: rgba(0, 0, 0, 0.1);
        }
        
        body {
            background: var(--dark);
            color: white;
            overflow-x: hidden;
            cursor: none;
            transition: all 0.3s ease;
        }
        
        [data-theme="light"] body {
            color: #1e293b;
        }
        
        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }
        
        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
        }
        
        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 30px;
            background: var(--dark-light);
            border: 2px solid var(--border);
            border-radius: 25px;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            padding: 2px;
            transition: all 0.3s ease;
        }
        
        .theme-toggle::before {
            content: '🌙';
            position: absolute;
            left: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .theme-toggle::after {
            content: '☀️';
            position: absolute;
            right: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .theme-toggle-ball {
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 0 10px var(--primary);
        }
        
        [data-theme="light"] .theme-toggle-ball {
            transform: translateX(28px);
        }
        
        /* Background Effects */
        .bg-grid {
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
        }
        
        @keyframes grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        
        /* Interactive Code Background */
        .code-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            opacity: 0.1;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            line-height: 1.5;
        }
        
        .code-line {
            position: absolute;
            white-space: nowrap;
            color: var(--primary);
            animation: code-scroll 15s linear infinite;
        }
        
        @keyframes code-scroll {
            0% { transform: translateX(100vw); }
            100% { transform: translateX(-100%); }
        }
        
        .error-popup {
            position: absolute;
            background: #ef4444;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 10px;
            font-family: 'JetBrains Mono', monospace;
            animation: error-bounce 3s ease-in-out infinite;
            z-index: 1;
        }
        
        @keyframes error-bounce {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
            50% { transform: translateY(-10px) scale(1.05); opacity: 1; }
        }
        
        .loading-bar {
            position: absolute;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            animation: loading-progress 4s ease-in-out infinite;
        }
        
        @keyframes loading-progress {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 0%; }
        }
        
        /* Header Animation */
        .header-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 2rem;
        }
        
        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            position: relative;
            overflow: hidden;
            animation: profile-glow 3s ease-in-out infinite;
        }
        
        @keyframes profile-glow {
            0%, 100% { 
                box-shadow: 0 0 30px var(--primary);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 50px var(--primary), 0 0 80px var(--secondary);
                transform: scale(1.05);
            }
        }
        
        .profile-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 2s linear infinite;
        }
        
        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .name-animation {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-text 3s ease infinite;
            position: relative;
        }
        
        @keyframes gradient-text {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .name-animation::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            animation: underline-expand 2s ease-in-out infinite;
        }
        
        @keyframes underline-expand {
            0%, 100% { transform: scaleX(0.3); }
            50% { transform: scaleX(1); }
        }
        
        /* Floating Particles */
        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }
        
        /* Glass Morphism */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .glass::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }
        
        .glass:hover::before {
            left: 100%;
        }
        
        /* Neon Effects */
        .neon-text {
            text-shadow: 
                0 0 5px var(--primary),
                0 0 10px var(--primary),
                0 0 15px var(--primary),
                0 0 20px var(--primary);
            animation: neon-flicker 2s ease-in-out infinite alternate;
        }
        
        @keyframes neon-flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .neon-border {
            border: 2px solid var(--primary);
            box-shadow: 
                0 0 10px var(--primary),
                inset 0 0 10px var(--primary);
            animation: neon-pulse 2s ease-in-out infinite;
        }
        
        @keyframes neon-pulse {
            0%, 100% { box-shadow: 0 0 10px var(--primary), inset 0 0 10px var(--primary); }
            50% { box-shadow: 0 0 20px var(--primary), inset 0 0 20px var(--primary); }
        }
        
        /* Holographic Effects */
        .holographic {
            background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
            background-size: 400% 400%;
            animation: holographic 4s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        @keyframes holographic {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* 3D Cards */
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }
        
        .card-3d:hover {
            transform: rotateY(10deg) rotateX(10deg) translateZ(20px);
        }
        
        /* Cyber Button */
        .cyber-btn {
            position: relative;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            padding: 15px 30px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
        }
        
        .cyber-btn::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.5s;
        }
        
        .cyber-btn:hover::before {
            left: 100%;
        }
        
        .cyber-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }
        
        /* Skill Orb */
        .skill-orb {
            width: 400px;
            height: 400px;
            position: relative;
            margin: 0 auto;
        }
        
        .orb-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 0 30px var(--primary);
            animation: orb-pulse 2s ease-in-out infinite;
        }
        
        @keyframes orb-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }
        
        .skill-node {
            position: absolute;
            width: 70px;
            height: 70px;
            background: var(--dark-light);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            animation: orbit 20s linear infinite;
        }
        
        .skill-node:hover {
            transform: scale(1.3);
            box-shadow: 0 0 20px var(--primary);
            z-index: 10;
        }
        
        @keyframes orbit {
            from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
            to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
        }
        
        /* Project Cards */
        .project-card {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover::before {
            opacity: 1;
        }
        
        .project-card:hover {
            transform: translateY(-20px) rotateX(5deg);
            border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
            opacity: 0;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            backdrop-filter: blur(10px);
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.5s ease;
            overflow: hidden;
        }
        
        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--dark-light), rgba(99, 102, 241, 0.1));
        }
        
        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 8px 24px;
            border-radius: 0 0 10px 10px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
        }
        
        /* Form Styles */
        .cyber-form {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-form::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
            background-size: 400% 400%;
            animation: gradient-border 4s ease infinite;
            border-radius: 20px;
            z-index: -1;
        }
        
        @keyframes gradient-border {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .cyber-input {
            width: 100%;
            padding: 15px 20px;
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        [data-theme="light"] .cyber-input {
            color: #1e293b;
        }
        
        .cyber-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
            transform: translateY(-2px);
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.5s ease;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }
        
        .testimonial-card:hover::before {
            transform: translateX(100%);
        }
        
        .testimonial-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .skill-orb {
                width: 300px;
                height: 300px;
            }
            
            @keyframes orbit {
                from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
                to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
            }
            
            .skill-node {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .name-animation {
                font-size: 2.5rem;
            }
            
            .profile-image {
                width: 100px;
                height: 100px;
                font-size: 50px;
            }
        }
        
        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid var(--border);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--dark-light);
            z-index: 1000;
        }
        
        .scroll-progress {
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            width: 0%;
            transition: width 0.1s ease;
        }
        
        /* Stats Counter */
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }
        
        .fab:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }