
        @import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@200;300;400;500;600;700;800;900&family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
        
        :root {
            /* Core colors - enhanced matte black palette */
            --primary-dark: #0A0A0A;
            --primary: #121212;
            --secondary: #8A00FF;
            --accent-primary: #00FFC2;
            --accent-secondary: #00EAFF;
            --accent-tertiary: #FF2CC4;
            
            /* Text colors - improved contrast */
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-tertiary: #B0B0B0;
            
            /* UI colors - more depth */
            --card-bg: rgba(18, 18, 18, 0.85);
            --card-border: rgba(138, 0, 255, 0.4);
            --card-highlight: rgba(0, 255, 194, 0.2);
            
            /* Gradients - more vibrant and captivating */
            --gradient-primary: linear-gradient(120deg, #8A00FF 0%, #00FFC2 100%);
            --gradient-secondary: linear-gradient(120deg, #00EAFF 0%, #FF2CC4 100%);
            --gradient-tertiary: linear-gradient(120deg, #00FFC2 0%, #00EAFF 100%);
            --gradient-accent: linear-gradient(120deg, #FF2CC4 0%, #8A00FF 100%);
            --gradient-card: linear-gradient(140deg, rgba(138, 0, 255, 0.2) 0%, rgba(0, 255, 194, 0.08) 100%);
            --gradient-glow: radial-gradient(circle, rgba(0, 255, 194, 0.5) 0%, rgba(138, 0, 255, 0.15) 70%);
            
            /* Enhanced glow effects */
            --neon-shadow-primary: 0 0 30px rgba(0, 255, 194, 0.7);
            --neon-shadow-secondary: 0 0 35px rgba(138, 0, 255, 0.6);
            --box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            
            /* New glass effects */
            --glass-bg: rgba(18, 18, 18, 0.7);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.05);
        }
        
        /* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}
    


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            src: url(../Font/SpaceGrotesk-Regular.ttf);
            background-color: var(--primary-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 0% 0%, rgba(138, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, rgba(0, 255, 194, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(0, 234, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 44, 196, 0.08) 0%, transparent 40%);
            background-attachment: fixed;
            background-size: 100% 100%;
            position: relative;
        }
        
        /* Add subtle animated noise overlay for texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            opacity: 0.02;
            pointer-events: none;
            z-index: 1;
        }
        /* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}
        
        .wrapper{
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .content{
            max-width: 1440px;
            width: 90%;
            padding: 20px;
            
        }
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background-color: var(--primary-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }
        
        /* Visual Effects Layers */
        .visual-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
        }
        
        .noise {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            mix-blend-mode: overlay;
        }
        
        .grain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grainFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grainFilter)'/%3E%3C/svg%3E");
            opacity: 0.04;
            mix-blend-mode: overlay;
        }
        
        .data-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            opacity: 0.3;
        }
        
        .data-particle {
            position: absolute;
            background: var(--accent-primary);
            opacity: 0;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: dataFlow 8s linear infinite;
        }
        
        @keyframes dataFlow {
            0% {
                opacity: 0;
                width: 1px;
                height: 1px;
            }
            10% {
                opacity: 0.8;
                width: 3px;
                height: 3px;
            }
            90% {
                opacity: 0.8;
                width: 3px;
                height: 3px;
            }
            100% {
                opacity: 0;
                width: 1px;
                height: 1px;
            }
        }
        
        /* Grid Background */
        .grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(to right, rgba(138, 0, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(138, 0, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to right, rgba(0, 255, 194, 0.015) 1px, transparent 10px),
                linear-gradient(to bottom, rgba(0, 255, 194, 0.015) 1px, transparent 10px);
            background-size: 40px 40px, 40px 40px, 10px 10px, 10px 10px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.8;
            animation: grid-pulse 15s infinite alternate;
        }
        
        @keyframes grid-pulse {
            0% { opacity: 0.7; }
            50% { opacity: 0.8; }
            100% { opacity: 0.7; }
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        .code-text {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
        }
        
        /* Layout Containers */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 5;
        }
        
        /* .section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        } */
        
        /* Text Highlight Effects */
        .text-highlight {
            position: relative;
            display: inline-block;
            font-size: 62px;
        }
        
        .text-highlight::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: var(--accent-primary);
            opacity: 0.2;
            z-index: -1;
            transform: skewX(-15deg) translateY(5px);
        }
        
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline;
        }
        
        .gradient-text-alt {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline;
        }
        
        .gradient-text-tech {
            background: var(--gradient-tertiary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent; 
            display: inline;
        }
        
        .clip-path-text {
            display: inline-block;
            position: relative;
            overflow: hidden;
            padding: 0 4px;
        }
        
        .clip-path-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            z-index: -1;
            transform: skewX(-10deg);
        }
        
        /* Button Styles */
        .btn {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            z-index: 1;
            min-width: 200px;
            backdrop-filter: blur(5px);
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border: none;
            box-shadow: 0 8px 25px rgba(138, 0, 255, 0.5), 0 0 15px rgba(0, 255, 194, 0.3);
            position: relative;
            font-size: 14px;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 50px;
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: 2;
        }
        
        .btn-primary:hover::before {
            opacity: 1;
        }
        
        .btn-primary:hover::after {
            left: 100%;
        }
        
        .btn-secondary {
            background: rgba(0, 255, 194, 0.05);
            color: var(--text-primary);
            border: 1px solid var(--accent-primary);
            overflow: hidden;
            backdrop-filter: blur(10px);
            font-size: 14px;
        }
        
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-primary);
            opacity: 0.15;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
            border-radius: 50px;
        }
        
        .btn-secondary:hover::before {
            transform: translateX(0);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(138, 0, 255, 0.6), 0 0 20px rgba(0, 255, 194, 0.4);
        }
        
        .btn-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 194, 0.3);
            border-color: var(--accent-secondary);
            color: var(--text-primary);
        }
        
        .btn i {
            margin-left: 12px;
            transition: transform 0.3s ease;
            font-size: 14px;
        }
        
        .btn:hover i {
            transform: translateX(8px);
        }
        
        /* Enhanced Glow Effects */
        .glow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .glow-effect {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.7;
            animation: pulse-glow 8s infinite alternate;
        }
        
        @keyframes pulse-glow {
            0% { transform: scale(0.95); opacity: 0.6; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(0.95); opacity: 0.6; }
        }
        
        .glow-primary {
            background: radial-gradient(circle, rgba(138, 0, 255, 0.5) 0%, rgba(10, 10, 10, 0) 70%);
            animation-delay: 0s;
        }
        
        .glow-secondary {
            background: radial-gradient(circle, rgba(0, 255, 194, 0.4) 0%, rgba(10, 10, 10, 0) 70%);
            animation-delay: 2s;
        }
        
        .glow-tertiary {
            background: radial-gradient(circle, rgba(0, 234, 255, 0.4) 0%, rgba(10, 10, 10, 0) 70%);
            animation-delay: 4s;
        }
        
        .glow-quaternary {
            background: radial-gradient(circle, rgba(255, 44, 196, 0.3) 0%, rgba(10, 10, 10, 0) 70%);
            animation-delay: 6s;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .header-scrolled {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(138, 0, 255, 0.15);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .element::-webkit-scrollbar {
            display: none;                /* Chrome, Safari, Opera */
          }
          .scroll-box::-webkit-scrollbar {
            display: none;
          }
        
        /* .logo {
            position: relative;
            display: flex;
            align-items: center;
            text-decoration: none;
        } */
        
        .logo-text {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-weight: 800;
            font-size: 26px;
            background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-left: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }
        
        .logo-text::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
            opacity: 0.6;
        }
        
        .logo-mark {
            position: relative;
            width: 42px;
            height: 42px;
        }
        
        /* Futuristic crystal logo animation */
        @keyframes crystalPulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }
        
        @keyframes crystalRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes crystalGlow {
            0% { box-shadow: 0 0 10px rgba(0, 255, 170, 0.5); }
            50% { box-shadow: 0 0 25px rgba(0, 255, 170, 0.8), 0 0 40px rgba(77, 0, 255, 0.4); }
            100% { box-shadow: 0 0 10px rgba(0, 255, 170, 0.5); }
        }
        
        .crystal-logo {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: crystalRotate 12s linear infinite;
        }
        
        .crystal-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border: 2px solid rgba(0, 255, 170, 0.7);
            background: rgba(77, 0, 255, 0.2);
            transform-origin: center;
            animation: crystalPulse 3s infinite alternate;
        }
        
        .face-1 {
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            animation-delay: 0s;
        }
        
        .face-2 {
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            transform: rotateY(60deg);
            animation-delay: 0.5s;
        }
        
        .face-3 {
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            transform: rotateY(120deg);
            animation-delay: 1s;
        }
        
        .crystal-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: var(--accent-primary);
            border-radius: 2px;
            animation: crystalGlow 4s infinite alternate;
        }
        
        .crystal-ray {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 3px;
            height: 3px;
            background: var(--accent-primary);
            border-radius: 50%;
            animation: rayMove 6s linear infinite;
        }
        
        @keyframes rayMove {
            0% { transform: translate(-50%, -50%) rotate(0deg) translateX(10px); opacity: 1; }
            100% { transform: translate(-50%, -50%) rotate(360deg) translateX(10px); opacity: 0.5; }
        }
        
        .ray-1 { animation-delay: 0s; }
        .ray-2 { animation-delay: 2s; }
        .ray-3 { animation-delay: 4s; }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-link {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 8px 2px;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        .nav-link:hover {
            color: var(--accent-primary);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border-radius: 4px;
            padding: 10px 20px;
            box-shadow: 0 5px 15px rgba(77, 0, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .nav-cta::after {
            display: none;
        }
        
        .nav-cta:hover {
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(77, 0, 255, 0.5);
        }
        
        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            /* display: flex; */
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 140px 0 80px;
        }
        
        .hero-split {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 5;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 40px;
            position: relative;
            z-index: 2;
            right: 4rem;

        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-dark);
            background: var(--gradient-primary);
            padding: 8px 16px;
            border-radius: 30px;
            margin-bottom: 32px;
            box-shadow: var(--neon-shadow-primary);
            position: relative;
            overflow: hidden;
        }
        
        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }
        
        .hero h1 {
            font-size: 62px;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .hero-description {
            font-size: 20px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .hero-visual {
            flex: 1;
            position: relative;
            height: 700px;
            left: 4rem;

        }
        
        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            filter: saturate(1.4) brightness(1.2) contrast(1.1);
            transform: scale(0.9);
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }
        
        .hero-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            filter: blur(180px);
            opacity: 0.5;
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: screen;
        }
        
        .hero-glow-primary {
            bottom: -300px;
            right: -200px;
            background: radial-gradient(circle, rgba(138, 0, 255, 0.8) 0%, rgba(10, 10, 10, 0) 70%);
            animation: glow-pulse 12s infinite alternate;
        }
        
        .hero-glow-secondary {
            top: -300px;
            left: -200px;
            background: radial-gradient(circle, rgba(0, 255, 194, 0.6) 0%, rgba(10, 10, 10, 0) 70%);
            animation: glow-pulse 15s infinite alternate reverse;
        }
        
        @keyframes glow-pulse {
            0% { transform: scale(0.8); opacity: 0.3; }
            50% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(0.8); opacity: 0.3; }
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-security-badge {
            position: absolute;
            bottom: 10px;
            right: 50%;
            width: 320px;
            background: rgba(12, 0, 66, 0.8);
            border: 2px solid var(--accent-primary);
            border-radius: 8px;
            padding: 16px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 170, 0.3);
            z-index: 3;
            transform: translateZ(0);
            transition: all 0.3s ease;
        }
        
        .hero-security-badge:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 255, 170, 0.4);
        }
        
        .badge-icon {
            font-size: 32px;
            color: var(--accent-primary);
            margin-bottom: 16px;
        }
        
        .badge-title {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0;
        }
        
        .badge-text {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-secondary);
        }
        
        .hero-features {
            position: relative;
            display: flex;
            gap: 24px;
        }
        
        .hero-feature {
            background: rgba(12, 0, 66, 0.5);
            border: 1px solid rgba(77, 0, 255, 0.3);
            border-radius: 4px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(5px);
        }
        
        .feature-icon {
            color: var(--accent-primary);
            font-size: 24px;
        }
        
        .feature-text {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 500;
        }
        
        .feature-list{
            font-size: 24px;
            text-align: center;
            margin-top: 30px;
        }

        .hero-code-editor {
            position: absolute;
            top: 40px;
            right: 0;
            width: 560px;
            height: 400px;
            background: rgba(12, 0, 66, 0.8);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            overflow: hidden;
            transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
            box-shadow: var(--box-shadow);
            z-index: 2;
        }
        
        .editor-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: rgba(12, 0, 66, 0.9);
            border-bottom: 1px solid var(--card-border);
        }
        
        .editor-controls {
            display: flex;
            gap: 8px;
        }
        
        .editor-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .editor-header:hover .editor-dot {
            transform: scale(1.1);
        }
        
        .editor-red { background: #FF5F56; }
        .editor-yellow { background: #FFBD2E; }
        .editor-green { background: #27C93F; }
        
        .editor-tabs {
            display: flex;
            gap: 2px;
            margin-left: 20px;
        }
        
        .editor-tab {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 10px;
            color: var(--text-secondary);
            padding: 6px 16px;
            background: rgba(12, 0, 66, 0.7);
            border-radius: 4px 4px 0 0;
            cursor: pointer;
        }
        
        .editor-tab.active {
            background: rgba(77, 0, 255, 0.2);
            color: var(--text-primary);
        }
        
        .editor-actions {
            display: flex;
            gap: 12px;
        }
        
        .editor-action {
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .editor-action:hover {
            color: var(--accent-primary);
        }
        
        .editor-content {
            padding: 16px;
            height: calc(100% - 44px);
            overflow: hidden;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        
        .editor-line {
            display: flex;
            margin-bottom: 4px;
        }
        
        .line-number {
            width: 30px;
            opacity: 0.5;
            user-select: none;
            text-align: right;
            padding-right: 10px;
            color: var(--text-tertiary);
        }
        
        .line-content {
            flex: 1;
        }
        
        .editor-cursor {
            display: inline-block;
            width: 2px;
            height: 18px;
            background-color: var(--accent-primary);
            margin-left: 2px;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .token-keyword { color: #CF68E1; }
        .token-string { color: #E5C07B; }
        .token-function { color: #61AFEF; }
        .token-comment { color: #7D8799; }
        .token-method { color: #98C379; }
        .token-number { color: #D19A66; }
        .token-property { color: #E06C75; }
        .token-operator { color: #56B6C2; }
        
        .code-transformation {
            position: absolute;
            bottom: 100px;
            right: 40px;
            width: 300px;
            height: 250px;
            z-index: 3;
            perspective: 1000px;
            animation: float 8s ease-in-out infinite;
        }
        .code-transformation:nth-child(2) {
            top: 80px;
            right: 20px;
            animation-delay: 1s;
            color: var(--accent-primary);
        }
        
        .code-transformation:nth-child(3) {
            bottom: 30px;
            left: 0;
            animation-delay: 2s; 
            color: var(--accent-tertiary);
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        
        .code-panel {
            position: absolute;
            background: rgba(12, 0, 66, 0.8);
            border: 1px solid var(--card-border);
            border-radius: 6px;
            padding: 15px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 12px;
            color: var(--accent-secondary);
            white-space: nowrap;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            transform-style: preserve-3d;
        }
        
        .legacy-code {
            top: 110px;
            left: 80px;
            width: 220px;
            color: var(--text-secondary);
            transform: translateZ(0px);
            z-index: 1;
        }
        
        .modern-code {
            top: 240px;
            left: 100px;
            width: 220px;
            color: var(--accent-primary);
            transform: translateZ(20px);
            z-index: 2;
        }
        
        .transformation-arrow {
            position: absolute;
            top: 84%;
            transform: rotate(90deg);
            left: 62%;
            /* transform: rotate(20deg); */
            font-size: 24px;
            color: var(--accent-secondary);
            animation: pulse 2s infinite alternate;
            z-index: 3;
        }
        
        .code-tag {
            position: absolute;
            font-size: 10px;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 4px;
            z-index: 3;
        }
        
        .legacy-tag {
            top: -10px;
            left: 30px;
            background: rgba(255, 0, 229, 0.2);
            border: 1px solid rgba(255, 0, 229, 0.5);
            color: var(--accent-tertiary);
        }
        
        .modern-tag {
            top: 0;
            right: -30px;
            background: rgba(0, 255, 170, 0.2);
            border: 1px solid rgba(0, 255, 170, 0.5);
            color: var(--accent-primary);
        }
        
        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            z-index: 0;
        }
        
        .hero-glow-primary {
            top: -50px;
            right: -100px;
            background: radial-gradient(circle, rgba(77, 0, 255, 0.2) 0%, rgba(5, 0, 35, 0) 70%);
            border-radius: 50%;
            filter: blur(60px);
        }
        
        .hero-glow-secondary {
            bottom: -100px;
            left: -50px;
            background: radial-gradient(circle, rgba(0, 255, 170, 0.15) 0%, rgba(5, 0, 35, 0) 70%);
            border-radius: 50%;
            filter: blur(60px);
        }
        
        /* .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-particle {
            position: absolute;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            opacity: 0.3;
            animation: float-particle 15s infinite ease-in-out;
        }
        
        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(50px, -30px);
            }
            50% {
                transform: translate(100px, 20px);
            }
            75% {
                transform: translate(20px, 50px);
            }
        } */

        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-particle {
            position: absolute;
            background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            opacity: 0.3;
            animation: float-particle 15s infinite ease-in-out;
        }
        
        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(50px, -30px);
            }
            50% {
                transform: translate(100px, 20px);
            }
            75% {
                transform: translate(20px, 50px);
            }
        }
        
        /* Stats Section */
        
        .stats {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(18, 18, 18, 0.9) 50%, var(--primary-dark) 100%);
            position: relative;
            z-index: 2;
            width: 100%;
            width: 100vw;      /* Full viewport width */
            left: 50%;         /* Move the section to the center of the viewport */
            right: 50%;
            margin-left: -50vw; /* Pull it back to cover the full width */
            margin-right: -50vw;
            box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.3), 0 30px 60px rgba(0, 0, 0, 0.3);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }
        .container{
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 100px;
            
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .stat-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            transition: transform 0.5s ease;
            z-index: -1;
            transform: translate(-30%, -30%);
            pointer-events: none;
            opacity: 0;
        }
        
        .stat-item:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(138, 0, 255, 0.15);
            border-color: rgba(138, 0, 255, 0.3);
        }
        
        .stat-item:hover::before {
            opacity: 0.03;
        }
        
        .stat-item:hover::after {
            opacity: 0.1;
            transform: translate(0%, 0%);
        }
        
        .stat-number {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(120deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .stat-text {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }
        .stat-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            width: 75%;
            animation: stat-fill 2s ease forwards;
        }
        
        @keyframes stat-fill {
            from { width: 0; }
            to { width: var(--fill-width, 75%); }
        }
        /* Features Section */
        .features {
            position: relative;
            padding: 160px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(138, 0, 255, 0.15) 0%, rgba(0, 255, 194, 0.08) 100%);
            border: 1px solid rgba(138, 0, 255, 0.3);
            border-radius: 30px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 10px rgba(138, 0, 255, 0.2);
        }
        
        .section-badge::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: 0.5s;
            animation: shimmer 3s infinite 1s;
        }
        
        .section-badge i {
            margin-right: 10px;
        }
        
        .section-header h2 {
            font-size: 64px;
            margin-bottom: 24px;
            background: linear-gradient(120deg, #FFFFFF 10%, var(--accent-primary) 90%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section-header p {
            font-size: 20px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .feature-card {
            background: var(--glass-bg);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transform: skewX(-25deg);
            transition: 0.75s;
            pointer-events: none;
        }
        
        .feature-card:hover {
            cursor: pointer;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), 0 0 20px rgba(138, 0, 255, 0.2);
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .feature-card:hover::before {
            opacity: 0.07;
        }
        
        .feature-card:hover::after {
            left: 150%;
        }
        
        
        .feature-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(138, 0, 255, 0.15) 0%, rgba(0, 255, 194, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.5s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 32px;
            color: var(--accent-primary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
        }
        
        .feature-card-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid var(--accent-primary);
            border-radius: 8px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-card-icon {
            background: rgba(77, 0, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(77, 0, 255, 0.3);
        }
        
        .feature-card:hover .feature-card-icon::before {
            opacity: 0.7;
        }
        
        .feature-card-icon i {
            font-size: 32px;
            color: var(--accent-primary);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-card-icon i {
            transform: scale(1.1);
            color: var(--accent-secondary);
        }
        
        .feature-card-content {
            flex: 1;
        }
        
        .feature-card-title {
            font-size: 26px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 32px;
        }
        
        .feature-card-description {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .feature-card-benefits {
            margin-bottom: 30px;
        }
        
        .feature-benefit {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .benefit-icon {
            color: var(--accent-primary);
            font-size: 16px;
            margin-top: 4px;
        }
        
        .benefit-text {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-secondary);
        }
        
        .feature-card-cta {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: var(--accent-primary);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .feature-card-cta i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .feature-card-cta:hover {
            color: var(--accent-secondary);
        }
        
        .feature-card-cta:hover i {
            transform: translateX(5px);
        }
        
        /* product fetaures */
        .fetaures-container {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding: 4rem 1.5rem;
        }
        @media (min-width: 768px) {

            .container{
                max-width: 1440px;
                margin: 0 auto;
                padding: 0 100px;
                
            }
            .fetaures-container {
                gap: 9rem;
                padding: 3rem 3rem;
            }
        }
        .video-section {
            text-align: center;
            /* background: linear-gradient(135deg, #0d0d0d, #1a1a1a); */
            background: linear-gradient(140deg, rgba(138, 0, 255, 0.2) 0%, rgba(0, 255, 194, 0.08) 100%);
            padding: 4rem;
            border-radius: 8px;
        }
        .tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .tab {
            padding: 12px 24px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 8px;
            background: rgba(255, 75, 43, 0.2);
            transition: all 0.3s ease;
        }
        .tab:hover, .tab.active {
            background: #ff4b2b;
            color: #fff;
        }
        .video-wrapper {
            max-width: 800px;
            margin: auto;
            /* margin-top: 50px; */
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
        }
        .video-wrapper video {
            width: 100%;
            display: none;
            border-radius: 8px;
        }
        .video-wrapper video.active {
            display: block;
        }

        @media (max-width: 768px) {

            .fetaures-container{
                display: flex;
                    flex-direction: column;
                    gap: 4rem;
                    padding: 2rem 1.5rem;
            }

            .feature-list{
                font-size: 16px;
                text-align: center;
                margin-top: 30px;
            }
            
            .video-section{
                text-align: center;
                /* background: linear-gradient(135deg, #0d0d0d, #1a1a1a); */
                background: linear-gradient(140deg, rgba(138, 0, 255, 0.2) 0%, rgba(0, 255, 194, 0.08) 100%);
                padding: 1rem;
                
            }
        }


        /* Process Section */
        .process {
            position: relative;
            padding: 160px 0;
            background: linear-gradient(180deg, rgba(12, 0, 66, 0.2) 0%, var(--primary-dark) 100%);
           
            width: 100%;
            width: 100vw;      /* Full viewport width */
            left: 50%;         /* Move the section to the center of the viewport */
            right: 50%;
            margin-left: -50vw; /* Pull it back to cover the full width */
            margin-right: -50vw;
        }
        
        .process-container {
            position: relative;
        }
        .process-badge{
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background: rgba(0, 245, 196, 0.1);
            border: 1px solid rgba(0, 245, 196, 0.3);
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 16px;
        }
        .process-badge-2{
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background: rgba(0, 245, 196, 0.1);
            border: 1px solid rgba(0, 245, 196, 0.3);
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 16px;
        }
        .process-badge-4{
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background: rgba(0, 245, 196, 0.1);
            border: 1px solid rgba(0, 245, 196, 0.3);
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 16px;
        }
        .process-steps {
            position: relative;
            z-index: 2;
        }
        
        .process-timeline {
            position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary) 0%, var(--accent-primary) 100%);
    z-index: 1;
    border-radius: 2px;
    overflow: hidden;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2%;
            background: linear-gradient(to bottom, var(--accent-primary), transparent);
            animation: data-pulse 3s linear infinite;
        }
        
/* New: Timeline particles */
.timeline-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.timeline-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    animation: timeline-flow 8s infinite linear;
}

@keyframes timeline-flow {
    0% { top: -5px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes data-pulse {
    0% { top: -30%; }
    100% { top: 100%; }
}



        @keyframes data-pulse {
            0% { top: -30%; }
            100% { top: 100%; }
        }
        
        .process-steps {
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 150px;
            position: relative;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        /* .process-step:nth-child(odd) .process-content {
            padding-left: 0;
            padding-right: 80px;
            text-align: right;
        } */
        .process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syncopate', sans-serif;
    src: url(../Font/Syncopate-Regular.ttf);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    z-index: 3;
    box-shadow: 0 0 30px rgba(79, 0, 255, 0.5); 
        }
        
        /* .process-content {
            padding-left: 0;
            padding-right: 80px;
            text-align: right;
        } */
        .process-phase-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background: rgba(0, 245, 196, 0.1);
            border: 1px solid rgba(0, 245, 196, 0.3);
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 16px;
            height: 42px;

        }
        
        .process-title {
            font-size: 26px;
            margin-bottom: 24px;
            margin-top: 50px;
        }
        
        .process-description {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 30px;
        }
        
        .process-highlights {
            margin-bottom: 30px;
            /* margin-left: 34%; */
        }
        .process-highlights-1{
            margin-bottom: 30px;
            margin-left: 34%;
            text-align: left;
        }
        .process-highlights-3{
            margin-bottom: 30px;
            margin-left: 30%;
            text-align: left;
        }
        
        .process-highlight {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 16px;
        }
        
        .highlight-icon {
            color: var(--accent-primary);
            font-size: 18px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        
        .highlight-text {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-secondary);
        }
        
        .process-graphic {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .graphic-container {
            position: relative;
            width: 100%;
            height: 400px;
            max-width: 500px;
        }
        
        /* Process Step 1: Consultation Graphics */
        .security-assessment {
            position: absolute;
            top: 20px;
            left: -70px;
            width: 280px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 25px;
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
            transition: all 0.4s ease;
            z-index: 3;
        }
        
        .security-assessment:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 170, 0.2);
            border-color: var(--accent-primary);
        }
        
        .assessment-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .assessment-icon {
            width: 50px;
            height: 40px;
            background: rgba(0, 255, 170, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .assessment-icon i {
            color: var(--accent-primary);
            font-size: 20px;
        }
        
        .assessment-title {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .assessment-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .assessment-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .assessment-value {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-primary);
            font-weight: 500;
        }
        
        .infrastructure-card {
            position: absolute;
            bottom: 30px;
            right: 20px;
            width: 280px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 25px;
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .infrastructure-card:hover {
            transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(61, 230, 250, 0.2);
            border-color: var(--accent-secondary);
        }
        
        .infrastructure-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .infrastructure-icon {
            width: 40px;
            height: 40px;
            background: rgba(61, 230, 250, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .infrastructure-icon i {
            color: var(--accent-secondary);
            font-size: 20px;
        }
        
        .infrastructure-title {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        /* Process Step 2: Secure Deployment */
        .deployment-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-40%, -50%);
            width: 600px;
            height: 320px;
            perspective: 800px;
            z-index: 2;
        }
        
        .server-rack {
            position: absolute;
            width: 180px;
            height: 300px;
            top: 0;
            left: 20px;
            background: rgba(12, 0, 66, 0.9);
            border: 2px solid var(--card-border);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            padding: 15px;
            box-shadow: var(--box-shadow);
            transform: perspective(1000px) rotateY(-20deg);
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .server-rack:hover {
            transform: perspective(1000px) rotateY(-15deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(77, 0, 255, 0.3);
            border-color: var(--secondary);
        }
        
        .rack-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--card-border);
        }
        
        .rack-title {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-primary);
        }
        
        .rack-status {
            display: flex;
            gap: 5px;
        }
        
        .status-light {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: blink 2s infinite alternate;
        }
        
        .status-light:nth-child(1) {
            background: var(--accent-primary);
            animation-delay: 0s;
        }
        
        .status-light:nth-child(2) {
            background: var(--accent-secondary);
            animation-delay: 0.6s;
        }
        
        .status-light:nth-child(3) {
            background: var(--accent-tertiary);
            animation-delay: 1.2s;
        }
        
        .server-unit {
            height: 40px;
            background: rgba(5, 0, 35, 0.8);
            border-radius: 4px;
            margin-bottom: 10px;
            padding: 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .unit-label {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .unit-lights {
            display: flex;
            gap: 5px;
        }
        
        .unit-light {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }
        
        .light-green {
            background: var(--accent-primary);
            animation: blink 1.5s infinite alternate;
        }
        
        .light-blue {
            background: var(--accent-secondary);
            animation: blink 1.8s infinite alternate;
            animation-delay: 0.3s;
        }
        
        .light-red {
            background: var(--accent-tertiary);
            animation: blink 2s infinite alternate;
            animation-delay: 0.6s;
        }
        
        .deployment-stats {
            position: absolute;
            width: 220px;
            height: 210px;
            top: 50px;
            right: 190px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 20px;
            transform: perspective(1000px) rotateY(15deg);
            box-shadow: var(--box-shadow);
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .deployment-stats:hover {
            transform: perspective(1000px) rotateY(15deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(61, 230, 250, 0.2);
            border-color: var(--accent-secondary);
        }
        
        .stats-header {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-secondary);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--card-border);
        }
        
        .deployment-stat {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 5px;
        }
        
        .stat-bar {
            height: 8px;
            background: rgba(5, 0, 35, 0.5);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .stat-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            width: 75%;
        }
        
        .deployment-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .connection-line {
            position: absolute;
            height: 2px;
            background: var(--accent-primary);
            transform-origin: left;
            opacity: 0.7;
            animation: pulse-opacity 3s infinite alternate;
        }
        
        @keyframes pulse-opacity {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        
        .service-panel {
            position: absolute;
            width: 200px;
            height: 280px;
            top: 0;
            right: 10px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            transform: perspective(1000px) rotateY(-5deg);
            z-index: 5;
        }
        
        .service-panel:hover {
            transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 170, 0.2);
            border-color: var(--accent-primary);
        }
        
        .service-header {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-primary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--card-border);
            text-align: center;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(77, 0, 255, 0.1);
        }
        
        .service-name {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .service-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-primary);
            box-shadow: 0 0 10px var(--accent-primary);
            animation: blink 2s infinite alternate;
        }
        
        /* Process Step 3: AI Model Configuration */
        .model-config-container {
            position: absolute;
            top: 100px;
            right: 80px;
            width: 600px;
            height: 400px;
            z-index: 2;
        }
        
        .model-brain {
            position: absolute;
            top: 50%;
            left: 30%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            z-index: 1;
        }
        
        .brain-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .brain-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(77, 0, 255, 0.1);
            border-radius: 50%;
            filter: blur(20px);
            animation: pulse 3s infinite alternate;
        }
        
        .brain-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(77, 0, 255, 0.3);
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(77, 0, 255, 0.5);
        }
        
        .brain-node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--accent-primary);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-primary);
        }
        
        .node-connection {
            position: absolute;
            height: 2px;
            background: var(--accent-primary);
            transform-origin: left;
            animation: pulse-opacity 3s infinite alternate;
        }
        
        .model-card {
            position: absolute;
            width: 240px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 25px;
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(61, 230, 250, 0.2);
            border-color: var(--accent-primary);
        }
        
        .local-model-card {
            top: 20px;
            left: -110px;
            z-index: 5;
        }
        
        .api-model-card {
            bottom: 20px;
            right: 100px;
            z-index: 5;
        }
        
        .embedding-model-card {
            top: -80px;
            right: 180px;
            width: 50%;
            z-index: 4;
        }
        
        .model-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .model-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 255, 170, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .model-icon i {
            color: var(--accent-primary);
            font-size: 20px;
        }
        
        .model-title {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .model-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .model-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .model-value {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-primary);
            font-weight: 500;
        }
        
        /* Process Step 4: Developer Onboarding */
        .dashboard-container {
            position: absolute;
            top: 50%;
            left: 60%;
            transform: translate(-50%, -50%);
            width: 460px;
            height: 320px;
            background: rgba(12, 0, 66, 0.8);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: all 0.4s ease;
            z-index: 5;
        }
        
        .dashboard-container:hover {
            transform: translate(-50%, -50%) translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(77, 0, 255, 0.3);
            border-color: var(--accent-primary);
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(5, 0, 35, 0.7);
            border-bottom: 1px solid var(--card-border);
        }
        
        .dashboard-title {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 16px;
            color: var(--text-primary);
            font-weight: 700;
        }
        
        .dashboard-controls {
            display: flex;
            gap: 8px;
        }
        
        .dashboard-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .btn-red { background: #FF5F56; }
        .btn-yellow { background: #FFBD2E; }
        .btn-green { background: #27C93F; }
        
        .dashboard-body {
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .dashboard-card {
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 6px;
            padding: 15px;
        }
        
        .dashboard-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .card-icon {
            color: var(--accent-primary);
            font-size: 16px;
        }
        
        .metric-container {
            margin-bottom: 20px;
        }
        
        .metric-value {
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-size: 36px;
            color: var(--accent-primary);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .metric-label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .progress-bar {
            height: 8px;
            background: rgba(5, 0, 35, 0.5);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 10px;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            width: 65%;
        }
        
        .dashboard-chart {
            height: 150px;
            margin-top: 20px;
            position: relative;
        }
        
        .chart-bar {
            position: absolute;
            bottom: 0;
            width: 12px;
            background: var(--gradient-primary);
            border-radius: 4px 4px 0 0;
        }
        
        .onboarding-stats {
            position: absolute;
            bottom: 60px;
            right: -180px;
            width: 240px;
            background: rgba(12, 0, 66, 0.7);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 20px;
            box-shadow: var(--box-shadow);
            transition: all 0.3s ease;
            z-index: 16;
        }
        
        .onboarding-stats:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 170, 0.2);
            border-color: var(--accent-primary);
        }
        
        .onboarding-header {
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            color: var(--accent-primary);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--card-border);
        }
        
        /* Demo Section */
        .demo {
            position: relative;
            padding: 160px 0;
        }
        
        .demo-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .demo-content {
            margin-bottom: 40px;
        }
        
        .demo-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: linear-gradient(120deg, rgba(138, 0, 255, 0.15), rgba(0, 255, 194, 0.08));
            border: 1px solid rgba(138, 0, 255, 0.4);
            border-radius: 50px;
            font-family: 'JetBrains Mono', monospace;
            src: url(../Font/JetBrainsMono-Regular.ttf);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            margin-bottom: 24px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(138, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .demo-badge::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: 0.5s;
            animation: shimmer 3s infinite 1s;
        }
        
        .demo-badge i {
            margin-right: 10px;
        }
        
        .demo-title {
            font-size: 56px;
            margin-bottom: 24px;
        }
        
        .demo-description {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }
        
        .demo-benefits {
            margin-bottom: 40px;
        }
        
        .demo-benefit {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .benefit-icon-container {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, rgba(138, 0, 255, 0.15) 0%, rgba(0, 255, 194, 0.08) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .benefit-icon-container::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: 0.5s;
        }
        
        .demo-benefit:hover .benefit-icon-container::before {
            left: 100%;
        }
        
        .demo-benefit:hover .benefit-icon-container {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(138, 0, 255, 0.2);
        }
        
        .benefit-icon-container i {
            font-size: 22px;
            color: var(--accent-primary);
            color: var(--accent-primary);
        }
        
        .benefit-content {
            flex: 1;
        }
        
        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-primary);
        }
        
        .benefit-description {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-secondary);
        }
        
        .demo-form {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 40px;
            /* right: 10px; */
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            box-shadow: var(--box-shadow);
        }
        
        .demo-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 1;
        }
        
        .form-header {
            margin-bottom: 30px;
        }
        
        .form-title {
            font-size: 28px;
            margin-bottom: 12px;
        }
        
        .form-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
        }
        
        .form-field {
            width: 100%;
            padding: 16px;
            background: rgba(12, 0, 66, 0.5);
            border: 1px solid var(--card-border);
            border-radius: 6px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            src: url(../Font/SpaceGrotesk-Regular.ttf);
            
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-field:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(0, 255, 170, 0.2);
        }
        
        .form-field::placeholder {
            color: rgba(180, 180, 217, 0.5);
        }
        
        textarea.form-field {
            resize: vertical;
            min-height: 120px;
        }
        
        select.form-field {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300FFAA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }
        
        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient-primary);
            color: var(--primary-dark);
            border: none;
            border-radius: 6px;
            font-family: 'Syncopate', sans-serif;
            src: url(../Font/Syncopate-Regular.ttf);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(77, 0, 255, 0.4);
        }
        
        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .form-submit:hover::before {
            opacity: 1;
        }
        
        /* Footer */
        footer {
            padding: 40px 0;
            border-top: 1px solid var(--card-border);
            position: relative;
            z-index: 10;
        }
        
        .copyright {
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        /* Media Queries */
        @media (max-width: 1400px) {
            .hero h1 {
                font-size: 60px;
            }
            
            .section-header h2,
            .demo-title {
                font-size: 48px;
            }
            
            .process-title {
                font-size: 32px;
            }
            
            .feature-card-title {
                font-size: 24px;
            }
            
            .hero-code-editor {
                width: 500px;
                height: 350px;
            }
        }
        
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .section-header h2,
            .demo-title {
                font-size: 42px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-code-editor {
                width: 450px;
                height: 500px;
                top: 60px;
            }
            
            /* .process-number-container {
                width: 160px;
            }
             
            /* .process-phase-badge {
                left: 10px;
            } */
            
            /* .process-number {
                left: 80px;
            } */
            
            .process-timeline {
                left: 80px;
            }
            
            .model-config-container,
            .dashboard-container,
            .deployment-container {
                transform: scale(0.8);
                transform-origin: top right;
            }
            
            .demo-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* .process-step:nth-child(odd) .process-content {
            padding-right: 0;
            text-align: center;
        }
        .process-step:nth-child(odd) .process-content {
            padding-left: 0;
            padding-right: 80px;
            text-align: right;
        } */

        .process-step:nth-child(odd) .process-content {
            padding-left: 0;
            /* padding-right: 80px; */
            text-align: right;
        }

        @media (max-width: 992px) {
            .container{
                max-width: 1440px;
                margin: 0 auto;
                padding: 0 20px;
                
            }
            .hero-split {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                left: 0px;
                margin-bottom: 60px;
                text-align: center;
            }
            
            .hero-description {
                margin: 0 auto 40px;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-features {
                justify-content: center;
            }
            
            .hero-visual {
                width: 114%;
                left: 0px;
                height: 500px;
            }
            
            .hero-code-editor {
                position: relative;
                top: 0;
                right: 0;
                margin: 0 auto;
                width: 100%;
                max-width: 500px;
                transform: none;
            }
            
            .hero-security-badge {
                bottom: auto;
                top: 32rem;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .hero-security-badge:hover {
                transform: translateX(-50%) translateY(-10px);
            }
            
            .code-transformation {
                display: flex;
                position: relative;
                margin-top: 18rem;
                right: 40px;
            }
            
            /* .code-transformation {
                position: absolute;
                bottom: 100px;
                right: 40px;
                width: 300px;
                height: 250px;
                z-index: 3;
                perspective: 1000px;
                animation: float 8s ease-in-out infinite;
            } */
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-item {
                background: var(--glass-bg);
                border: 1px solid var(--glass-border);
                border-radius: 20px;
                padding: 40px 30px;
                text-align: center;
                transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                position: relative;
                overflow: hidden;
                backdrop-filter: blur(10px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            }

            .stat-number{
                font-family: 'Syncopate', sans-serif;
    src: url(../Font/Syncopate-Regular.ttf);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(120deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }

            .stat-text {
                font-size: 15px;
                font-weight: 500;
                color: var(--text-primary);
                letter-spacing: 0.5px;
                text-align: center;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(3, 0, 24, 0.95);
                flex-direction: column;
                padding: 20px;
                padding-bottom: 30px;
                border-radius: 0 0 12px 12px;
                border: 1px solid var(--card-border);
                backdrop-filter: blur(10px);
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 100;
            }
            
            .mobile-menu-open .nav-links {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu-toggle {
                display: block;
                position: relative;
                left: 38%;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            /* .process-content {
                padding-right: 0;
                padding-left: 160px;
                margin-bottom: 300px;
            } */
            
            /* .process-step-tag {
                position: absolute;
                top: 0;
                left: 0;
            } */
            
            .process-graphic {
                position: relative;
                margin-left: 160px;
                top: auto;
                right: auto;
                height: 250px;
                transform: none;
            }
            
            .model-config-container {
                position: relative;
                width: 100%;
                height: 250px;
            }
            
            .local-model-card, .api-model-card, .embedding-model-card {
                transform: scale(0.8);
            }
            
            .dashboard-container {
                transform: scale(0.8);
                transform-origin: top center;
            }
            
            .onboarding-stats {
                bottom: -50px;
                right: 0;
                transform: scale(0.8);
                transform-origin: top right;
            }
            
            .demo-benefit {
                flex-direction: column;
                align-items: center;
            }
            
            .demo-form {
                padding: 30px 20px;
            }

            .demo-content {
                margin-bottom: 40px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            
            .wrapper{
                width: 100%;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .content{
                max-width: 768px;
                width: 100%;
                padding: 20px;
                
            }
            .hero {
                padding-top: 120px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .section-header h2,
            .demo-title {
                font-size: 36px;
            }
            
            .section-header p {
                font-size: 16px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .feature-card-title {
                font-size: 20px;
            }
            
            .section {
                padding: 100px 0;
            }
            
            .process-step {
                margin-bottom: 80px;
            }
            
            /* .process-content {
                padding-left: 100px;
                margin-bottom: 200px;
            } */
            
            .process-timeline {
                left: 55px;
            }
            
            /* .process-number {
                left: 55px;
            } */
            
            .process-graphic {
                margin-left: 100px;
                height: 200px;
            }
            
            .model-config-container {
                height: 200px;
            }
            
            .local-model-card, .api-model-card, .embedding-model-card {
                transform: scale(0.7);
                width: 200px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-field {
                padding: 14px;
            }
        }
        
        @media (max-width: 576px) {

    /* .hero {
        display: none;
    }         */
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-badge {
        font-size: 12px;
    }

     .text-highlight{
        font-size: 32px;
    }



    .hero-feature {
        flex-direction: column;
        padding: 10px;
        align-items: center;
        text-align: center;
    }
    
    .hero-security-badge {
        width: 280px;
        padding: 20px;
    }
    
    .section-header h2,
    .demo-title {
        font-size: 32px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon i {
        font-size: 24px;
    }
    
    .process-title {
        font-size: 28px;
        position: relative;
        top: 60px;
        text-align: center;
        /* left: 10px; */
    }
    
    .process-description {
        font-size: 16px;
        position: relative;
        top: 50px;
        text-align: center;
    }
    
    .security-assessment{
        display: none;
    }
    .infrastructure-card{
        display: none;
    }
    .server-rack{
        display: none;
    }
    .process-graphic{
        display: none;
    }
    .process-timeline{
        display: none;
    }
    .process-badge{
        position: relative;
        top: 100px;
        right: 38%;
    }
    .process-badge-2{
        position: relative;
        top: 100px;
        left: 38%;
    }.process-badge-4{
        position: relative;
        top: 100px;
        left: 38%;
    }
    .process-highlights-1{
        position: relative;
        width: 100%;
        right: 110px;
        top: 50px;
    }
    .process-highlights-2{
        position: relative;
        width: 100%;
        left: 10px;
        top: 50px;
    }
    .process-highlights-3{
        position: relative;
        width: 100%;
        right: 90px;
        top: 50px;
    }
    .process-highlights-4{
        position: relative;
        width: 100%;
        left: 10px;
        top: 50px;
    }
    .btn {
        width: 100%;
    }
    .logo{
        width: 20%;
    }
}

@media (max-width: 375px) {

    /* .hero {
        display: none;
    }         */
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
    }

     .text-highlight{
        font-size: 32px;
    }
    /* .hero-visual {
        width: 144%;
        left: 0px;
        height: 500px;
    } */
    .code-transformation {
        display: flex
;
        position: relative;
        margin-top: 18rem;
        right: 80px;
    }


    .hero-feature {
        flex-direction: column;
        padding: 10px;
        align-items: center;
        text-align: center;
    }
    
    .hero-security-badge {
        width: 280px;
        padding: 20px;
    }
.btn-primary{
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 8px 25px rgba(138, 0, 255, 0.5), 0 0 15px rgba(0, 255, 194, 0.3);
    position: relative;
    font-size: 12px;
}
    .btn-secondary {
        background: rgba(0, 255, 194, 0.05);
        color: var(--text-primary);
        border: 1px solid var(--accent-primary);
        overflow: hidden;
        backdrop-filter: blur(10px);
        font-size: 10px;
    }

    .feature-text {
        font-family: 'JetBrains Mono', monospace;
        src: url(../Font/JetBrainsMono-Regular.ttf);
        font-size: 12px;
        font-weight: 500;
    }

    .editor-content {
        padding: 16px;
        height: calc(100% - 44px);
        overflow: hidden;
        font-family: 'JetBrains Mono', monospace;
        src: url(../Font/JetBrainsMono-Regular.ttf);
        font-size: 12px;
        line-height: 1.6;
        color: var(--text-secondary);
    }
    .section-header h2,
    .demo-title {
        font-size: 28px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon i {
        font-size: 24px;
    }

    .stat-number {
        font-family: 'Syncopate', sans-serif;
        src: url(../Font/Syncopate-Regular.ttf);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
        background: linear-gradient(120deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    .stat-text {
        font-size: 12px;
        font-weight: 500;
        color: var(--text-primary);
        letter-spacing: 0.5px;
        text-align: center;
    }
    
    .feature-card-title {
        font-size: 16px;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 24px;
    }
    .feature-card-description {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 30px;
    }
    .benefit-text {
        font-size: 14px;
        line-height: 1.5;
        color: var(--text-secondary);
    }
    .benefit-icon {
        color: var(--accent-primary);
        font-size: 14px;
        margin-top: 4px;
    }

    .process-title {
        font-size: 24px;
        position: relative;
        top: 60px;
        text-align: center;
        /* left: 10px; */
    }
    
    .process-description {
        font-size: 16px;
        position: relative;
        top: 50px;
        text-align: center;
    }
    
    .security-assessment{
        display: none;
    }
    .infrastructure-card{
        display: none;
    }
    .server-rack{
        display: none;
    }
    .process-graphic{
        display: none;
    }
    .process-timeline{
        display: none;
    }
    .process-badge{
        position: relative;
        top: 100px;
        right: 33%;
    }
    .process-badge-2{
        position: relative;
        top: 100px;
        left: 34%;
    }.process-badge-4{
        position: relative;
        top: 100px;
        left: 33%;
    }
    .process-highlights-1{
        position: relative;
        width: 100%;
        right: 90px;
        top: 50px;
    }
    .process-highlights-2{
        position: relative;
        width: 100%;
        left: 10px;
        top: 50px;
    }
    .process-highlights-3{
        position: relative;
        width: 100%;
        right: 80px;
        top: 50px;
    }
    .process-highlights-4{
        position: relative;
        width: 100%;
        left: 10px;
        top: 50px;
    }
    .btn {
        width: 100%;
    }
    .logo{
        width: 20%;
    }
    .form-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .form-subtitle {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.5;
    }
    .form-field {
        width: 100%;
        padding: 16px;
        background: rgba(12, 0, 66, 0.5);
        border: 1px solid var(--card-border);
        border-radius: 6px;
        color: var(--text-primary);
        font-family: 'Space Grotesk', sans-serif;
        src: url(../Font/SpaceGrotesk-Regular.ttf);
        font-size: 12px;
        transition: all 0.3s ease;
    }
    .form-submit {
        width: 100%;
        padding: 18px;
        background: var(--gradient-primary);
        color: var(--primary-dark);
        border: none;
        border-radius: 6px;
        font-family: 'Syncopate', sans-serif;
        src: url(../Font/Syncopate-Regular.ttf);
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

}

/* load */
/* Initially hide elements */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  /* When element is in view, apply fade-in effect */
  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
  }
  