        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            background: #0a0a0a;
            font-family: 'Inter', 'Arial', sans-serif;
            line-height: 1.6;
        }


        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 255, 165, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #000066 50%, #003333 75%, #0a0a0a 100%);
            background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
            animation: gradientWave 15s ease infinite;
                will-change: background-position;
    transition: background-position 0.1s ease-out;
        }

        /* Enhanced Particle System */
        .particle-system {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: particleFloat 12s infinite linear;
            opacity: 0;
        }

        .particle.code {
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: #ff006e;
            font-size: 14px;
        }

        .geometric-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
                will-change: transform;
    backface-visibility: hidden;
        }

.navbar {
    position: fixed; /* Changed from relative to fixed */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    z-index: 21;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
}

.nav-link {
    text-decoration: none;
    color: #00ffff;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    cursor: pointer;
    background: transparent;
    border: none;
    margin-left: auto;
    z-index: 50;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(45deg,#ff00ff,#00ffff);
    margin: 4px 0;
    border-radius: 3px;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.2s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: #ff006e;
}

.hamburger.active span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: #ff006e;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.flag-icon {
    width: 28px;
    height: 20px;
    display: block;
    border-radius: 3px;
    object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        position: relative; /* Changed from absolute */
        margin-left: auto;
        margin-right: 10px;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .lang-btn {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .flag-icon {
        width: 24px;
        height: 18px;
    }
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(0, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0, 255, 255, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu .nav-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
       pointer-events: all; 
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-menu .nav-link:hover {
    color: #ff00ff;
    border-color: rgba(255, 0, 255, 0.5);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu .nav-link:hover::before {
    left: 0;
}

/* Mobile overlay */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
        pointer-events: all; 
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0;
        order: 3; /* Hamburger goes last */
    }
    
    .navbar-logo {
        flex: 0 0 auto;
        order: 1; /* Logo goes first */
    }
    
    /* Language switcher in the middle on mobile */
    .language-switcher {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        position: relative;
    }
    
    .lang-btn {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .flag-icon {
        width: 24px;
        height: 18px;
    }
    
    .nav-menu {
        width: 280px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        min-width: 80%;
    }
    
    .lang-btn {
        width: 36px;
        height: 36px;
        padding: 5px;
    }
    
    .flag-icon {
        width: 22px;
        height: 16px;
    }
}

.hamburger:hover span {
    animation: neonPulse 1.5s infinite ease-in-out;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4);
    }
}
        /* Hero Section - Enhanced */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 90px; 
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    align-items: center;
}

        .portfolio-main-title {
            font-size: 3.5rem;
            color: #ff00ff;
            text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
            margin-bottom: 1.5rem;
            margin-top: 2.35rem;
            animation: pulse 2s infinite alternate;
                text-align: center; 
    width: 100%;  
        }

        @keyframes pulse {
            from {
                text-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 25px rgba(255, 0, 255, 0.5);
            }
            to {
                text-shadow: 0 0 25px rgba(255, 0, 255, 0.9), 0 0 40px rgba(255, 0, 255, 0.7);
            }
        }


/* Mobile / tablet layout */
@media (max-width: 768px) {
    .hero {
        height: auto;
            align-items: center; /* centers horizontally */
    text-align: center;  /* centers text inside elements */
    }

    .hero-content {
        order: -1;
        margin-top: 2rem; /* extra spacing if needed */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }


    .hero-visual {
        order: 2; /* code second */
        max-width: 100%;   /* shrink to fit */
    }

    .code-window {
        width: 100%;       /* responsive */
        max-width: 300px;  /* limit size */
        height: auto;      /* let it grow naturally */
    }

    
}


.hero-content {
    z-index: 10;
    transform: translateX(-50px);
    opacity: 0;
    animation: heroSlideIn 1.5s ease-out 0.5s forwards;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(50px);
    opacity: 0;
    animation: heroSlideIn 1.5s ease-out 0.8s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border: none;
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #06ffa5;
    color: #06ffa5;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(6, 255, 165, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 255, 165, 0.2);
}

/* Visual Elements */
.code-window {
    width: 500px;
    height: 350px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    backdrop-filter: blur(20px);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.code-lines {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    opacity: 0;
    animation: typeWriter 0.5s ease-in forwards;
    color: #06ffa5;
}

.code-line:nth-child(1) { animation-delay: 1s; color: #ff006e; }
.code-line:nth-child(2) { animation-delay: 1.2s; color: #8338ec; }
.code-line:nth-child(3) { animation-delay: 1.4s; color: #3a86ff; }
.code-line:nth-child(4) { animation-delay: 1.6s; color: #06ffa5; }
.code-line:nth-child(5) { animation-delay: 1.8s; color: #ff006e; }


        /* Visual Elements */
        .code-window {
            width: 500px;
            height: 350px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 110, 0.3);
            backdrop-filter: blur(20px);
            padding: 1rem;
            position: relative;
            overflow: hidden;
        }

        .window-header {
            display: flex;
            gap: 8px;
            margin-bottom: 1rem;
        }

        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red { background: #ff5f57; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #28ca42; }

        .code-lines {
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.6;
        }

        .code-line {
            opacity: 0;
            animation: typeWriter 0.5s ease-in forwards;
            color: #06ffa5;
        }

        .code-line:nth-child(1) { animation-delay: 1s; color: #ff006e; }
        .code-line:nth-child(2) { animation-delay: 1.2s; color: #8338ec; }
        .code-line:nth-child(3) { animation-delay: 1.3s; color: #3a86ff; }
        .code-line:nth-child(4) { animation-delay: 1.4s; color: #06ffa5; }
        .code-line:nth-child(5) { animation-delay: 1.5s; color: #ff006e; }
        .code-line:nth-child(6) { animation-delay: 1.6s; color: #3a86ff; }
        .code-line:nth-child(7) { animation-delay: 1.7s; color: #06ffa5; }
        .code-line:nth-child(8) { animation-delay: 1.8s; color: #06ffa5; }

        /* Complex Section Layouts */
        .section {
            min-height: 100vh;
            padding: 5rem 2rem;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 1rem auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .section-header.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff006e, #06ffa5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Advanced Grid Layouts */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 0, 110, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 0, 110, 0.5);
            box-shadow: 0 25px 60px rgba(255, 0, 110, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff006e, #8338ec);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .service-desc {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            color: #06ffa5;
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #ff006e;
            font-weight: bold;
        }

                .services {
            padding: 4rem 2rem;
            position: relative;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: linear-gradient(145deg, #1f1f3a, #111122);
            border: 2px solid #ff00ff;
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
            box-shadow: 
                0 0 20px rgba(255, 0, 255, 0.3),
                0 0 40px rgba(255, 0, 255, 0.1),
                inset 0 0 20px rgba(255, 0, 255, 0.05);
            animation: cardGlow 3s ease-in-out infinite alternate;
        }

        @keyframes cardGlow {
            from { 
                box-shadow: 
                    0 0 20px rgba(255, 0, 255, 0.3),
                    0 0 40px rgba(255, 0, 255, 0.1),
                    inset 0 0 20px rgba(255, 0, 255, 0.05);
            }
            to { 
                box-shadow: 
                    0 0 30px rgba(255, 0, 255, 0.5),
                    0 0 60px rgba(255, 0, 255, 0.2),
                    inset 0 0 30px rgba(255, 0, 255, 0.1);
            }
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(0, 247, 255, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #00ffff;
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.6),
                0 0 80px rgba(0, 255, 255, 0.3),
                inset 0 0 30px rgba(0, 255, 255, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 18px;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            z-index: -1;
            animation: iconPulse 2s ease-in-out infinite alternate;
        }

        @keyframes iconPulse {
            from { opacity: 0.5; transform: scale(1); }
            to { opacity: 0.8; transform: scale(1.05); }
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .service-card p {
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            color: #000;
            text-decoration: none;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #00ffff, #ff00ff);
        }

        /* Floating elements */
        .floating-element {
            position: absolute;
            pointer-events: none;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }



        /* Process Timeline */
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 4rem auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #ff006e, #8338ec, #3a86ff, #06ffa5);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 4rem;
            opacity: 0;
            transition: all 0.8s ease;
        }

        .timeline-item.revealed {
            opacity: 1;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            max-width: 45%;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 0, 110, 0.2);
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 2rem;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 2rem;
        }


                .comparison-section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .comparison-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .comparison-title {
            font-size: 3rem;
            color: #ff00ff;
            text-align: center;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
            animation: pulse 2s infinite alternate;
        }

        .comparison-subtitle {
            font-size: 1.3rem;
            color: #00ffff;
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0.8;
        }

        .comparison-grid {
            background: linear-gradient(145deg, #1f1f3a, #111122);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
        }

        .comparison-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            padding: 1.5rem 2rem;
            font-weight: bold;
            font-size: 1.1rem;
            color: #000;
        }

        .feature-column, .us-column, .them-column {
            text-align: center;
        }

        .us-column {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            padding: 2rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            align-items: center;
            transition: all 0.3s ease;
        }

        .comparison-row:hover {
            background: rgba(0, 255, 255, 0.05);
            transform: translateX(5px);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .feature-name {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 500;
        }

        .our-value {
            text-align: center;
            padding: 1rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 255, 0.1));
            border: 1px solid rgba(0, 255, 0, 0.3);
        }

        .their-value {
            text-align: center;
            padding: 1rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 100, 100, 0.1));
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .price {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .our-value .price {
            color: #00ff00;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
        }

        .their-value .price {
            color: #ff6666;
            text-shadow: 0 0 10px rgba(255, 102, 102, 0.6);
        }

        .benefit {
            font-size: 0.9rem;
            color: #00ffff;
            opacity: 0.8;
        }

        .drawback {
            font-size: 0.9rem;
            color: #ffaaaa;
            opacity: 0.7;
        }

        .comparison-cta {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem 2rem;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
            border: 2px solid rgba(255, 0, 255, 0.3);
        }

        .cta-text {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 2rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .comparison-btn {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            color: #000;
            text-decoration: none;
            border-radius: 35px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .comparison-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 50px rgba(255, 0, 255, 0.7);
        }

                @media (max-width: 768px) {
           
            .comparison-title {
                font-size: 2.2rem;
            }

            .comparison-header, .comparison-row {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }

            .comparison-header {
                padding: 1rem;
            }

            .feature-column {
                background: rgba(255, 0, 255, 0.2);
                padding: 0.8rem;
                border-radius: 10px;
                margin-bottom: 1rem;
            }

            .us-column, .them-column {
                display: none;
            }

            .comparison-row {
                padding: 1.5rem 1rem;
            }

            .feature-name {
                background: rgba(0, 255, 255, 0.1);
                padding: 1rem;
                border-radius: 10px;
                margin-bottom: 1rem;
                border: 1px solid rgba(0, 255, 255, 0.3);
            }

            .our-value {
                margin-bottom: 1rem;
            }

            .comparison-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

        }

/* Make sure the parent container is positioned relative */

        /* Scroll Progress */
 .scroll-progress {
    position: fixed;
    top: 85px; 
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    z-index: 999;
    transition: width 0.1s ease;
    width: 0%;
}

        /* Enhanced Animations */
        @keyframes gradientWave {
            0% { background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%; }
            50% { background-position: 100% 50%, 100% 50%, 100% 50%, 100% 50%; }
            100% { background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%; }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes heroSlideIn {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes typeWriter {
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        @keyframes particleFloat {
            0% { 
                transform: translateY(100vh) translateX(0px) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { 
                transform: translateY(-100px) translateX(200px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }
            
            .hero-visual {
                order: -1;
            }
            
            .code-window {
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
/* Mobile Menu - show only on small screens */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 300px;
                background: rgba(10, 10, 26, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid rgba(255, 0, 110, 0.2);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-link {
                font-size: 1.3rem;
                padding: 1rem 0;
                text-align: center;
                width: 100%;
                color: rgba(255, 255, 255, 0.9);
            }

            .nav-link:hover {
                color: #06ffa5;
                background: rgba(6, 255, 165, 0.1);
                border-radius: 10px;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-logo {
                font-size: 1.3rem;
            }
        

    /* Hamburger animation to X */
    .mobile-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

            
            .hero-buttons {
                justify-content: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .timeline-line {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: row !important;
                margin-left: 60px;
            }
            
            .timeline-content {
                max-width: 100%;
                margin: 0 !important;
            }
            
            .timeline-number {
                left: 30px;
            }
                    .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 1.5rem;
            }
                        .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }

            .services-container {
                flex-direction: column;
                align-items: center;
            }


        }