        * {
            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 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
                       background: rgba(10, 10, 26, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 110, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.98);
            border-bottom-color: rgba(255, 0, 110, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;   /* smaller size */
  width: auto;
}


.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
        font-weight: 600;       /* a bit bolder */
    font-size: 1.3rem;      /* bigger text */
}


        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff006e, #06ffa5);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #06ffa5;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.7rem 1.5rem;
            background: transparent;
            border: 2px solid #ff006e;
            color: #ff006e;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: rgba(255, 0, 110, 0.1);
            box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #ff006e;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section - Enhanced */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* adjust based on navbar height */
    box-sizing: border-box;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    align-items: center;
}


/* 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;
        }



        /* 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: 70px;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
            z-index: 999;
            transition: width 0.1s ease;
        }

        /* 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 {
        display: none; /* hidden by default on mobile */
        flex-direction: column;
        position: fixed;
        top: 70px; /* below navbar */
        right: 2rem;
        background: rgba(0, 0, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 15px;
        gap: 1.5rem;
        z-index: 1001;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex; /* show when active */
    }

    .mobile-menu {
        display: flex; /* show hamburger on mobile */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1002;
    }

    /* 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;
            }
        }