
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }


       
        /* Sticky Full Page Slides Container */
        .slides-container {
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            position: relative;
            z-index: 1;
        }

        .slide {
            min-height: 100vh;
            scroll-snap-align: start;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        /* Navigation - Fixed alignment issues */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000001;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #6366f1;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 0.75rem;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #6366f1;
        }

        .cta-button {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
            flex-shrink: 0;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1000002;
            position: relative;
            outline: none;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
            display: block;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section - High-Tech Design */
        .hero {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: white;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        /* High-Tech Background Elements */
        .tech-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.6;
        }

        .circuit-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px),
                linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: circuitMove 20s linear infinite;
        }

        @keyframes circuitMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .data-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .data-particles::before,
        .data-particles::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00ff88;
            border-radius: 50%;
            animation: dataFloat 8s ease-in-out infinite;
            box-shadow: 
                0 0 10px #00ff88,
                20px 30px 0 #6366f1,
                40px 70px 0 #8b5cf6,
                60px 20px 0 #00ff88,
                80px 90px 0 #6366f1,
                100px 40px 0 #8b5cf6;
        }

        .data-particles::after {
            animation-delay: 4s;
            left: 50%;
        }

        @keyframes dataFloat {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
            25% { transform: translateY(-100px) translateX(50px); opacity: 1; }
            50% { transform: translateY(-50px) translateX(-30px); opacity: 0.7; }
            75% { transform: translateY(-150px) translateX(20px); opacity: 1; }
        }

        .neural-network {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            opacity: 0.3;
        }

        .neural-network::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 2px, transparent 2px);
            background-size: 20px 20px;
            animation: neuralPulse 3s ease-in-out infinite;
        }

        @keyframes neuralPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.6; }
        }

        .code-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(0, 255, 136, 0.05) 50%,
                transparent 100%
            );
            animation: codeRain 15s linear infinite;
        }

        @keyframes codeRain {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* Floating Interactive Dots - Enhanced */
        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floating-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(0, 255, 136, 0.8);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .floating-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-dot:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
        .floating-dot:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
        .floating-dot:nth-child(4) { top: 70%; left: 85%; animation-delay: 3s; }
        .floating-dot:nth-child(5) { top: 40%; left: 5%; animation-delay: 4s; }
        .floating-dot:nth-child(6) { top: 80%; left: 90%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.8; }
            25% { transform: translateY(-30px) translateX(15px); opacity: 1; }
            50% { transform: translateY(-15px) translateX(-15px); opacity: 0.6; }
            75% { transform: translateY(-45px) translateX(8px); opacity: 1; }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 100vh;
            padding: 2rem;
        }

        .hero-text {
            text-align: left;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
        }

        .hero h1 .highlight {
            color: #00ff88;
            background: linear-gradient(135deg, #00ff88, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            color: #e2e8f0;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00ff88, #6366f1);
            color: #0f0f23;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid #6366f1;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #6366f1;
            color: white;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
        }

        /* Tech Stats */
        .tech-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #00ff88;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* AI Visualization */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .ai-visualization {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .central-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
            z-index: 10;
        }

        .core-pulse {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid rgba(0, 255, 136, 0.5);
            border-radius: 50%;
            animation: corePulse 2s ease-in-out infinite;
        }

        @keyframes corePulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.3; }
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .ring-1 {
            width: 200px;
            height: 200px;
            animation: orbitRotate 20s linear infinite;
        }

        .ring-2 {
            width: 300px;
            height: 300px;
            animation: orbitRotate 30s linear infinite reverse;
        }

        @keyframes orbitRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .orbit-dot {
            position: absolute;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #00ff88, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
        }

        .dot-1 { top: -20px; left: 50%; transform: translateX(-50%); }
        .dot-2 { top: 50%; right: -20px; transform: translateY(-50%); }
        .dot-3 { bottom: -20px; left: 50%; transform: translateX(-50%); }
        .dot-4 { top: -20px; left: 50%; transform: translateX(-50%); }
        .dot-5 { top: 50%; right: -20px; transform: translateY(-50%); }
        .dot-6 { bottom: -20px; left: 50%; transform: translateX(-50%); }

        .data-streams {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .stream {
            position: absolute;
            width: 2px;
            height: 60px;
            background: linear-gradient(180deg, transparent, #00ff88, transparent);
            animation: streamFlow 3s ease-in-out infinite;
        }

        .stream-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .stream-2 { top: 60%; right: 15%; animation-delay: 1s; }
        .stream-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
        .stream-4 { top: 40%; right: 25%; animation-delay: 1.5s; }

        @keyframes streamFlow {
            0%, 100% { opacity: 0; transform: translateY(0); }
            50% { opacity: 1; transform: translateY(-20px); }
        }

        /* About Section - Updated with Why Cards */
        .about {
            background: #f8fafc;
            padding: 6rem 2rem;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .about h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #1e293b;
        }

        .about p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Why Choose Cards - Updated with centered icons */
        .why-cards {
            display: flex;
            gap: 2.5rem;
            justify-content: center;
            margin-top: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .why-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
            padding: 2.5rem 2rem 2rem 2rem;
            min-width: 320px;
            max-width: 400px;
            flex: 1 1 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .why-card:hover {
            box-shadow: 0 8px 32px rgba(30, 41, 59, 0.12);
            transform: translateY(-4px) scale(1.02);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .why-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .why-card p {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Services Section - Updated to match screenshot */
        .services {
            padding: 6rem 2rem;
            background: white;
        }

        .services-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #1e293b;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: #fff;
            padding: 2rem;
            border-radius: 20px;
            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-color: #d1d5db;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #1f2937;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .service-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }

        .service-link:hover {
            color: #1d4ed8;
            gap: 0.75rem;
        }

        .service-link i {
            font-size: 0.8rem;
            transition: transform 0.2s ease;
        }

        .service-link:hover i {
            transform: translateX(2px);
        }

        /* Color variations for service cards */
        .service-card:nth-child(1) { background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%); }
        .service-card:nth-child(2) { background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%); }
        .service-card:nth-child(3) { background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%); }
        .service-card:nth-child(4) { background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%); }
        .service-card:nth-child(5) { background: linear-gradient(135deg, #cffafe 0%, #f0fdfa 100%); }
        .service-card:nth-child(6) { background: linear-gradient(135deg, #fecaca 0%, #fef2f2 100%); }

        /* How It Works Section - New Timeline Design */
        .how-it-works {
            background: #f8fafc;
            padding: 6rem 2rem;
        }

        .how-it-works-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .how-it-works h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .how-it-works-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 4rem;
        }

        .timeline {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 27px;
            top: 60px;
            bottom: 60px;
            width: 2px;
            background: #e2e8f0;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            z-index: 2;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-number {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
            margin-right: 2rem;
            position: relative;
            z-index: 3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .timeline-content {
            flex: 1;
            text-align: left;
            padding-top: 0.5rem;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.75rem;
        }

        .timeline-content p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .timeline-meta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .timeline-duration,
        .timeline-price {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        .timeline-duration i,
        .timeline-price i {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        /* Case Studies Section - Updated Grid Layout */
        .case-studies {
            padding: 6rem 2rem;
            background: white;
        }

        .case-studies-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .case-studies h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #1e293b;
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .case-study-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
        }

        .case-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .case-study-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .case-study-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-study-content {
            padding: 2rem;
        }

        .case-study-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .case-study-content > p {
            color: #64748b;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .metrics-grid {
            margin-bottom: 1.5rem;
        }

        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .metric-row:last-child {
            border-bottom: none;
        }

        .metric-label {
            font-weight: 600;
            color: #374151;
            font-size: 0.9rem;
        }

        .metric-values {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .before-value {
            color: #ef4444;
            font-weight: 600;
        }

        .after-value {
            color: #22c55e;
            font-weight: 600;
        }

        .metric-values i {
            color: #9ca3af;
            font-size: 0.8rem;
        }

        .roi-badge {
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
            color: white;
            font-weight: 600;
        }

        .roi-green {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .roi-blue {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .roi-purple {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .roi-text {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .payback-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Updated Free Demo Section with high-tech design */
        .free-demo {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .free-demo .tech-background {
            opacity: 0.3;
        }

        .free-demo-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }

        .free-demo h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00ff88, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        }

        .free-demo p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .demo-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        /* Robot Hologram */
        .demo-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .robot-hologram {
            position: relative;
            width: 250px;
            height: 300px;
            margin-bottom: 2rem;
        }

        .hologram-base {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 20px;
            background: linear-gradient(90deg, rgba(0,255,136,0.1), rgba(99,102,241,0.3), rgba(0,255,136,0.1));
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        }

        .hologram-ring {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            border: 2px solid rgba(0, 255, 136, 0.3);
            border-radius: 50%;
            animation: ringPulse 2s ease-in-out infinite;
        }

        .hologram-ring::before,
        .hologram-ring::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }

        .hologram-ring::before {
            width: 140px;
            height: 140px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            animation: ringPulse 2s ease-in-out infinite 0.5s;
        }

        .hologram-ring::after {
            width: 160px;
            height: 160px;
            border: 1px solid rgba(0, 255, 136, 0.1);
            animation: ringPulse 2s ease-in-out infinite 1s;
        }

        @keyframes ringPulse {
            0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
            50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
        }

        .hologram-projection {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 255, 136, 0.8);
            font-size: 5rem;
            animation: hologramFloat 3s ease-in-out infinite;
        }

        .hologram-projection::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(0, 255, 136, 0.2), transparent 70%);
            z-index: -1;
            filter: blur(10px);
        }

        @keyframes hologramFloat {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-15px); }
        }

        .hologram-projection i {
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
        }

        /* Tech Features */
        .tech-features {
            display: flex;
            justify-content: space-around;
            width: 100%;
            gap: 1rem;
        }

        .tech-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(99, 102, 241, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff88;
            font-size: 1.5rem;
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }

        .tech-feature:hover .feature-icon {
            background: rgba(99, 102, 241, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
        }

        .feature-text {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Updated Form */
        .demo-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .demo-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ff88, #6366f1, #00ff88);
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        .form-header {
            text-align: left;
            margin-bottom: 0.5rem;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .form-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .form-fields {
            display: grid;
            gap: 1rem;
        }

        .demo-form input,
        .demo-form select {
            padding: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            transition: all 0.3s ease;
        }

        .demo-form input:focus,
        .demo-form select:focus {
            border-color: #00ff88;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
            outline: none;
        }

        .demo-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .demo-form select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 1rem) center;
            padding-right: 2.5rem;
        }

        .demo-form select option {
            background-color: #1a1a2e;
            color: white;
        }

        .demo-button {
            position: relative;
            background: linear-gradient(135deg, #00ff88, #6366f1);
            color: #0f0f23;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            margin-top: 1rem;
        }

        .button-text {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .button-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 136, 0.8) 0%, rgba(0, 255, 136, 0) 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .demo-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
        }

        .demo-button:hover .button-glow {
            opacity: 0.3;
            animation: glowPulse 2s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
        }

        /* Contact Section - Updated Grid Layout */
        .contact {
            padding: 6rem 2rem;
            background: #f8fafc;
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #1e293b;
        }

        .contact-content > p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: box-shadow 0.2s, transform 0.2s;
        }

        .contact-card:hover {
            box-shadow: 0 8px 32px rgba(30, 41, 59, 0.12);
            transform: translateY(-4px) scale(1.02);
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .contact-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0.25rem 0;
        }

        .contact-card a {
            color: #6366f1;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        .social-media {
            text-align: center;
        }

        .social-media h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .social-icon.facebook {
            background: linear-gradient(135deg, #1877f2, #42a5f5);
        }

        .social-icon.instagram {
            background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
        }

        .social-icon.whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .social-icon.tiktok {
            background: linear-gradient(135deg, #000000, #ff0050);
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(99, 102, 241, 0.2);
            z-index: 1001;
        }

        .scroll-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .slide {
                scroll-margin-top: 90px; /* Adjust this value based on your navbar height */
                scroll-padding-top: 90px;
            }
            
            /* Specific adjustments for each section */
            #about,
            #services,
            #how-it-works,
            #case-studies,
            #free-demo,
            #contact {
                padding-top: 90px;
                margin-top: -90px;
            }
}
        @media (max-width: 1200px) {
            .case-studies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu {
                gap: 1rem;
            }

            .nav-link {
                font-size: 0.9rem;
                padding: 0.5rem;
            }

            .why-cards {
                gap: 1.5rem;
            }
            
            .why-card {
                min-width: 260px;
                padding: 2rem 1.2rem 1.5rem 1.2rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .case-studies-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .timeline-item {
                margin-bottom: 2.5rem;
            }

            .timeline-number {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
                margin-right: 1.5rem;
            }

            .timeline-line {
                left: 23px;
            }

            .ai-visualization {
                width: 300px;
                height: 300px;
            }

            .tech-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .demo-container {
                gap: 2rem;
            }

            .robot-hologram {
                width: 200px;
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 0.5rem;
            }

            .nav-container {
                gap: 0.5rem;
                max-width: 100%;
                padding: 0 1rem;
                justify-content: space-between;
                position: relative;
            }

            .nav-menu {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                background: rgba(255, 255, 255, 0.98) !important;
                backdrop-filter: blur(10px) !important;
                flex-direction: column !important;
                justify-content: center !important;
                align-items: center !important;
                padding: 2rem !important;
                gap: 2rem !important;
                z-index: 999999999 !important;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
                overflow-y: auto !important;
                transform: translateX(-100%) !important;
                transition: transform 0.3s ease !important;
                display: flex !important;
            }

            .nav-menu.active {
                transform: translateX(0) !important;
            }

            .mobile-menu-toggle {
                display: flex !important;
            }


            .logo img {
                max-height: 50px !important;
            }

            .cta-button {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
                min-width: auto;
                flex-shrink: 0;
                white-space: nowrap;
                border-radius: 25px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
                padding: 80px 1rem 2rem 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .ai-visualization {
                width: 250px;
                height: 250px;
            }

            .tech-stats {
                flex-direction: column;
                gap: 1rem;
                margin-top: 2.5rem;
                margin-bottom: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .case-studies-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .why-cards {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .why-card {
                width: 100%;
                max-width: 400px;
                min-width: unset;
            }

            .social-icons {
                gap: 0.75rem;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            /* Timeline mobile adjustments */
            .timeline {
                max-width: 100%;
                padding: 0 1rem;
            }

            .timeline-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                margin-bottom: 3rem;
            }

            .timeline-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .timeline-line {
                display: none;
            }

            .timeline-content {
                text-align: center;
            }

            .timeline-meta {
                justify-content: center;
            }

            .demo-container {
                grid-template-columns: 1fr;
            }

            .demo-visual {
                margin-bottom: 2rem;
            }

            .robot-hologram {
                width: 180px;
                height: 220px;
            }

            .demo-form {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .slide {
                padding: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .ai-visualization {
                width: 200px;
                height: 200px;
            }

            .demo-form {
                padding: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .contact-card {
                padding: 2rem 1.5rem;
            }

            .case-study-content {
                padding: 1.5rem;
            }

            .timeline-number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .timeline-content h3 {
                font-size: 1.3rem;
            }

            .timeline-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .metric-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .metric-values {
                align-self: flex-end;
            }

            .tech-stats {
                gap: 0.75rem;
                margin-top: 3rem;
                margin-bottom: 2.5rem;
            }

            .stat-number {
                font-size: 1.25rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }
        }

        /* Fix for mobile menu overlap issue */
        @media (max-width: 768px) {
            .nav-menu.active + .slides-container .hero {
                padding-top: 70px;
            }
        }

        /* Smooth scroll snap for better UX */
        @supports (scroll-snap-type: y mandatory) {
            .slides-container {
                scroll-snap-type: y mandatory;
            }

            .slide {
                scroll-snap-align: start;
            }
        }
    

/* Fixes for mobile overlapping and visibility */

section {
    scroll-margin-top: 80px;
}
@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.25rem;
    }

    .nav-container {
        gap: 0.25rem;
        padding: 0 0.25rem;
    }

    .logo img {
        max-height: 45px !important;
    }

    .cta-button {
        font-size: 0.65rem;
        padding: 0.35rem 0.6rem;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 20px;
    }
}
