:root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
        }

        .header-nav {
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(72, 235, 234, 0.1);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cta-button {
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::after {
            left: 100%;
        }

        .logo-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .mobile-menu {
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            border-top: 1px solid rgba(72, 235, 234, 0.1);
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .menu-button {
            border: 1px solid rgba(72, 235, 234, 0.3);
            transition: all 0.3s ease;
        }

        .menu-button:hover {
            border-color: var(--primary-cyan);
            background: rgba(72, 235, 234, 0.1);
        }

        /* Mobile Menu Position */
        .mobile-menu-position {
            top: calc(var(--ticker-height, 45px) + 75px);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .header-nav {
                padding: 0.5rem 0;
            }

            .mobile-menu-position {
                top: calc(35px + 70px);
            }

            .logo-text {
                font-size: 1.125rem;
            }
        }

        @media (max-width: 640px) {
            .mobile-menu-position {
                top: calc(35px + 68px);
            }

            .header-nav {
                padding: 0.25rem 0;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-position {
                top: calc(30px + 65px);
            }

            .logo-text {
                font-size: 1rem;
            }
        }
    </style>
    <style>
        :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
            --secondary-gradient: linear-gradient(45deg, rgba(72, 235, 234, 0.1), rgba(0, 83, 234, 0.1));
        }

        body {
            background: #0a1628;
            color: white;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-bg {
            background: var(--primary-gradient);
        }

        .hero-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(72, 235, 234, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 83, 234, 0.15) 0%, transparent 40%);
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(72, 235, 234, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(72, 235, 234, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 1;
        }

        .nav-blur {
            backdrop-filter: blur(10px);
            background: rgba(10, 22, 40, 0.8);
        }

        .feature-card {
            background: rgba(72, 235, 234, 0.05);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--primary-cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(72, 235, 234, 0.1);
        }

        .cta-button {
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
            transform: translateX(-100%);
        }

        .cta-button:hover::after {
            transform: translateX(100%);
            transition: transform 0.8s ease;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-gradient);
            filter: blur(80px);
            z-index: 0;
            opacity: 0.3;
        }

        .hero-code {
            font-family: monospace;
            color: var(--primary-cyan);
            opacity: 0.7;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .typing-text {
            border-right: 2px solid var(--primary-cyan);
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
            white-space: nowrap;
            overflow: hidden;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary-cyan) }
        }

        .stats-card {
            background: rgba(72, 235, 234, 0.05);
            border: 1px solid rgba(72, 235, 234, 0.1);
            backdrop-filter: blur(10px);
        }
		
		 :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
        }

        .stats-section {
            background: linear-gradient(to bottom, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.95));
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            backdrop-filter: blur(10px);
        }

        .stat-card {
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.05;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 0.1;
        }

        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, var(--primary-cyan) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
        }

        .glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-gradient);
            filter: blur(100px);
            opacity: 0.1;
            border-radius: 100%;
        }

        .counter {
            transition: all 0.3s ease;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: floatAnimation 6s ease-in-out infinite;
        }
		
		 .site-footer {
            background: #0a1628;
            padding-top: 8rem;
            position: relative;
        }

        .footer-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(72, 235, 234, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(72, 235, 234, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.2;
            pointer-events: none;
        }

        .glow-effect {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(72, 235, 234, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-link {
            position: relative;
            color: #94a3b8;
            transition: all 0.3s ease;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, rgb(72, 235, 234), rgb(0, 83, 234));
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: rgb(72, 235, 234);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(72, 235, 234, 0.1);
            color: rgb(72, 235, 234);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon:hover::before {
            opacity: 0.1;
        }

        .newsletter-input {
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: rgb(72, 235, 234);
            background: rgba(72, 235, 234, 0.05);
        }

        .footer-section {
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .marquee-container {
            position: relative;
            overflow: hidden;
            background: rgba(72, 235, 234, 0.03);
            padding: 2rem 0;
            margin: 4rem 0;
        }

        .marquee {
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }

        @keyframes marquee {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }
		
		  .contact-section {
            background: #0a1628;
        }

        /* Tab Design for Offices */
        .office-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .office-tab {
            padding: 1rem 2rem;
            background: rgba(72, 235, 234, 0.02);
            border: 1px solid rgba(72, 235, 234, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .office-tab.active {
            background: rgba(72, 235, 234, 0.1);
            border-color: rgb(72, 235, 234);
        }

        .office-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, rgb(72, 235, 234), rgb(0, 83, 234));
            transition: height 0.3s ease;
        }

        .office-tab.active::before {
            height: 100%;
        }

        /* Contact Form Design */
        .contact-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            position: relative;
        }

        .form-section {
            background: rgba(72, 235, 234, 0.02);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-input {
            width: 100%;
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            border-radius: 12px;
            padding: 1.25rem;
            color: white;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: rgb(72, 235, 234);
            background: rgba(72, 235, 234, 0.05);
        }

        .input-label {
            position: absolute;
            left: 1rem;
            top: 1.25rem;
            padding: 0 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            pointer-events: none;
            background: #0a1628;
        }

        .form-input:focus ~ .input-label,
        .form-input:not(:placeholder-shown) ~ .input-label {
            transform: translateY(-1.75rem) translateX(0.5rem) scale(0.85);
            color: rgb(72, 235, 234);
        }

        /* Office Details Design */
        .office-details {
            display: none;
            padding: 2rem;
            background: rgba(72, 235, 234, 0.02);
            border-radius: 24px;
        }

        .office-details.active {
            display: block;
        }

        .office-info {
            margin-bottom: 2rem;
        }

        .office-map {
            height: 200px;
            background: rgba(72, 235, 234, 0.05);
            border-radius: 12px;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .map-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(72, 235, 234, 0.1), rgba(0, 83, 234, 0.1));
        }

        .contact-button {
            background: linear-gradient(45deg, rgb(72, 235, 234), rgb(0, 83, 234));
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s ease;
        }

        .contact-button:hover::after {
            left: 100%;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(72, 235, 234, 0.03);
            border-radius: 12px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: rgba(72, 235, 234, 0.05);
            transform: translateX(10px);
        }

        .method-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(72, 235, 234, 0.1);
            border-radius: 10px;
            color: rgb(72, 235, 234);
        }
		.office-details {
            display: none; /* Hide all office details by default */
        }
        
        .office-details.active {
            display: block; /* Show only active office details */
        }

        .office-tab {
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .office-tab.active {
            opacity: 1;
            transform: translateY(-5px);
            background: rgba(72, 235, 234, 0.05);
            border-color: rgb(72, 235, 234);
        }
		
		    .tech-partners-section {
            background: #0a1628;
            min-height: 60vh;
        }

        .floating-partners {
            position: relative;
            width: 100%;
            height: 400px;
        }

        .partner-circle {
            position: absolute;
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .partner-circle::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 50%;
            padding: 2px;
            background: linear-gradient(45deg, rgba(72, 235, 234, 0.5), rgba(0, 83, 234, 0.5));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .partner-circle:hover::before {
            opacity: 1;
        }

        .partner-logo {
            width: 60%;
            height: 60%;
            object-fit: contain;
            filter: grayscale(100%) brightness(200%);
            transition: all 0.3s ease;
        }

        .partner-circle:hover .partner-logo {
            filter: grayscale(0%) brightness(100%);
            transform: scale(1.1);
        }

        /* Size and position variations */
        .circle-lg {
            width: 120px;
            height: 120px;
        }

        .circle-md {
            width: 100px;
            height: 100px;
        }

        .circle-sm {
            width: 80px;
            height: 80px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatReverse {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(20px); }
        }

        .tech-tag {
            position: absolute;
            padding: 0.5rem 1rem;
            background: rgba(72, 235, 234, 0.1);
            border: 1px solid rgba(72, 235, 234, 0.2);
            border-radius: 20px;
            font-size: 0.75rem;
            color: rgb(72, 235, 234);
            white-space: nowrap;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .partner-circle:hover .tech-tag {
            opacity: 1;
            transform: translateY(0);
        }

        .connection-line {
            position: absolute;
            background: linear-gradient(90deg, rgba(72, 235, 234, 0.2), rgba(0, 83, 234, 0.2));
            height: 1px;
            opacity: 0.3;
            transform-origin: left;
        }
		
		.circle-xl {
        width: 140px;
        height: 140px;
    }

    .circle-xs {
        width: 60px;
        height: 60px;
    }

    @keyframes floatDiagonal {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(10px, -10px); }
    }

    @keyframes floatDiagonalReverse {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-10px, -10px); }
    }

    /* Enhanced hover effect */
    .partner-circle:hover {
        box-shadow: 0 0 30px rgba(72, 235, 234, 0.2);
        z-index: 10;
    }

    .tech-category {
        position: absolute;
        font-size: 0.7rem;
        color: rgba(72, 235, 234, 0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
	
	
	
	
    .floating-partners {
        position: relative;
        width: 100%;
        height: 800px; /* Increased height for more spacing */
        margin: 4rem 0;
    }

    /* Modify connection lines to be more subtle */
    .connection-line {
        opacity: 0.15;
        height: 1px;
    }

    /* Adjust hover effect radius */
    .partner-circle:hover {
        z-index: 10;
    }
	
	  .video-testimonial {
        background: rgba(72, 235, 234, 0.02);
        border: 1px solid rgba(72, 235, 234, 0.1);
        transition: all 0.3s ease;
    }

    .video-testimonial:hover {
        background: rgba(72, 235, 234, 0.05);
        border-color: rgba(72, 235, 234, 0.3);
        transform: translateX(10px);
    }

    .active-video {
        background: rgba(72, 235, 234, 0.05);
        border-color: rgb(72, 235, 234);
    }

    .play-button {
        width: 60px;
        height: 60px;
        background: rgba(72, 235, 234, 0.1);
        border: 2px solid rgba(72, 235, 234, 0.5);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .play-button::before {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        background: rgba(72, 235, 234, 0.1);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(1.5); opacity: 0; }
    }
	
	
	 .testimonials-section {
            background: #0a1628;
        }

        .video-testimonial {
            position: relative;
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.4s ease;
        }

        .video-testimonial::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(72, 235, 234, 0.1), rgba(0, 83, 234, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .video-testimonial:hover::before {
            opacity: 1;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(72, 235, 234, 0.1);
            border: 2px solid rgba(72, 235, 234, 0.5);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .play-button::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: rgba(72, 235, 234, 0.1);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .testimonial-card {
            background: rgba(72, 235, 234, 0.02);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(72, 235, 234, 0.3);
        }

        .quote-mark {
            font-size: 120px;
            line-height: 1;
            font-family: serif;
            position: absolute;
            top: -20px;
            right: 20px;
            opacity: 0.1;
            color: rgb(72, 235, 234);
        }

        .active-video {
            border-color: rgb(72, 235, 234);
        }
		
		
	  .feature-card:nth-child(even) {
        animation-duration: 7s;
    }
    
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .feature-card:hover .stat-value {
        background-size: 200% auto;
        animation: gradientShift 3s ease infinite;
    }

    /* Enhanced hover effect for icons */
    .feature-icon i {
        transition: all 0.5s ease;
    }

    .feature-card:hover .feature-icon i {
        transform: rotate(360deg) scale(1.2);
        filter: drop-shadow(0 0 10px rgba(72, 235, 234, 0.5));
    }
	
	 .why-choose-us-section {
            background: #0a1628;
        }

        .feature-card {
            background: rgba(72, 235, 234, 0.02);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(72, 235, 234, 0.1),
                rgba(0, 83, 234, 0.1)
            );
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            position: relative;
            transition: all 0.5s ease;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(72, 235, 234, 0.2) 0%, transparent 70%);
            filter: blur(10px);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover .feature-icon::after {
            opacity: 1;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .progress-line {
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(72, 235, 234, 1), transparent);
            transition: width 0.5s ease;
        }

        .feature-card:hover .progress-line {
            width: 100%;
        }

        .stat-value {
            background: linear-gradient(90deg, #48EBEA, #0053EA);
            -webkit-background-clip: text;
            color: transparent;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .feature-card:hover .stat-value {
            opacity: 1;
            transform: translateY(0);
        }

        .hover-points li {
            position: relative;
            padding-left: 20px;
            opacity: 0.7;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .hover-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            background: rgba(72, 235, 234, 0.5);
            border-radius: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .feature-card:hover .hover-points li {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-card:hover .hover-points li::before {
            background: rgb(72, 235, 234);
            box-shadow: 0 0 10px rgba(72, 235, 234, 0.5);
        }

        .number-badge {
            font-family: 'Courier New', monospace;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            opacity: 0.1;
            color: rgba(72, 235, 234, 0.5);
            transition: all 0.5s ease;
        }

        .feature-card:hover .number-badge {
            opacity: 0.2;
            transform: scale(1.2);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(72, 235, 234, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(72, 235, 234, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
            pointer-events: none;
        }
		
		        :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
        }

        .services-section {
            background-color: #0a1628;
        }

        .service-card {
            width: 280px;
            height: 200px;
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card.expanded {
            width: 100%;
            height: 400px;
            z-index: 50;
            background: rgba(72, 235, 234, 0.05);
        }

        .service-details {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 2rem;
            transform: translateY(20px);
        }

        .service-card.expanded .service-details {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .service-icon {
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            color: var(--primary-cyan);
        }

        .feature-item {
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-card.expanded .feature-item {
            transform: translateX(0);
            opacity: 1;
        }

        .feature-item:nth-child(1) { transition-delay: 0.1s; }
        .feature-item:nth-child(2) { transition-delay: 0.2s; }
        .feature-item:nth-child(3) { transition-delay: 0.3s; }

        .tech-tag {
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-card.expanded .tech-tag {
            transform: translateY(0);
            opacity: 1;
        }

        .service-number {
            font-family: monospace;
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-number {
            color: var(--primary-cyan);
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-card.expanded .close-btn {
            opacity: 1;
        }
		
		
		
		
		
		
		
		 :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
        }
	 .domains-section {
            background-color: #0a1628;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .domain-card {
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .domain-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyan);
            background: rgba(72, 235, 234, 0.05);
        }

        .domain-icon {
            transition: all 0.4s ease;
            filter: drop-shadow(0 0 10px rgba(72, 235, 234, 0.3));
        }

        .domain-card:hover .domain-icon {
            transform: scale(1.1);
            color: var(--primary-cyan);
        }

        .capability-pill {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .capability-pill:hover {
            background: rgba(72, 235, 234, 0.2);
            transform: translateX(10px);
        }

        .tech-chip {
            transition: all 0.3s ease;
        }

        .domain-card:hover .tech-chip {
            background: rgba(72, 235, 234, 0.15);
            border-color: var(--primary-cyan);
        }

        .progress-bar {
            height: 4px;
            background: rgba(72, 235, 234, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
            transform-origin: left;
            animation: fillProgress 1.5s ease-out forwards;
        }

        @keyframes fillProgress {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        .domain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .glow-effect {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.2;
            background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .grain-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
		
		
		
		
		
		
		
		
		  :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
        }

        .stats-section {
            background: linear-gradient(to bottom, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.95));
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            background: rgba(72, 235, 234, 0.03);
            border: 1px solid rgba(72, 235, 234, 0.1);
            backdrop-filter: blur(10px);
        }

        .stat-card {
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.05;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 0.1;
        }

        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, var(--primary-cyan) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
        }

        .glow-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-gradient);
            filter: blur(100px);
            opacity: 0.1;
            border-radius: 100%;
        }

        .counter {
            transition: all 0.3s ease;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: floatAnimation 6s ease-in-out infinite;
        }
		
		
		
		
		:root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
            --secondary-gradient: linear-gradient(45deg, rgba(72, 235, 234, 0.1), rgba(0, 83, 234, 0.1));
        }

        body {
            background: #0a1628;
            color: white;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-bg {
            background: var(--primary-gradient);
        }

        .hero-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(72, 235, 234, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 83, 234, 0.15) 0%, transparent 40%);
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(72, 235, 234, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(72, 235, 234, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 1;
        }

        .nav-blur {
            backdrop-filter: blur(10px);
            background: rgba(10, 22, 40, 0.8);
        }

        .feature-card {
            background: rgba(72, 235, 234, 0.05);
            border: 1px solid rgba(72, 235, 234, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--primary-cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(72, 235, 234, 0.1);
        }

        .cta-button {
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
            transform: translateX(-100%);
        }

        .cta-button:hover::after {
            transform: translateX(100%);
            transition: transform 0.8s ease;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-gradient);
            filter: blur(80px);
            z-index: 0;
            opacity: 0.3;
        }

        .hero-code {
            font-family: monospace;
            color: var(--primary-cyan);
            opacity: 0.7;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .typing-text {
            border-right: 2px solid var(--primary-cyan);
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
            white-space: nowrap;
            overflow: hidden;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary-cyan) }
        }

        .stats-card {
            background: rgba(72, 235, 234, 0.05);
            border: 1px solid rgba(72, 235, 234, 0.1);
            backdrop-filter: blur(10px);
        }
		
		
		
		
		 :root {
            --primary-cyan: rgb(72, 235, 234);
            --primary-blue: rgb(0, 83, 234);
            --primary-gradient: linear-gradient(135deg, rgb(72, 235, 234), rgb(0, 83, 234));
        }

        .header-nav {
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(72, 235, 234, 0.1);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cta-button {
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::after {
            left: 100%;
        }

        .logo-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .mobile-menu {
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            border-top: 1px solid rgba(72, 235, 234, 0.1);
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .menu-button {
            border: 1px solid rgba(72, 235, 234, 0.3);
            transition: all 0.3s ease;
        }

        .menu-button:hover {
            border-color: var(--primary-cyan);
            background: rgba(72, 235, 234, 0.1);
        }

        /* Mobile Menu Position */
        .mobile-menu-position {
            top: calc(var(--ticker-height, 45px) + 75px);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .header-nav {
                padding: 0.5rem 0;
            }

            .mobile-menu-position {
                top: calc(35px + 70px);
            }

            .logo-text {
                font-size: 1.125rem;
            }
        }

        @media (max-width: 640px) {
            .mobile-menu-position {
                top: calc(35px + 68px);
            }

            .header-nav {
                padding: 0.25rem 0;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-position {
                top: calc(30px + 65px);
            }

            .logo-text {
                font-size: 1rem;
            }
        }
		
		
		
		
		
		
		
		
		
/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Header and Navigation Mobile Adjustments */
@media (max-width: 1024px) {
    .header-nav {
        margin-top: var(--ticker-height, 45px);
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Tablet and Below */
@media (max-width: 768px) {
    .header-nav {
        margin-top: 35px;
    }

    .logo-text {
        white-space: nowrap;
    }

    .mobile-menu {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 640px) {
    .header-nav {
        margin-top: 35px;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .mobile-menu {
        top: 70px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header-nav {
        margin-top: 30px;
    }

    .logo-text {
        font-size: 0.875rem !important;
    }

    .menu-button {
        padding: 0.375rem;
    }

    .menu-button i {
        font-size: 1.125rem;
    }

    .mobile-menu {
        top: 65px !important;
    }

    .nav-link {
        font-size: 0.9375rem;
        padding: 0.5rem 0 !important;
    }

    .cta-button {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .logo-text {
        font-size: 0.75rem !important;
    }

    .mobile-menu {
        top: 60px !important;
    }

    .nav-link {
        font-size: 0.875rem;
    }
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch Target Improvements for Mobile */
@media (max-width: 768px) {
    .nav-link,
    .menu-button,
    .cta-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu .nav-link {
        padding: 0.75rem 0;
        width: 100%;
    }
}

/* ========================================
   HERO SECTION MOBILE FIX
   ======================================== */

.hero-section {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        min-height: calc(100vh - 35px);
    }
    
    .hero-section .container {
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 110px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-section h1 {
        line-height: 1.2;
    }
    
    .hero-section .hero-shape {
        opacity: 0.2;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding-top: 90px;
    }
}
