:root {
            --primary: #0066ff;
            --primary-dark: #0044cc;
            --secondary: #00f2ff;
            --accent: #ff3366;
            --dark: #050511;
            --dark-light: #0a0a1a;
            --light: #f5f5f5;
            --gray: #888;
            --success: #27ae60;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Smooth scrolling for the entire document */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

        /* Global animation classes for scroll effects with mobile optimization */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .bounce-in {
            opacity: 0;
            transform: translateY(30px) scale(0.8);
            transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .bounce-in.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            .fade-in,
            .slide-in-left,
            .slide-in-right,
            .scale-in,
            .bounce-in {
                transition: opacity 0.3s ease;
                transform: none;
            }

            .fade-in.visible,
            .slide-in-left.visible,
            .slide-in-right.visible,
            .scale-in.visible,
            .bounce-in.visible {
                transform: none;
            }
        }



        /* Mobile animation optimizations */
        @media (max-width: 768px) {

            .fade-in,
            .slide-in-left,
            .slide-in-right,
            .scale-in,
            .bounce-in {
                transition-duration: 0.4s;
                transform: translateY(15px);
            }

            .slide-in-left {
                transform: translateX(-15px);
            }

            .slide-in-right {
                transform: translateX(15px);
            }

            .scale-in {
                transform: scale(0.95);
            }

            .bounce-in {
                transform: translateY(15px) scale(0.9);
                transition: opacity 0.4s ease, transform 0.4s ease;
            }
        }

        /* Prevent animation interference with layout */
        body:not(.animations-ready) .fade-in,
        body:not(.animations-ready) .slide-in-left,
        body:not(.animations-ready) .slide-in-right,
        body:not(.animations-ready) .scale-in,
        body:not(.animations-ready) .bounce-in {
            opacity: 1;
            transform: none;
            transition: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title span {
            color: var(--secondary);
            position: relative;
        }

        .section-title span.pulse {
            animation: pulse 2s infinite;
        }

        /* @keyframes pulse {
            0% {
                text-shadow: 0 0 5px var(--secondary);
            }

            50% {
                text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
            }

            100% {
                text-shadow: 0 0 5px var(--secondary);
            }
        } */

        .hero-subtitle {
            text-align: center;
            font-size: 1.2rem;
            background-color: rgba(15, 23, 42, 0.85);
            color: var(--gray);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Consolidated Mobile Responsive Styles */
        @media (max-width: 768px) {

            /* Ensure consistent container padding */
            .container {
                padding: 0 15px;
            }

            /* Hero section adjustments for fixed header */
            .hero {
                margin-top: 70px;
                height: calc(100vh - 70px);
                min-height: 400px;
            }

            /* Fix any potential z-index conflicts */
            .hero-content {
                z-index: 1;
                padding: 0 15px;
                max-width: 100%;
            }

            /* Section spacing - remove excessive gaps */
            .section-padding {
                padding: 40px 0;
            }

            .about {
                padding: 40px 0 20px 0;
            }

            .services-section {
                padding: 20px 0 40px 0;
            }

            .services-cta {
                margin-top: 25px;
            }

            .stats {
                padding: 40px 0;
            }

            .industries {
                padding: 40px 0;
            }

            .testimonials-section {
                padding: 40px 0;
            }

            .contact {
                padding: 40px 0;
            }

            .footer {
                padding: 40px 0 20px;
            }

            /* Adjust section titles for mobile */
            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .section-header h2,
            .services-header h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            /* Grid adjustments */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .industries-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

        }

        /* Very small screen optimizations */
        @media (max-width: 480px) {
            /* Hero adjustments */
            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .secondary-button {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            /* Tighter spacing for small screens */
            .section-padding {
                padding: 30px 0;
            }

            .about {
                padding: 30px 0 0 0;
            }

            .services-section {
                padding: 15px 0 30px 0;
            }

            .stats,
            .industries,
            .testimonials-section,
            .contact {
                padding: 30px 0;
            }

            .services-cta {
                margin-top: 20px;
            }

            .section-header {
                margin-bottom: 20px;
            }

            .footer {
                padding: 30px 0 15px;
            }

            /* Grid adjustments for very small screens */
            .stats-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .services-grid,
            .industries-container {
                gap: 15px;
            }
        }

        /* Fix viewport height issues on mobile */
        .hero {
            height: 100vh;
            height: calc(var(--vh, 1vh) * 100);
            min-height: 500px;
        }

        /* Hero Section with Video Background and Slider */
        .hero {
            position: relative;
            height: 100vh;
            height: calc(var(--vh, 1vh) * 100);
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to top, 
                #0f172a 0%,
                #0f172a 20%, 
                rgba(15, 23, 42, 0.5) 60%, 
                transparent 100%);
            z-index: 5;
            pointer-events: none;
        }

        /* Hero Background Videos */
        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.4) saturate(1.2);
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-bg-video.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(5, 5, 17, 0.7) 0%,
                    rgba(15, 23, 42, 0.6) 50%,
                    rgba(5, 5, 17, 0.8) 100%);
            z-index: 1;
            animation: overlayPulse 8s ease-in-out infinite alternate;
        }

        @keyframes overlayPulse {
            0% {
                background: linear-gradient(135deg,
                        rgba(5, 5, 17, 0.7) 0%,
                        rgba(15, 23, 42, 0.6) 50%,
                        rgba(5, 5, 17, 0.8) 100%);
            }

            100% {
                background: linear-gradient(135deg,
                        rgba(5, 5, 17, 0.6) 0%,
                        rgba(15, 23, 42, 0.5) 50%,
                        rgba(5, 5, 17, 0.7) 100%);
            }
        }

        /* Slider Styles */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
            z-index: 2;
        }

        .slide.prev {
            transform: translateX(-100%);
            z-index: 1;
        }

        /* Hero Content */
        .hero-content {
            max-width: 1160px;
            padding: 0 20px;
            animation: heroEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 4; /* Increased z-index */
        }

        @keyframes heroEntrance {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.95);
                filter: blur(3px);
            }

            50% {
                opacity: 0.7;
                transform: translateY(20px) scale(0.98);
                filter: blur(1px);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light);
            /* animation: titleReveal 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both,
                titleGlow 4s ease-in-out 2.5s infinite;
            text-shadow: 0 4px 20px rgba(0, 242, 255, 0.3); */
        }

        @keyframes titleGlow {

            0%,
            100% {
                text-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
            }

            50% {
                text-shadow: 0 4px 25px rgba(0, 242, 255, 0.6),
                    0 0 35px rgba(0, 242, 255, 0.4);
            }
        }

        @keyframes titleReveal {
            0% {
                opacity: 0;
                transform: translateX(-100px) rotateY(-30deg);
                text-shadow: none;
            }

            60% {
                opacity: 0.8;
                transform: translateX(10px) rotateY(5deg);
            }

            100% {
                opacity: 1;
                transform: translateX(0) rotateY(0);
                text-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
            }
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--light);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: textSlideIn 1.5s ease-out 0.8s both;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        @keyframes textSlideIn {
            0% {
                opacity: 0;
                transform: translateX(50px);
                text-shadow: none;
            }

            70% {
                opacity: 0.9;
                transform: translateX(-5px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            }
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: buttonsAppear 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s both;
        }

        @keyframes buttonsAppear {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.8);
            }

            60% {
                opacity: 0.8;
                transform: translateY(-5px) scale(1.05);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 4;
            transform: translateY(-50%);
        }

        .prev-btn,
        .next-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(0, 242, 255, 0.3);
            color: var(--secondary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 1.2rem;
        }

        .prev-btn:hover,
        .next-btn:hover {
            background: rgba(0, 242, 255, 0.2);
            border-color: var(--secondary);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }

        /* Enhanced Secondary Button */
        .secondary-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .secondary-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .secondary-button:hover::before {
            left: 100%;
        }

        .secondary-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        /* About Section */
        .about {
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }

        .about-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.4);
            mask-image: linear-gradient(
                to bottom,
                transparent 0%,
                black 15%,
                black 85%,
                transparent 100%
            );
            -webkit-mask-image: linear-gradient(
                to bottom,
                transparent 0%,
                black 15%,
                black 85%,
                transparent 100%
            );
        }

        .about-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(5, 5, 17, 0.7) 0%,
                    rgba(15, 23, 42, 0.6) 50%,
                    rgba(5, 5, 17, 0.8) 100%);
            z-index: 1;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, #0f172a 0%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, #0f172a 0%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }

        .about .container {
            position: relative;
            z-index: 4;
        }

        .about-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-content {
            flex: 1 1 100%;
            min-width: 280px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .about-content h2 span {
            color: var(--secondary);
        }

        .about-content p {
            text-align: center;
            margin: 12px 0;
            line-height: 1.6;
            color: var(--light);
        }

        /* Services Section */
        .services-section {
            background: rgba(15, 23, 42, 0.85);
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-header h2 {
            font-size: 2.5rem;
            color: var(--light);
            margin-bottom: 1rem;
        }

        .services-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 380px;
        }

        .service-card:active {
            transform: scale(0.98);
        }

        .service-card:active::before {
            background: linear-gradient(135deg,
                    rgba(0, 242, 255, 0.3) 0%,
                    rgba(0, 102, 255, 0.4) 50%,
                    rgba(0, 242, 255, 0.3) 100%);
            left: 0;
            opacity: 1;
            animation: clickFade 0.6s ease-out;
        }

        @keyframes clickFade {
            0% {
                opacity: 1;
                background: linear-gradient(135deg,
                        rgba(0, 242, 255, 0.5) 0%,
                        rgba(0, 102, 255, 0.6) 50%,
                        rgba(0, 242, 255, 0.5) 100%);
            }

            100% {
                opacity: 0;
                background: linear-gradient(135deg,
                        rgba(0, 242, 255, 0.1) 0%,
                        rgba(0, 102, 255, 0.2) 50%,
                        rgba(0, 242, 255, 0.1) 100%);
            }
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    transparent 0%,
                    rgba(0, 242, 255, 0.08) 25%,
                    rgba(0, 102, 255, 0.12) 50%,
                    rgba(0, 242, 255, 0.08) 75%,
                    transparent 100%);
            transition: left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -25px;
            right: -25px;
            width: 98px;
            height: 98px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: 3px solid rgba(200, 236, 0, 0.466);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.3) rotate(0deg);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 10;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }

        .service-card:hover::after {
            opacity: 1;
            transform: scale(1) rotate(360deg);
            animation: spinCircle 3s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.8),
                0 0 50px rgba(0, 102, 255, 0.4);
        }

        @keyframes spinCircle {
            0% {
                transform: scale(1) rotate(0deg);
            }

            100% {
                transform: scale(1) rotate(360deg);
            }
        }

        .service-card:hover::before {
            left: 100%;
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px) translateZ(20px);
            box-shadow:
                0 25px 50px rgba(0, 102, 255, 0.15),
                0 10px 30px rgba(0, 242, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 242, 255, 0.3);
            background: rgba(10, 10, 26, 0.85);
            backdrop-filter: blur(15px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--dark);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon {
            transform: translateY(-8px) rotateY(360deg) scale(1.15);
            box-shadow:
                0 15px 35px rgba(0, 242, 255, 0.4),
                0 5px 15px rgba(0, 102, 255, 0.3);
            background: linear-gradient(135deg,
                    var(--secondary),
                    var(--primary),
                    var(--secondary));
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card:hover h3 {
            transform: translateY(-5px);
            text-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
            color: #ffffff;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
            line-height: 1.6;
            flex-grow: 1;
            min-height: 90px;
            display: flex;
            align-items: center;
        }

        .service-card:hover p {
            color: var(--light);
            transform: translateY(-3px);
        }

        .service-link {
            display: inline-block;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid transparent;
            margin-top: auto;
            align-self: center;
        }

        .service-link:hover {
            color: var(--secondary);
            background: rgba(0, 242, 255, 0.1);
            border-color: rgba(0, 242, 255, 0.3);
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* Stats Section */
        .stats {
            position: relative;
            padding: 80px 0;
            overflow: hidden;
        }

        .stats-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .stats-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(15, 23, 42, 0.85); */
            z-index: 1;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-box {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(15px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .stat-box:active {
            transform: scale(0.98);
        }

        .stat-box:active::before {
            background: linear-gradient(135deg,
                    rgba(0, 242, 255, 0.3) 0%,
                    rgba(0, 102, 255, 0.4) 50%,
                    rgba(0, 242, 255, 0.3) 100%);
            left: 0;
            opacity: 1;
            animation: clickFade 0.6s ease-out;
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    transparent 0%,
                    rgba(0, 242, 255, 0.1) 25%,
                    rgba(0, 102, 255, 0.15) 50%,
                    rgba(0, 242, 255, 0.1) 75%,
                    transparent 100%);
            transition: left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            z-index: 1;
        }

        .stat-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2;
        }

        .stat-box:hover::before {
            left: 100%;
            opacity: 1;
        }

        .stat-box:hover::after {
            transform: scaleX(1);
        }

        .stat-box:hover {
            transform: translateY(-15px) translateZ(20px) scale(1.05);
            box-shadow:
                0 25px 50px rgba(0, 242, 255, 0.25),
                0 10px 30px rgba(0, 102, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(0, 242, 255, 0.4);
            backdrop-filter: blur(20px);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 5;
        }

        .stat-box:hover .stat-icon {
            transform: translateY(-8px) rotateY(360deg) scale(1.25);
            text-shadow:
                0 0 25px rgba(0, 242, 255, 0.8),
                0 0 50px rgba(0, 242, 255, 0.4);
            color: #ffffff;
        }

        .stat-count {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 10px;
            position: relative;
            z-index: 5;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .stat-box:hover .stat-number {
            color: var(--secondary);
            text-shadow:
                0 0 20px rgba(0, 242, 255, 0.6),
                0 0 40px rgba(0, 242, 255, 0.3);
            transform: translateY(-3px) scale(1.05);
        }

        .stat-count i {
            color: var(--secondary);
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 5;
        }

        .stat-box:hover .stat-count i {
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
            transform: translateY(-2px);
        }

        .stat-title {
            color: var(--gray);
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 5;
        }

        .stat-box:hover .stat-title {
            color: var(--light);
            transform: translateY(-2px);
        }

        /* Industries Section */
        .industries {
            padding: 80px 0;
            background-color: rgba(15, 23, 42, 0.85);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--light);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .industries-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .industry-card {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            position: relative;
            overflow: visible;
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .industry-card:active {
            transform: scale(0.98);
        }

        .industry-card:active::before {
            background: linear-gradient(135deg,
                    rgba(0, 242, 255, 0.3) 0%,
                    rgba(0, 102, 255, 0.4) 50%,
                    rgba(0, 242, 255, 0.3) 100%);
            opacity: 1;
            animation: clickFade 0.6s ease-out;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(0, 242, 255, 0.02) 0%,
                    rgba(0, 102, 255, 0.05) 50%,
                    rgba(0, 242, 255, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .industry-card::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.3) rotate(0deg);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 10;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }

        .industry-card:hover::before {
            opacity: 1;
        }

        .industry-card:hover::after {
            opacity: 1;
            transform: scale(1) rotate(360deg);
            animation: spinCircle 3s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.8),
                0 0 50px rgba(0, 102, 255, 0.4);
        }

        .industry-card:hover {
            transform: translateY(-10px) translateZ(15px);
            box-shadow:
                0 20px 40px rgba(0, 102, 255, 0.2),
                0 8px 25px rgba(0, 242, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-color: rgba(0, 242, 255, 0.3);
            background: rgba(10, 10, 26, 0.85);
        }

        .industry-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--dark);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
        }

        .industry-card:hover .industry-icon {
            transform: translateY(-8px) rotateZ(360deg) scale(1.1);
            box-shadow:
                0 12px 30px rgba(0, 242, 255, 0.35),
                0 5px 15px rgba(0, 102, 255, 0.25);
            background: linear-gradient(135deg,
                    var(--secondary),
                    var(--primary),
                    var(--secondary));
        }

        .industry-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .industry-card:hover h3 {
            color: #ffffff;
            transform: translateY(-3px);
            text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
        }

        .industry-card p {
            color: var(--gray);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
            line-height: 1.6;
        }

        .industry-card:hover p {
            color: var(--light);
            transform: translateY(-2px);
        }


        /* Section */
        .testimonials-section {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        /* Continuous Scroll Container */
        .testimonials-container {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .testimonials-wrapper {
            display: flex;
            animation: scroll-left 18s linear infinite;
            gap: 25px;
        }

        /* Testimonial Card */
        .testimonial-card {
            min-width: 350px;
            max-width: 350px;
            height: 350px;
            /* SAME HEIGHT FOR ALL */
            background: rgba(15, 23, 42, 0.85);
            border-radius: 14px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Inner Content */
        .testimonial-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .quote-icon {
            font-size: 25px;
            color: #ff8c00;
            margin-bottom: 10px;
        }

        /* Name, Position */
        .client-name {
            font-size: 20px;
            font-weight: bold;
            margin: 0;
        }

        .client-position {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        /* Paragraph */
        .testimonial-quote {
            flex-grow: 1;
            font-size: 15px;
            color: white;
            line-height: 1.5;
        }

        /* Stars */
        .rating {
            margin-top: 15px;
        }

        .rating i {
            color: #0513d1;
        }

        /* Animation */
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }


        /* Contact Section */
        .contact {
            padding: 70px 0;
            background-color: rgba(15, 23, 42, 0.85);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--dark);
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--light);
        }

        .contact-text a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--secondary);
        }

        .social-links {
            margin-top: 20px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f5f6fa;
            border-radius: 50%;
            color: var(--primary);
            font-size: 1.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.08);
            text-decoration: none;
            /* Remove mobile tap highlight */
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
            /* Prevent focus outline on click */
            outline: none;
        }

        .social-links a:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 16px rgba(52, 152, 219, 0.18);
            transform: translateY(-2px);
        }

        /* Remove any active/focus states that cause square highlights */
        .social-links a:active,
        .social-links a:focus {
            background: var(--primary);
            color: #fff;
            transform: scale(0.95);
            box-shadow: 0 2px 8px rgba(52, 152, 219, 0.18);
            outline: none;
        }

        .contact-form {
            background: rgba(15, 23, 42, 0.85);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--light);
            font-weight: 500;
        }






        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border: 4px solid transparent;
            margin: 2px 8px;
            border-radius: 4px;
        }

        .dropdown-content a:hover {
            background: rgba(37, 99, 235, 0.15);
            color: var(--secondary);
            border: 1px solid var(--secondary);
            transform: translateX(5px);
        }



        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

       

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero {
                height: 100vh;
                min-height: 600px;
            }

            /* Slider navigation for tablets */
            .slider-nav {
                padding: 0 20px;
            }

            .prev-btn,
            .next-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            /* Dropdown styles handled by allDropdown.css */

            /* Footer dropdown */
            .footer-dropdown-content {
                display: none;
                margin-left: 15px;
            }

            .footer-dropdown.open .footer-dropdown-content {
                display: block;
            }

            /* Slider navigation */
            .slider-nav {
                padding: 0 15px;
            }

            .prev-btn,
            .next-btn {
                display: none;
            }

            /* Hero typography */
            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .hero-buttons {
                margin-bottom: 99px;
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 100vh;
                min-height: 500px;
                display: flex;
                align-items: center;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .services-grid,
            .industries-container,
            .testimonials-container {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: 350px;
            }

            .service-card h3 {
                font-size: 1.2rem;
                min-height: 45px;
            }

            .service-card p {
                font-size: 0.95rem;
                min-height: 85px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .hero-content {
                padding: 0 10px;
                text-align: center;
            }
        }

        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .secondary-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .service-card {
                min-height: 340px;
                padding: 25px;
            }

            .service-card h3 {
                font-size: 1.1rem;
                min-height: 42px;
            }

            .service-card p {
                font-size: 0.9rem;
                min-height: 80px;
            }

            .service-link {
                font-size: 0.9rem;
                padding: 7px 14px;
            }
        }

        /* Footer Dropdown Styles */
        .footer-dropdown-content {
            display: none;
            margin-left: 15px;
        }

        .footer-dropdown.open .footer-dropdown-content {
            display: block;
        }

        .footer-dropdown-header {
            display: flex;
            color: var(--gray);
            justify-content: space-between;
            cursor: pointer;
            margin: 5px 0;
        }

        .footer-dropdown-header:hover {
            color: var(--secondary);
        }

        /* SEO Elements */
        .seo-keywords {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Additional Professional Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes glow {

            0%,
            100% {
                box-shadow: 0 0 5px var(--secondary);
            }

            50% {
                box-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        /* Enhanced hover effects for buttons */
        .submit-btn {
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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;
        }

        .submit-btn:hover::after {
            left: 100%;
        }

        /* Floating animation for scroll arrow */
        .scroll-arrow {
            animation: float 2s ease-in-out infinite;
        }

        /* Pulse animation for important elements */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Smooth page transitions */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Enhanced focus states for accessibility */
        a:focus,
        button:focus,
        input:focus,
        textarea:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
            transition: outline 0.2s ease;
        }

        /* About Scroll Section Styles */
        .about-scroll-section {
            padding: 80px 0;
            background: rgba(15, 23, 42, 0.85);
            position: relative;
            overflow: hidden;
        }

        .scroll-container {
            position: relative;
            height: 80vh;
            max-height: 800px;
        }

        .scroll-content-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.8);
            transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
        }

        .scroll-content-item.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .scroll-content {
            text-align: center;
            padding: 40px;
            margin-bottom: 40px;
            background: rgba(10, 10, 26, 0.8);
            border-radius: 20px;
            border: 1px solid rgba(0, 242, 255, 0.2);
            backdrop-filter: blur(15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .scroll-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            margin-top: 50px;
            color: var(--light);
            font-family: 'Orbitron', sans-serif;
        }

        .scroll-content h2 em {
            color: var(--secondary);
            font-style: normal;
            margin-top: 20px;
        }

        .scroll-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .scroll-text img {
            max-width: 300px;
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .scroll-text img:hover {
            transform: scale(1.05);
        }

        .scroll-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 15px;
            max-width: 700px;
        }

        .scroll-text ul {
            list-style: none;
            padding: 0;
            max-width: 600px;
        }

        .scroll-text ul li {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            text-align: left;
        }

        .scroll-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        

        .scroll-text code {
            background: rgba(0, 242, 255, 0.1);
            color: var(--secondary);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }

        /* Auto-play animation */
        .scroll-container::before {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            z-index: 10;
        }

        .scroll-container::after {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            z-index: 11;
            animation: progressBar 15s linear infinite;
        }

        @keyframes progressBar {
            0% {
                width: 0;
            }

            20% {
                width: 40px;
            }

            40% {
                width: 80px;
            }

            60% {
                width: 120px;
            }

            80% {
                width: 160px;
            }

            100% {
                width: 200px;
            }
        }

        /* Additional Responsive Adjustments */
        @media (max-width: 768px) {
            /* Slider navigation - show on tablets */
            .prev-btn,
            .next-btn {
                margin-bottom: 130px;
                display: flex;
                width: 20px;
                height: 20px;
                font-size: 1rem;
                background: rgba(255, 255, 255, 0.15);
                border: 1px solid rgba(0, 242, 255, 0.4);
            }

            .dropdown-scroll {
                max-height: 400px;
            }

            /* Scroll section mobile styles */
            .scroll-container {
                height: 70vh;
                max-height: 600px;
            }

            .scroll-content {
                padding: 30px 20px;
                margin: 0 20px;
            }

            .scroll-content h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .scroll-text img {
                max-width: 250px;
            }

            .scroll-text p {
                font-size: 1rem;
            }

            .scroll-text ul li {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .scroll-container {
                height: 60vh;
                max-height: 500px;
            }

            .scroll-content {
                padding: 20px 15px;
                margin: 0 15px;
                margin-bottom: 30px;
            }

            .scroll-content h2 {
                font-size: 1.5rem;
            }

            .scroll-text img {
                max-width: 200px;
            }

            .scroll-text p {
                font-size: 0.9rem;
            }
        }

        /* Loading animation */
        .loading {
            position: relative;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Book Call Button - Fixed Position */
        .book-call-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse-glow 2s infinite;
        }

        .book-call-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 102, 255, 0.6);
        }

        .book-call-btn i {
            font-size: 1.2rem;
            transform: scaleX(-1);
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
            }

            50% {
                box-shadow: 0 8px 35px rgba(0, 242, 255, 0.6);
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(0, 242, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Custom scrollbar for modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(80px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-header h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .modal-header p {
            color: var(--gray);
            font-size: 1rem;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            background: rgba(255, 51, 102, 0.8);
            transform: rotate(90deg);
        }

        .booking-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group-modal {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group-modal label {
            color: var(--light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group-modal label span {
            color: var(--accent);
        }

        .form-group-modal input,
        .form-group-modal select,
        .form-group-modal textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        .form-group-modal select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-color: rgba(255, 255, 255, 0.05);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f2ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 12px;
            padding-right: 40px;
            line-height: 1.5;
        }

        .form-group-modal select option {
            background: #0f172a;
            color: var(--light);
            padding: 12px 15px;
            font-size: 1rem;
        }

        .form-group-modal select option:first-child {
            color: #888;
        }

        .form-group-modal select option:hover,
        .form-group-modal select option:checked {
            background: var(--primary);
            color: white;
        }

        .form-group-modal input:focus,
        .form-group-modal select:focus,
        .form-group-modal textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
        }

        .form-group-modal textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-booking-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-booking-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
        }

        .submit-booking-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .success-message {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            padding: 40px 50px;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.95), rgba(46, 204, 113, 0.95));
            border: 2px solid var(--success);
            border-radius: 15px;
            color: white;
            z-index: 10000;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            width: 90%;
        }

        .success-message.show {
            display: block;
            animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes successPop {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .success-message i {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .success-message strong {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
        }

        .success-message p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Required field asterisk styling */
        .required-asterisk {
            color: var(--accent);
            font-weight: bold;
            margin-left: 2px;
        }

        /* Form group label styling */
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--light);
            font-weight: 500;
        }

        /* Validation hint styling */
        .validation-hint {
            display: block;
            margin-top: 5px;
            font-size: 0.8rem;
            color: var(--gray);
            opacity: 0.8;
        }

        /* Invalid input styling */

        /* Focus state for better UX */
        .form-control:focus:invalid {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
        }

        .form-control:focus:valid {
            border-color: var(--success);
            box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
        }

        /* Responsive Modal */
        @media (max-width: 768px) {
            .book-call-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .modal-content {
                padding: 35px 25px;
                width: 95%;
                max-height: 90vh;
            }

            .modal-header {
                margin-bottom: 25px;
            }

            .modal-header h2 {
                font-size: 1.6rem;
            }

            .modal-header p {
                font-size: 0.9rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .booking-form {
                gap: 15px;
            }

            .submit-booking-btn {
                font-size: 1rem;
                padding: 12px 25px;
            }

            .close-modal {
                top: 15px;
                right: 15px;
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .social-links a {
                -webkit-tap-highlight-color: transparent;
                -webkit-touch-callout: none;
            }

            .social-links a:active {
                transform: scale(0.95);
                background: var(--primary);
                color: #fff;
            }
        }




        @media (max-width: 480px) {
            .book-call-btn {
                padding: 10px 16px;
                font-size: 0.85rem;
                bottom: 15px;
                right: 15px;
            }

            .book-call-btn span {
                display: none;
            }

            .book-call-btn i {
                font-size: 1.3rem;
            }

            .modal-content {
                padding: 30px 20px;
                border-radius: 15px;
            }

            .modal-header h2 {
                font-size: 1.4rem;
                margin-bottom: 8px;
            }

            .modal-header p {
                font-size: 0.85rem;
            }

            .form-group-modal label {
                font-size: 0.9rem;
            }

            .form-group-modal input,
            .form-group-modal select,
            .form-group-modal textarea {
                padding: 10px 12px;
                font-size: 0.95rem;
            }

            .submit-booking-btn {
                font-size: 0.95rem;
                padding: 12px 20px;
            }

            .success-message {
                padding: 30px 25px;
                width: 85%;
            }

            .success-message i {
                font-size: 2.5rem;
                margin-bottom: 12px;
            }

            .success-message strong {
                font-size: 1.3rem;
            }

            .success-message p {
                font-size: 0.9rem;
            }

        }

        /* iPad and Tablet Specific Navbar Fixes */
        @media (min-width: 769px) and (max-width: 1024px) {

            /* Navbar container adjustments */
            header .container {
                padding: 0 20px;
            }

            /* Nav links spacing and alignment */
            .nav-links {
                gap: 20px;
                justify-content: flex-end;
                align-items: center;
            }

            /* Individual nav items */
            .nav-links a {
                font-size: 0.9rem;
                padding: 8px 12px;
                white-space: nowrap;
            }

            /* CTA button specific styling for tablets */
            .nav-links .cta-buttons {
                font-size: 0.85rem;
                padding: 10px 16px;
                white-space: nowrap;
                margin-left: 10px;
            }

            /* Dropdown menu adjustments */
            .dropdown-content {
                min-width: 200px;
                right: 0;
                left: auto;
            }

            /* Logo sizing */
            .logo img {
                height: 35px;
            }

            /* Ensure even spacing */
            .nav-links>*:not(:last-child) {
                margin-right: 5px;
            }
        }

        /* Additional iPad Pro specific fixes */
        @media (min-width: 1025px) and (max-width: 1366px) {
            .nav-links {
                gap: 25px;
            }

            .nav-links a {
                font-size: 0.95rem;
                padding: 10px 15px;
            }

            .nav-links .cta-buttons {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }

        /* Prevent mobile menu from showing on tablets */
        @media (min-width: 769px) {
            

            .nav-links {
                display: flex !important;
                flex-direction: row;
                align-items: center;
            }
        }







