:root {
            --bg-color: #050505;
            --text-main: #e5e5e5;
            --accent: #ffffff;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            cursor: none; 
        }

        .font-tech {
            font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
            font-variant-numeric: lining-nums tabular-nums;
        }

        
        #cursor {
            position: fixed;
            top: 0; left: 0;
            width: 20px; height: 20px;
            border: 1px solid white;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background-color 0.3s, mix-blend-mode 0.3s;
            mix-blend-mode: difference;
        }
        #cursor.hovered {
            width: 60px; height: 60px;
            background-color: white;
            mix-blend-mode: difference;
            border: none;
        }

        
        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: #050505;
        }
        
        
        section:first-of-type {
            position: relative;
            z-index: 1;
        }

        .content-layer {
            position: relative;
            z-index: 10;
        }

        
        .nav-link {
            position: relative;
            color: #737373;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: #ffffff;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        
        .lang-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.6rem;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            background: rgba(255,255,255,0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .lang-toggle:hover {
            border-color: rgba(255,255,255,0.35);
            background: rgba(255,255,255,0.08);
        }
        .lang-toggle .pill {
            width: 34px;
            height: 18px;
            background: rgba(255,255,255,0.12);
            border-radius: 999px;
            position: relative;
            transition: background 0.3s ease;
        }
        .lang-toggle .dot {
            position: absolute;
            top: 2px; left: 2px;
            width: 14px; height: 14px;
            border-radius: 50%;
            background: #fff;
            transition: transform 0.25s ease, background 0.25s ease;
        }
        .lang-toggle.lang-en .pill {
            background: rgba(126, 197, 255, 0.35);
        }
        .lang-toggle.lang-en .dot {
            transform: translateX(16px);
            background: #7ec5ff;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-up {
            animation: fadeUp 1s ease-out forwards;
        }
        .delay-200 { animation-delay: 0.2s; }
        .delay-500 { animation-delay: 0.5s; }

        
        .scroll-anchors {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 50;
            display: flex !important;
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-end;
            pointer-events: none;
            opacity: 1 !important;
            visibility: visible !important;
            transition: opacity 0.5s ease;
            max-width: 200px;
            will-change: transform;
        }

        .scroll-anchors.visible {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .scroll-anchor {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-anchor::before {
            display: none;
        }

        .scroll-anchor.active::before {
            display: none;
        }

        .scroll-anchor-dot {
            width: 12px;
            height: 12px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            background: transparent;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .scroll-anchor.active .scroll-anchor-dot {
            background: #ffffff;
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        .scroll-anchor-label {
            position: absolute;
            right: 2rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .scroll-anchor:hover .scroll-anchor-label,
        .scroll-anchor.active .scroll-anchor-label {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-anchor:hover .scroll-anchor-dot {
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .scroll-anchor:hover::before {
            display: none;
        }

        @media (max-width: 1024px) {
            .scroll-anchors {
                right: 1rem;
            }
            .scroll-anchor-label {
                display: none;
            }
        }

        
        .reveal-text {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .reveal-text.active {
            opacity: 1;
            transform: translateY(0);
        }

        
        .sticky-wrapper {
            position: relative;
            width: 100%;
            --sticky-count: 10;
            min-height: calc(var(--sticky-count) * 100vh);
            height: calc(var(--sticky-count) * 100vh);
        }

        
        .sticky-card {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.1);
            background-color: var(--bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transform-origin: center top;
            transition: transform 0.5s ease-out;
        }
        .sticky-card > div {
            overflow: visible;
            width: 100%;
        }
        .sticky-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 35%, rgba(0,255,157,0.06), transparent 42%), radial-gradient(circle at 70% 65%, rgba(93,0,232,0.06), transparent 40%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 55%);
            opacity: 0.9;
            pointer-events: none;
            mix-blend-mode: screen;
        }
        .sticky-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(transparent 95%, rgba(255,255,255,0.05) 96%),
                linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.05) 96%);
            background-size: 48px 48px;
            opacity: 0.25;
            pointer-events: none;
            transform: translateZ(0);
            z-index: 0;
        }
        
        
        
        @media (min-width: 1024px) {
            .sticky-card .max-w-7xl {
                padding-right: 0;
            }
        }
        
        
        .sticky-card .max-w-7xl {
            display: grid !important;
        }
        
        .sticky-card .grid {
            display: grid !important;
        }
        
        
        .services-carousel-container {
            width: 100%;
            max-width: 600px;
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        .services-carousel-wrapper {
            display: flex;
            gap: 1.5rem;
            height: 100%;
        }
        
        .services-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
        }
        
        .services-column-left {
            animation: scrollUp 20s linear infinite;
        }
        
        .services-column-right {
            animation: scrollDown 20s linear infinite;
        }
        
        @media (max-width: 768px) {
            .services-carousel-container {
                height: auto;
                max-width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
            }
            .services-carousel-container::-webkit-scrollbar {
                height: 4px;
            }
            .services-carousel-container::-webkit-scrollbar-track {
                background: transparent;
            }
            .services-carousel-container::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.2);
                border-radius: 2px;
            }
            .services-carousel-wrapper {
                flex-direction: row;
                height: auto;
                gap: 1rem;
                padding-bottom: 0.5rem;
            }
            .services-column {
                flex-direction: row;
                flex: none;
                gap: 1rem;
            }
            .services-column-left,
            .services-column-right {
                animation: none;
            }
            .service-card {
                min-width: 200px;
                flex-shrink: 0;
            }
        }
        
        @keyframes scroll-glow {
            0% { transform: translate3d(-2%, -2%, 0) scale(1); opacity: 0.75; }
            100% { transform: translate3d(3%, 3%, 0) scale(1.08); opacity: 0.95; }
        }
        @keyframes grid-flow {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 48px 48px, 48px 48px; }
        }
        @keyframes huePulse {
            0% { filter: hue-rotate(0deg) saturate(1); }
            100% { filter: hue-rotate(25deg) saturate(1.2); }
        }
        @keyframes fadePulse {
            0% { opacity: 0.22; }
            100% { opacity: 0.38; }
        }
        
        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }
        
        @keyframes scrollDown {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            min-height: 60px;
        }
        
        .service-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateX(4px);
        }
        
        .service-icon {
            width: 20px;
            height: 20px;
            stroke: rgba(255, 255, 255, 0.6);
            flex-shrink: 0;
        }
        
        .service-card span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
        }
        
        
        .services-carousel-container:hover .services-column-left,
        .services-carousel-container:hover .services-column-right {
            animation-play-state: paused;
        }

        
        .stack-wrapper {
            position: relative;
            display: inline-block;
        }
        .stack-modal {
            position: absolute;
            left: 0;
            bottom: 110%;
            min-width: 340px;
            max-width: 420px;
            background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 14px;
            box-shadow:
                0 20px 60px rgba(0,0,0,0.35),
                inset 0 1px 0 rgba(255,255,255,0.25),
                inset 0 -1px 0 rgba(255,255,255,0.05);
            padding: 16px 18px;
            opacity: 0;
            transform: translateY(-10px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            backdrop-filter: blur(14px) saturate(140%);
            z-index: 60;
        }
        .stack-modal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .stack-modal h4 {
            margin: 0 0 10px 0;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            color: #fff;
        }
        .stack-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .stack-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 8px 10px;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px;
            background: rgba(255,255,255,0.02);
            transition: background 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
        }
        .stack-item:hover {
            background: rgba(0, 0, 0, 0.6);
            border-color: rgba(255,255,255,0.15);
        }
        .stack-item-title {
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            font-size: 0.9rem;
        }
        .stack-item-desc {
            color: #9ca3af;
            font-size: 0.82rem;
            line-height: 1.35;
        }

        
        .info-wrapper {
            position: relative;
            display: inline-block;
        }
        .info-modal {
            position: absolute;
            left: 0;
            bottom: 110%;
            min-width: 320px;
            max-width: 440px;
            background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 14px;
            box-shadow:
                0 20px 60px rgba(0,0,0,0.35),
                inset 0 1px 0 rgba(255,255,255,0.25),
                inset 0 -1px 0 rgba(255,255,255,0.05);
            padding: 16px 18px;
            opacity: 0;
            transform: translateY(-10px) scale(0.98);
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            backdrop-filter: blur(14px) saturate(140%);
            z-index: 60;
        }
        .info-modal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .info-modal h4 {
            margin: 0 0 8px 0;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            color: #fff;
        }
        .info-modal p {
            margin: 0;
            color: #9ca3af;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .sticky-card {
                position: relative;
                height: auto;
                min-height: auto;
                padding: 3rem 1rem;
                will-change: auto;
                transform: none;
                -webkit-transform: none;
            }
            .sticky-wrapper {
                min-height: auto;
                height: auto;
                contain: none;
            }
            .sticky-card .grid {
                gap: 1rem !important;
            }
            .sticky-card .aspect-square {
                aspect-ratio: 4/3 !important;
                max-height: 25vh;
            }
            .sticky-card .max-w-7xl {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
        }

        
        .btn-glitch {
            position: relative;
            overflow: hidden;
        }
        .btn-glitch::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }
        .btn-glitch:hover::after {
            left: 100%;
        }

        
        .marquee-track {
            display: flex;
            white-space: nowrap;
            overflow: hidden;
        }
        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        
        #dev-toolbar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10000;
            background: rgba(10, 10, 10, 0.9);
            border: 1px solid #333;
            border-radius: 8px;
            padding: 10px 20px;
            display: flex;
            gap: 15px;
            backdrop-filter: blur(10px);
            align-items: center;
        }

        
        .process-section {
            position: relative;
            background-color: #050505;
            padding-bottom: 20vh;
        }

        .visual-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        #process-motion-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .process-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 70%;
            max-width: 500px;
            aspect-ratio: 1/1;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            filter: grayscale(100%) brightness(0.5) blur(5px);
            border: 1px solid rgba(255,255,255,0.05);
            background: #000;
            z-index: 5;
        }

        .process-image.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            filter: grayscale(0%) brightness(1) blur(0);
            box-shadow: 0 0 50px rgba(0, 255, 157, 0.1);
            border-color: rgba(0, 255, 157, 0.3);
            z-index: 10;
        }

        
        #img-0 {
            border: 2px solid #38c5be;
            box-shadow: 0 0 30px rgba(56, 197, 190, 0.35);
        }

        #img-1 {
            border: 2px solid #5d00e8;
            box-shadow: 0 0 30px rgba(93, 0, 232, 0.4);
        }

        #img-2 {
            border: 2px solid #c667ab;
            box-shadow: 0 0 30px rgba(198, 103, 171, 0.35);
        }

        #img-3 {
            border: 2px solid #321c5b;
            box-shadow: 0 0 30px rgba(50, 28, 91, 0.35);
        }

        #img-4 {
            border: 2px solid #ea3b44;
            box-shadow: 0 0 30px rgba(234, 59, 68, 0.35);
        }

        
        #service-3 .order-1 .absolute.inset-0 {
            border: 2px solid #ffffff;
            box-shadow: 0 0 25px rgba(255,255,255,0.15);
        }

        
        .sticky-card .absolute.inset-0 {
            border: 2px solid #ffffff;
            box-shadow: 0 0 20px rgba(255,255,255,0.12);
        }

        .hud-circle {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 60vh; height: 60vh;
            border: 1px dashed rgba(255,255,255,0.1);
            border-radius: 50%;
            pointer-events: none;
            animation: spin 60s linear infinite;
            z-index: 1;
        }
        .hud-circle::before {
            content: '';
            position: absolute;
            top: -5px; left: 50%;
            width: 10px; height: 10px;
            background: var(--accent-green);
            box-shadow: 0 0 10px var(--accent-green);
        }
        @keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

        .steps-container {
            position: relative;
            z-index: 20;
        }

        .step-card {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 4rem;
            border-left: 2px solid rgba(255,255,255,0.05);
            position: relative;
            transition: border-color 0.3s;
        }
        .step-card.active {
            border-left-color: var(--accent-green);
        }
        .step-card.active .step-number {
            color: var(--accent-green);
            text-shadow: 0 0 20px rgba(0,255,157,0.5);
            transform: translateX(10px);
        }
        .step-card.active .step-title {
            color: white;
        }

        .progress-line-fill {
            position: absolute;
            left: -2px;
            top: 0;
            width: 2px;
            background: var(--accent-green);
            height: 0%;
            box-shadow: 0 0 15px var(--accent-green);
            transition: height 0.1s linear;
        }

        .mobile-menu {
            display: block;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        }
        .mobile-menu::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
            opacity: 0.6;
        }
        .mobile-menu::after {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
            opacity: 0.4;
        }
        .mobile-menu.open {
            transform: translateX(0);
        }
        .mobile-menu > div {
            position: relative;
            z-index: 1;
        }
        .nav-link-mobile {
            position: relative;
            padding-bottom: 0.5rem;
        }
        .nav-link-mobile::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: white;
            transition: width 0.3s ease;
        }
        .nav-link-mobile:hover::after {
            width: 100%;
        }
        @media (min-width: 768px) {
            .mobile-menu {
                display: none;
            }
        }
        
        @media (max-width: 1024px) {
            .visual-sticky {
                position: relative;
                height: 50vh;
                top: 0;
            }
            .step-card {
                min-height: auto;
                padding: 4rem 1rem;
                margin-bottom: 4rem;
                border-left: none;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .process-image {
                width: 60%;
            }
            .hud-circle {
                width: 80vw;
                height: 80vw;
            }
        }
