:root {
            --bg-dark: #04060e;
            --bg-card: rgba(13, 17, 34, 0.7);
            --primary-glow: #00f2fe;
            --secondary-glow: #4facfe;
            --accent-purple: #7f00ff;
            --cyber-pink: #ff007f;
            --neon-gold: #ffd700;
            --text-high-contrast: #f1f5f9;
            --text-muted-bright: #cbd5e1;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(0, 242, 254, 0.2);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-glow);
        }

        body {
            background-color: var(--bg-dark);
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .nav-link {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.5px;
        }

        /* Tech Magnet Cursor (Disabled on Mobile) */
        #custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-glow);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
            mix-blend-mode: difference;
        }
        
        .cursor-hover #custom-cursor {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 242, 254, 0.1);
            border-color: var(--primary-glow);
        }

        /* Navbar Styling */
        .navbar {
            background: rgba(4, 6, 14, 0.85) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
            padding: 16px 0;
        }
        
        .animated-brand-title {
            display: inline-block;
            background: linear-gradient(90deg, #00f2fe, #7f00ff, #ff007f, #00f2fe);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 6s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Hero Section with WebGL background */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        #webgl-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        /* Hero High-Contrast Subtext Styling */
        .hero-subtext {
            color: var(--text-high-contrast);
            font-size: 1.25rem;
            line-height: 1.7;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        }

        /* Glowing Offer Badge */
        .promo-badge {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.25), rgba(127, 0, 255, 0.25));
            border: 1px solid rgba(255, 0, 127, 0.6);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
            border-radius: 50px;
            padding: 8px 22px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            animation: pulseGlow 2s infinite alternate;
        }

        .promo-badge-text {
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .promo-price {
            color: var(--neon-gold);
            font-weight: 800;
            font-size: 1.1rem;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 15px rgba(255, 0, 127, 0.3); border-color: rgba(255, 0, 127, 0.6); }
            100% { box-shadow: 0 0 25px rgba(0, 242, 254, 0.7); border-color: rgba(0, 242, 254, 0.9); }
        }

        /* Buttons Styling */
        .btn-tech-primary {
            background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
            color: #000;
            font-weight: 700;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-tech-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 35px rgba(0, 242, 254, 0.7);
            color: #000;
        }

        .btn-tech-call {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            font-weight: 700;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-tech-call:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
            color: #fff;
        }

        .btn-tech-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            padding: 14px 32px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-tech-outline:hover {
            border-color: var(--primary-glow);
            color: var(--primary-glow);
            background: rgba(0, 242, 254, 0.1);
            transform: translateY(-3px);
        }

        /* Tech Cards */
        .tech-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            z-index: 5;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 20px;
            padding: 1.5px;
            background: linear-gradient(135deg, rgba(0,242,254,0.15), rgba(127,0,255,0.08));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .tech-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 0 20px 40px rgba(0, 242, 254, 0.1);
        }

        .tech-card:hover::before {
            background: linear-gradient(135deg, var(--primary-glow), var(--cyber-pink));
        }

        .icon-box-advanced {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(127, 0, 255, 0.15));
            color: var(--primary-glow);
            font-size: 1.8rem;
            margin-bottom: 25px;
            border: 1px solid rgba(0, 242, 254, 0.3);
            position: relative;
        }

        .portfolio-card {
            background: linear-gradient(180deg, rgba(13, 17, 34, 0.85) 0%, rgba(4, 6, 14, 0.95) 100%);
        }

        .portfolio-tag {
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--cyber-pink);
            font-weight: 700;
        }

        /* Form Controls */
        .form-control-cyber, .form-select-cyber {
            background: rgba(4, 6, 14, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border-radius: 10px;
            padding: 12px 16px;
            transition: all 0.3s ease;
        }

        .form-control-cyber:focus, .form-select-cyber:focus {
            background: rgba(4, 6, 14, 0.95);
            border-color: var(--primary-glow);
            box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
            color: #ffffff;
            outline: none;
        }

        .form-control-cyber::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-select-cyber option {
            background-color: var(--bg-dark);
            color: #fff;
        }