 /* Updated color scheme to dark blue & orange */
        :root {
            --primary-blue: #0a2463;
            --secondary-blue: #3058c6;
            --accent-blue: #0cbdf7;
            --primary-orange: #ff751f;
            --secondary-orange: #f8af81;
            --dark-bg: #020617;
            --card-bg: #0f172a;
            --darker-bg: #000000;
            --text-light: #e2e8f0;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            background-color: var(--dark-bg); 
            color: #ffffff; 
            font-family: system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        html { scroll-behavior: smooth; }
        
        /* Enhanced hero with particle effects */
        .hero-section { 
            min-height: 100vh; 
            background: radial-gradient(ellipse at top, #0a2463 0%, #020617 50%, #000000 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 100px 0 80px;
        }
        
        .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
          .section-container {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: floatParticle 15s infinite;
        }
        
        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }
        
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: floatShape 20s ease-in-out infinite;
        }
        
        .shape-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-blue), transparent);
            top: 5%;
            left: 5%;
        }
        
        .shape-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-orange), transparent);
            bottom: 10%;
            right: 10%;
            animation-delay: 5s;
        }
        
        @keyframes floatShape {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(80px, -80px) scale(1.2);
            }
            66% {
                transform: translate(-50px, 50px) scale(0.8);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .hero-badge {
            display: inline-block;
            background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(59, 130, 246, 0.2));
            border: 1px solid rgba(255, 107, 53, 0.4);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(255, 107, 53, 0.3);
            animation: fadeInDown 1s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gradient-text { 
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-orange) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            background-size: 200% auto;
            animation: gradientShift 3s linear infinite;
        }
        
        @keyframes gradientShift {
            to { background-position: 200% center; }
        }
        
        .typewriter-text {
            display: inline-block;
            color: var(--primary-orange);
            min-height: 80px;
            font-weight: 900;
        }
        
        .hero-description {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1s ease 0.4s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        /* Enhanced navbar with blue/orange theme */
        .navbar-dark { 
            background: rgba(2, 6, 23, 0.95) !important; 
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-dark.scrolled {
            background: rgba(2, 6, 23, 0.98) !important;
            box-shadow: 0 4px 40px rgba(255, 107, 53, 0.2);
        }
        
        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            position: relative;
            color: #cbd5e1 !important;
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--primary-orange));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: #ffffff !important;
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        /* Enhanced About section with advanced background effects */
        .about-section {
            padding: 120px 0 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a1628 0%, #0a2463 50%, #0a1628 100%);
        }

        /* Animated circle background */
        .about-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: circleFloat1 20s infinite ease-in-out;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: circleFloat2 25s infinite ease-in-out;
        }

        @keyframes circleFloat1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-100px, 100px) scale(1.2);
            }
        }

        @keyframes circleFloat2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(100px, -100px) scale(1.3);
            }
        }

        /* Particle system for about section */
        .about-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: particleFloat 15s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }
        .particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 15s; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }
        .particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 19s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 14s; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.8); }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) scale(1.5);
                opacity: 0;
            }
        }

        /* Rotating circles decoration */
        .rotating-circles {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            pointer-events: none;
        }

        .rotating-circle {
            position: absolute;
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 50%;
            animation: rotateCircle 20s linear infinite;
        }

        .rotating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 50%;
            margin: -50px 0 0 -50px;
        }

        .rotating-circle:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 50%;
            left: 50%;
            margin: -90px 0 0 -90px;
            animation-duration: 30s;
            border-color: rgba(59, 130, 246, 0.3);
        }

        .rotating-circle:nth-child(3) {
            width: 260px;
            height: 260px;
            top: 50%;
            left: 50%;
            margin: -130px 0 0 -130px;
            animation-duration: 40s;
            border-color: rgba(255, 107, 53, 0.2);
        }

        @keyframes rotateCircle {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Grid pattern overlay */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 107, 53, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            pointer-events: none;
        }

        /* Enhanced feature list styling */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border-left: 3px solid var(--primary-orange);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
                min-width: 400px;

        }

        .feature-list li:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .feature-list li i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            transition: all 0.4s ease;
        }

        .feature-list li:hover i {
            transform: scale(1.2) rotate(360deg);
        }
        
        /* Updated About section with better content layout */
        .about-section {
            padding: 40px 0;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .section-badge::before,
        .section-badge::after {
            content: '✦';
            color: var(--primary-orange);
            font-size: 0.7rem;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1.15rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            line-height: 1.9;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 2rem;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: #e2e8f0;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 53, 0.15);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        /* New orbital What We Do section inspired by reference */
        .what-we-do-section {
            padding: 120px 0;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        /* Adding animated background particles */
        .what-we-do-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
        }
        
        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .orbital-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 600px;
            margin: 0 auto;
        }
        
        /* Enhanced center with multiple glow layers */
        .orbital-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: 
                radial-gradient(circle at center, rgba(255, 107, 53, 0.4), transparent 70%),
                linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(255, 107, 53, 0.3));
            border: 3px dashed rgba(255, 107, 53, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: centerPulseGlow 3s ease-in-out infinite;
            box-shadow: 
                0 0 60px rgba(255, 107, 53, 0.5),
                0 0 100px rgba(59, 130, 246, 0.3),
                inset 0 0 60px rgba(255, 107, 53, 0.2);
            z-index: 5;
        }
        
        @keyframes centerPulseGlow {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                box-shadow: 
                    0 0 60px rgba(255, 107, 53, 0.5),
                    0 0 100px rgba(59, 130, 246, 0.3),
                    inset 0 0 60px rgba(255, 107, 53, 0.2);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.08) rotate(180deg);
                box-shadow: 
                    0 0 90px rgba(255, 107, 53, 0.7),
                    0 0 130px rgba(59, 130, 246, 0.5),
                    inset 0 0 80px rgba(255, 107, 53, 0.4);
            }
        }
        
        .orbital-center-icon {
            font-size: 4rem;
            background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: iconSpin 20s linear infinite;
            filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Enhanced orbital rings with gradient borders and glow */
        .orbital-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid transparent;
            background: 
                linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
                linear-gradient(90deg, 
                    rgba(59, 130, 246, 0.3), 
                    rgba(255, 107, 53, 0.3),
                    rgba(59, 130, 246, 0.3)) border-box;
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        }
        
        .ring-1 {
            width: 380px;
            height: 380px;
            animation: rotateRingGlow 30s linear infinite;
        }
        
        .ring-2 {
            width: 500px;
            height: 500px;
            animation: rotateRingGlow 40s linear infinite reverse;
        }
        
        @keyframes rotateRingGlow {
            0% { 
                transform: translate(-50%, -50%) rotate(0deg); 
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
            }
            50% { 
                box-shadow: 0 0 50px rgba(255, 107, 53, 0.4);
            }
            100% { 
                transform: translate(-50%, -50%) rotate(360deg); 
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
            }
        }
        
        /* Enhanced orbital icons with connecting lines effect */
        .orbital-icon {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), transparent 70%),
                linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 36, 99, 0.95));
            border: 2px solid rgba(255, 107, 53, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(255, 107, 53, 0.3),
                inset 0 0 30px rgba(59, 130, 246, 0.1);
            backdrop-filter: blur(10px);
            z-index: 2;
        }
        
        /* Adding glow effect behind icons */
        .orbital-icon::before {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent 60%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: -1;
        }
        
        .orbital-icon:hover {
            transform: scale(1.4);
            border-color: var(--primary-orange);
            box-shadow: 
                0 15px 60px rgba(255, 107, 53, 0.7),
                0 0 80px rgba(255, 107, 53, 0.5),
                inset 0 0 40px rgba(59, 130, 246, 0.3);
            z-index: 10;
        }
        
        .orbital-icon:hover::before {
            opacity: 1;
            animation: glowPulse 1.5s ease-in-out infinite;
        }
        
        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.2); opacity: 1; }
        }
        
        .orbital-icon i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s ease;
        }
        
        .orbital-icon:hover i {
            transform: scale(1.2) rotate(360deg);
            filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
        }
        
        /* Enhanced icon positions with better float animation */
        .orbital-icon-1 { 
            top: 10%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
            animation: floatIcon 4s ease-in-out infinite, iconGlow 3s ease-in-out infinite; 
        }
        .orbital-icon-2 { 
            top: 30%; 
            right: 10%; 
            animation: floatIcon 4s ease-in-out infinite 0.5s, iconGlow 3s ease-in-out infinite 0.5s; 
        }
        .orbital-icon-3 { 
            bottom: 30%; 
            right: 10%; 
            animation: floatIcon 4s ease-in-out infinite 1s, iconGlow 3s ease-in-out infinite 1s; 
        }
        .orbital-icon-4 { 
            bottom: 10%; 
            left: 50%; 
            transform: translate(-50%, 50%); 
            animation: floatIcon 4s ease-in-out infinite 1.5s, iconGlow 3s ease-in-out infinite 1.5s; 
        }
        .orbital-icon-5 { 
            bottom: 30%; 
            left: 10%; 
            animation: floatIcon 4s ease-in-out infinite 2s, iconGlow 3s ease-in-out infinite 2s; 
        }
        .orbital-icon-6 { 
            top: 30%; 
            left: 10%; 
            animation: floatIcon 4s ease-in-out infinite 2.5s, iconGlow 3s ease-in-out infinite 2.5s; 
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(0, -20px); }
        }
        
        @keyframes iconGlow {
            0%, 100% { 
                box-shadow: 
                    0 10px 40px rgba(0, 0, 0, 0.6),
                    0 0 30px rgba(255, 107, 53, 0.3);
            }
            50% { 
                box-shadow: 
                    0 10px 40px rgba(0, 0, 0, 0.6),
                    0 0 50px rgba(255, 107, 53, 0.6);
            }
        }
        
        /* Enhanced content section with better styling */
        .what-we-do-content {
            padding: 20px 0;
        }
        
        .section-badge {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(255, 107, 53, 0.2));
            border: 1px solid rgba(255, 107, 53, 0.4);
            border-radius: 50px;
            color: var(--primary-orange);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
            animation: badgePulse 2s ease-in-out infinite;
        }
        
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
            50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
        }
        
        /* Enhanced gradient text effect */
        .gradient-text {
            background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
            display: inline-block;
        }
        
        @keyframes gradientShift {
            0%, 100% { 
                background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
                -webkit-background-clip: text;
            }
            50% { 
                background: linear-gradient(135deg, var(--primary-orange), var(--accent-blue));
                -webkit-background-clip: text;
            }
        }
        
        /* Enhanced checkmark features with better hover effects */
        .feature-checkmarks {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        
        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 12px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .check-item:hover {
            transform: translateX(10px);
            background: rgba(15, 23, 42, 0.8);
            border-color: rgba(255, 107, 53, 0.6);
            box-shadow: 0 5px 25px rgba(255, 107, 53, 0.3);
        }
        
        .check-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
            transition: all 0.4s ease;
        }
        
        .check-item:hover .check-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.8);
        }
        
        .check-item span {
            color: var(--text-light);
            font-weight: 500;
            font-size: 1rem;
        }
        
        /* Enhanced button with better glow effects */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.7);
        }
        
        .btn-primary-custom:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary-custom i {
            transition: transform 0.4s ease;
        }
        
        .btn-primary-custom:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .orbital-container {
                height: 500px;
                max-width: 500px;
            }
            
            .orbital-center {
                width: 140px;
                height: 140px;
            }
            
            .orbital-center-icon {
                font-size: 3rem;
            }
            
            .orbital-icon {
                width: 80px;
                height: 80px;
            }
            
            .orbital-icon i {
                font-size: 2rem;
            }
            
            .ring-1 {
                width: 320px;
                height: 320px;
            }
            
            .ring-2 {
                width: 420px;
                height: 420px;
            }
            
            .feature-checkmarks {
                grid-template-columns: 1fr;
            }
        }

        /* Services Section without images */
        .services-section {
            padding: 0px 0;
            background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
        }
        
        .service-card {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(10, 36, 99, 0.6));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 25px;
            padding: 3rem 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            height: 100%;
            text-align: center;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.7s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-orange);
            box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 36, 99, 0.8));
        }
        
        .service-icon-container {
            width: 110px;
            height: 110px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(255, 107, 53, 0.2));
            border: 3px solid rgba(255, 107, 53, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.5s ease;
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
        }
        
        .service-card:hover .service-icon-container {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
            border-color: var(--primary-orange);
        }
        
        .service-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .service-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: #ffffff;
        }
        
        .service-description {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .service-link {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .service-link:hover {
            gap: 1rem;
            color: var(--secondary-orange);
        }
        
        /* Enhanced buttons with orange/blue gradient */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            color: white;
            box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
            color: white;
        }
        
        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--primary-orange);
            padding: 16px 40px;
            border-radius: 50px;
            color: var(--primary-orange);
            transition: all 0.4s ease;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.05rem;
        }
        
        .btn-outline-custom:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
        }

        
        
        /* Updated contact form with blue/orange theme */
      
         .chatbot-widget { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
        
        .chatbot-toggle {
            width: 70px; height: 70px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border: none; box-shadow: 0 10px 45px rgba(255, 107, 53, 0.6);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: all 0.4s ease;
            animation: chatbotPulse 3s infinite, chatbotFloat 4s ease-in-out infinite;
            position: relative; padding: 0;
        }

        .chatbot-toggle img { width: 60px; height: 60px; object-fit: contain; }
        
        .chatbot-toggle::before, .chatbot-toggle::after {
            content: ''; position: absolute; top: 50%; left: 50%;
            width: 100%; height: 100%; border: 2px solid var(--primary-orange);
            border-radius: 50%; transform: translate(-50%, -50%);
            animation: chatbotRipple 2s infinite; opacity: 0;
        }
        .chatbot-toggle::after { animation-delay: 1s; }
        
        @keyframes chatbotPulse {
            0%, 100% { box-shadow: 0 10px 45px rgba(255, 107, 53, 0.6); }
            50% { box-shadow: 0 15px 70px rgba(255, 107, 53, 0.9), 0 0 50px rgba(59, 130, 246, 0.6); }
        }
        @keyframes chatbotFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
        @keyframes chatbotRipple { 0% { width: 100%; height: 100%; opacity: 0.6; } 100% { width: 200%; height: 200%; opacity: 0; } }
        .chatbot-toggle:hover { transform: scale(1.15) rotate(15deg); }
        
        .chatbot-window {
            position: absolute; bottom: 90px; right: 0; width: 380px; height: 450px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(10, 36, 99, 0.98));
            border-radius: 25px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
            display: none; flex-direction: column; overflow: hidden;
            border: 2px solid rgba(255, 107, 53, 0.4); backdrop-filter: blur(20px);
        }
        .chatbot-window.active { display: flex; animation: slideUp 0.3s ease-out; }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        .chatbot-header {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            padding: 20px; color: white; display: flex;
            justify-content: space-between; align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .chatbot-header h5 { margin: 0; font-size: 1.3rem; font-weight: 600; }
        .chatbot-header small { font-size: 0.85rem; opacity: 0.9; }
        .chatbot-header > div:last-child { display: flex; gap: 10px; }

        .chatbot-speak-toggle, .chatbot-close {
            background: rgba(255, 255, 255, 0.2); border: none; color: white;
            width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; font-size: 1.1rem;
        }
        .chatbot-speak-toggle:hover, .chatbot-close:hover {
            background: rgba(255, 255, 255, 0.35); transform: scale(1.1);
        }
        .chatbot-speak-toggle.muted { background: rgba(255, 0, 0, 0.4); }
        .chatbot-close:hover { transform: rotate(90deg); }
        
        .chatbot-messages {
            flex: 1; padding: 20px; overflow-y: auto;
            scrollbar-width: thin; scrollbar-color: var(--primary-orange) rgba(255, 255, 255, 0.1);
        }
        .chatbot-messages::-webkit-scrollbar { width: 6px; }
        .chatbot-messages::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
        .chatbot-messages::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }
        
        .message {
            margin-bottom: 1.2rem; display: flex; gap: 0.5rem;
            animation: messageSlide 0.3s ease-out;
        }
        @keyframes messageSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .message.bot { justify-content: flex-start; }
        .message.user { justify-content: flex-end; }
        
        .message-content {
            max-width: 75%; padding: 14px 18px; border-radius: 18px;
            font-size: 0.95rem; line-height: 1.6; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .message.bot .message-content {
            background: rgba(59, 130, 246, 0.25); color: #e2e8f0;
            border: 1px solid rgba(59, 130, 246, 0.4); border-radius: 18px 18px 18px 4px;
        }
        .message.user .message-content {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white; border-radius: 18px 18px 4px 18px;
        }
     
        .chatbot-input-area {
            display: flex; gap: 10px; padding: 20px;
            background: rgba(15, 23, 42, 0.8); border-top: 1px solid rgba(255, 107, 53, 0.3);
        }
        .chatbot-input {
            flex: 1; background: rgba(30, 41, 59, 0.9);
            border: 2px solid rgba(59, 130, 246, 0.3); border-radius: 25px;
            padding: 12px 20px; color: white; outline: none; font-size: 0.95rem;
            transition: all 0.3s;
        }
        .chatbot-input:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        .chatbot-input::placeholder { color: rgba(255, 255, 255, 0.5); }

        .chatbot-send-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border: none; color: white; width: 45px; height: 45px; border-radius: 50%;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; font-size: 1.1rem;
        }
        .chatbot-send-btn:hover {
            transform: scale(1.1); box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
        }
        
        .typing-indicator {
            display: flex; gap: 5px; padding: 14px 18px;
            background: rgba(59, 130, 246, 0.25); border-radius: 18px 18px 18px 4px;
            width: fit-content; border: 1px solid rgba(59, 130, 246, 0.4);
        }
        .typing-dot {
            width: 9px; height: 9px; background: var(--primary-orange);
            border-radius: 50%; animation: typingDot 1.4s infinite;
        }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typingDot {
            0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
            30% { opacity: 1; transform: scale(1.2); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .orbital-container {
                height: 500px;
                max-width: 500px;
            }
            
            .orbital-icon {
                width: 80px;
                height: 80px;
            }
            
            .orbital-icon i {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .chatbot-window {
                width: 90vw;
                right: 5vw;
            }
            
            .orbital-container {
                height: 400px;
                max-width: 400px;
            }
            
            .orbital-icon {
                width: 70px;
                height: 70px;
            }
            /* Responsive adjustments */
            @media (max-width: 768px) {
                .orbital-container {
                    height: 500px;
                    max-width: 500px;
                }
                
                .orbital-center {
                    width: 140px;
                    height: 140px;
                }
                
                .orbital-center-icon {
                    font-size: 3rem;
                }
                
                .orbital-icon {
                    width: 80px;
                    height: 80px;
                }
                
                .orbital-icon i {
                    font-size: 2rem;
                }
                
                .ring-1 {
                    width: 320px;
                    height: 320px;
                }
                
                .ring-2 {
                    width: 420px;
                    height: 420px;
                }
                
                .feature-checkmarks {
                    grid-template-columns: 1fr;
                }
            }
        }
            /* Footer styling */
        footer {
            background: #000000;
            border-top: 1px solid var(--border-color);
            padding: 4rem 0 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
        }

        .footer-col h5 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-col a:hover {
            color: var(--primary-orange);
            transform: translateX(5px);
            display: inline-block;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            margin-top: 2rem;
            text-align: center;
            color: var(--text-muted);
        }