@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        /* Global Box Sizing */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Base Body Styles and Overflow Control */
        html, body {
            overflow-x: hidden; /* Prevents horizontal scrolling for the entire page */
            width: 100%; /* Ensures the body takes up the full viewport width */
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333333; /* Dark grey for text on light background */
            background: #FFFFFF; /* White background */
        }

        /* General Image Responsiveness */
        img {
            max-width: 100%; /* Ensures images do not overflow their containers */
            height: auto; /* Maintains aspect ratio */
            display: block; /* Removes extra space below images */
        }

        /* Animated Background */
        .tech-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            /* Using new accent colors with transparency */
            background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%), /* DarkOrange */
                        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%), /* Blue */
                        radial-gradient(circle at 40% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 50%); /* Skyblue */
            animation: techBgMove 20s ease-in-out infinite, pulseEffect 2s ease-in-out infinite alternate;
        }

        .tech-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(45deg, transparent 49%, rgba(0, 0, 0, 0.03) 50%, transparent 51%), /* Subtle dark lines */
                linear-gradient(-45deg, transparent 49%, rgba(0, 0, 0, 0.03) 50%, transparent 51%); /* Subtle dark lines */
            background-size: 20px 20px;
            animation: gridMove 30s linear infinite;
        }

        @keyframes techBgMove {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(5px) translateY(-10px); }
            50% { transform: translateX(-5px) translateY(5px); }
            75% { transform: translateX(10px) translateY(-5px); }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }

        /* New keyframes for the beat effect */
        @keyframes pulseEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.01); } /* Subtle scale for a beat effect */
        }


        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95); /* Light background for header */
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Darker border */
            color: #333333; /* Dark text */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 13px;
        }

        /* Logo Image Styles for Header */
        .logo-img-link {
            display: flex;
            align-items: center;
            height: 70px; /* Adjust based on desired logo height */
            text-decoration: none; /* Remove underline from link */
        }

        .logo-img {
            height: 100%;
            width: auto;
            max-width: 150px; /* Adjust as needed */
            transition: transform 0.3s ease;
            background-color: #000000;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: #333333; /* Dark text for links */
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FF8C00, #FF4500); /* Orange to Orangered gradient */
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #FF8C00; /* Orange on hover */
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Using new accent colors with transparency for hero background */
            background:
                radial-gradient(circle at 30% 40%, rgba(0, 123, 255, 0.2) 0%, transparent 70%), /* Blue */
                radial-gradient(circle at 70% 60%, rgba(255, 69, 0, 0.2) 0%, transparent 70%), /* Orangered */
                linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 240, 240, 0.6) 100%); /* Light background gradient */
            animation: heroBgAnimation 15s ease-in-out infinite alternate;
        }

        /* New keyframes for hero background animation */
        @keyframes heroBgAnimation {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* New CSS for hero-bg-overlay */
        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1; /* Below hero-content, above hero::before */
            pointer-events: none; /* Allow clicks to pass through */
            filter: blur(0.5px);
        }

        .hero-bg-overlay::before,
        .hero-bg-overlay::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-repeat: repeat;
            opacity: 0.1; /* Increased opacity for more impact */
        }

        /* Animated circuit lines - more pronounced */
        .hero-bg-overlay::before {
            background-image: linear-gradient(0deg, transparent 98%, rgba(0, 123, 255, 0.3) 100%), /* Blue lines */
                              linear-gradient(90deg, transparent 98%, rgba(0, 123, 255, 0.3) 100%); /* Blue lines */
            background-size: 30px 30px; /* Denser */
            animation: flowCircuit 20s linear infinite; /* Faster */
        }

        /* Animated data dots/particles - more pronounced */
        .hero-bg-overlay::after {
            background-image: radial-gradient(circle at 10% 10%, rgba(0, 0, 0, 0.2) 1.5px, transparent 1.5px), /* Dark dots */
                              radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.2) 1.5px, transparent 1.5px); /* Dark dots */
            background-size: 20px 20px; /* Denser */
            animation: flowParticles 30s linear infinite reverse; /* Faster */
        }

        /* New: Glowing dots layer */
        .hero-bg-overlay .glow-dots {
            content: ''; /* Ensure content is set for pseudo-elements */
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-repeat: repeat;
            background-image: radial-gradient(circle at center, rgba(255, 69, 0, 0.15) 2px, transparent 2px); /* Orangered glowing dots */
            background-size: 50px 50px;
            animation: glowDotsMove 40s linear infinite;
        }


        @keyframes flowCircuit {
            0% { background-position: 0 0; }
            100% { background-position: 600px 600px; } /* Increased movement range */
        }

        @keyframes flowParticles {
            0% { background-position: 0 0; }
            100% { background-position: 800px 800px; } /* Increased movement range */
        }

        @keyframes glowDotsMove {
            0% { background-position: 0 0; }
            100% { background-position: -1000px -1000px; } /* Move off screen */
        }


        .hero-content {
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 2; /* Ensure hero content is above the overlay */
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            /* Gradient with new colors */
            background: linear-gradient(135deg, #000000 0%, #FF8C00 50%, #007BFF 100%); /* Black, Orange, Blue */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            color: #555555; /* Slightly lighter dark grey */
            animation: fadeInUp 1s ease-out 0.3s both;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%); /* Orange to Orangered */
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease; /* This applies to transform, box-shadow, etc. */
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent); /* Reduced opacity for a softer shine */
            transition: left 0.8s ease; /* Slower transition for smoother shine */
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4); /* Orange shadow */
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid #007BFF; /* Blue border */
            color: #007BFF; /* Blue text */
        }

        .cta-secondary:hover {
            background: #007BFF; /* Blue background on hover */
            color: white;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 3; /* Ensure floating elements are above hero content */
        }

        .floating-element {
            position: absolute;
            font-size: 4rem; /* Significantly larger */
            opacity: 0.4; /* Much more visible */
            animation: floatImpact 10s ease-in-out infinite; /* New animation for more impact */
            color: #87CEEB; /* Skyblue for floating elements */
            text-shadow: 0 0 15px rgba(0, 123, 255, 0.8); /* Blue glow */
        }

        /* More floating elements for density and varied animations */
        .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 10s;}
        .floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; animation-duration: 12s;}
        .floating-element:nth-child(3) { bottom: 20%; left: 30%; animation-delay: 4s; animation-duration: 11s;}
        .floating-element:nth-child(4) { top: 30%; right: 30%; animation-delay: 6s; animation-duration: 9s;}
        .floating-element:nth-child(5) { bottom: 10%; right: 5%; animation-delay: 8s; animation-duration: 13s;}
        .floating-element:nth-child(6) { top: 5%; left: 50%; animation-delay: 10s; animation-duration: 10s;}
        .floating-element:nth-child(7) { top: 80%; left: 20%; animation-delay: 12s; animation-duration: 14s;}
        .floating-element:nth-child(8) { top: 45%; left: 5%; animation-delay: 14s; animation-duration: 11s;}
        .floating-element:nth-child(9) { top: 25%; right: 5%; animation-delay: 1s; animation-duration: 12s;}
        .floating-element:nth-child(10) { bottom: 5%; left: 70%; animation-delay: 3s; animation-duration: 10s;}
        .floating-element:nth-child(11) { top: 70%; right: 40%; animation-delay: 5s; animation-duration: 13s;}
        .floating-element:nth-child(12) { top: 15%; left: 80%; animation-delay: 7s; animation-duration: 9s;}


        @keyframes floatImpact {
            0%, 100% {
                transform: translate(0px, 0px) rotate(0deg) scale(1);
                opacity: 0.4;
            }
            25% {
                transform: translate(20px, -30px) rotate(90deg) scale(1.05);
                opacity: 0.5;
            }
            50% {
                transform: translate(-10px, 40px) rotate(180deg) scale(0.95);
                opacity: 0.3;
            }
            75% {
                transform: translate(30px, -20px) rotate(270deg) scale(1.02);
                opacity: 0.45;
            }
        }

        /* Services Section */
        .services {
            padding: 1rem 0;
            background: #F8F8F8; /* Very light grey for section background */
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            /* Gradient with new colors */
            background: linear-gradient(135deg, #333333 0%, #FF8C00 100%); /* Dark grey to Orange */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #FF8C00, #FF4500); /* Orange to Orangered */
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: #FFFFFF; /* White background for cards */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Subtle shadow */
            display: flex; /* Added flex to make it a flex container */
            flex-direction: column; /* Stack children vertically */
            align-items: center; /* Center children horizontally */
            justify-content: space-between;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%); /* Blue to Skyblue transparent overlay */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 123, 255, 0.3); /* Blue border on hover */
            box-shadow: 0 20px 60px rgba(0, 123, 255, 0.2); /* Blue shadow */
        }

        .service-icon {
            width: 200px; /* Increased size to match Lottie player */
            height: 200px; /* Increased size to match Lottie player */
            background: transparent;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            /* Removed the floatIcon animation */
        }

        /* Removed the floatIcon keyframes as they are no longer used */
        /* @keyframes floatIcon {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        } */

        /* Styles for the new lottie-container to center the animation */
        .lottie-container {
            display: flex;
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
            width: 100%; /* Take full width of parent .service-icon */
            height: 100%; /* Take full height of parent .service-icon */
        }

        /* Styles for Lottie Player inside the container to increase size */
        .lottie-container lottie-player {
            width: 100%; /* Make it fill the container */
            height: 100%; /* Make it fill the container */
        }


        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333333; /* Dark text */
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            color: #555555; /* Slightly lighter dark grey */
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Products Section */
        .products {
            padding: 1rem 0;
            background: #FFFFFF; /* White background */
            position: relative;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Using new accent colors with transparency */
            background:
                radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%), /* DarkOrange */
                radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%); /* Blue */
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .product-card {
            background: #F0F0F0; /* Light grey background for product cards */
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            padding: 3rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Subtle shadow */
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1), transparent); /* Orange transparent overlay */
            transform: rotate(45deg);
            transition: all 0.4s ease;
            opacity: 0;
        }

        .product-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(10px, 10px);
        }

        .product-card:hover {
            transform: translateY(-15px);
            border-color: rgba(255, 140, 0, 0.4); /* Orange border on hover */
            box-shadow: 0 25px 80px rgba(255, 140, 0, 0.3); /* Orange shadow */
        }

        .product-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #007BFF 0%, #87CEEB 100%); /* Blue to Skyblue */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
        }

        .product-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: #333333; /* Dark text */
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .product-card p {
            color: #555555; /* Slightly lighter dark grey */
            line-height: 1.7;
            position: relative;
            z-index: 2;
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .product-features li {
            color: #007BFF; /* Blue for features */
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .product-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #007BFF; /* Blue for checkmark */
            font-weight: bold;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 8rem 0;
            background: #F8F8F8; /* Very light grey for section background */
            position: relative;
        }

        .testimonials-grid {
            display: flex; /* Changed from grid to flex */
            overflow-x: auto; /* Enables horizontal scrolling */
            /* scroll-snap-type: x mandatory; */ /* Removed for continuous scroll */
            gap: 2rem;
            margin-top: 4rem;
            padding-bottom: 1rem; /* Add some padding for scrollbar */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
        }

        /* Hide scrollbar for Chrome, Safari, Opera */
        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex: 0 0 auto; /* Prevent cards from shrinking or growing */
            width: 450px; /* Fixed width for each card */
            max-width: 90%; /* Ensure responsiveness on smaller screens */
            /* scroll-snap-align: start; */ /* Removed for continuous scroll */
            background: #FFFFFF; /* White background for cards */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Subtle shadow */
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%); /* Orange to Orangered transparent overlay */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 140, 0, 0.3); /* Orange border on hover */
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2); /* Orange shadow */
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: #555555; /* Dark grey text */
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testimonial-quote::before {
            content: '“';
            font-size: 3rem;
            color: #FF8C00; /* Orange for quote mark */
            position: absolute;
            top: -10px;
            left: -10px;
            opacity: 0.7;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto; /* Pushes author to the bottom */
            position: relative;
            z-index: 2;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
            border: 2px solid #007BFF; /* Blue border */
            box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Blue shadow */
        }

        .author-name {
            font-weight: 600;
            color: #333333; /* Dark text */
            font-size: 1.1rem;
        }

        .author-title {
            color: #555555; /* Slightly lighter dark grey */
            font-size: 0.9rem;
        }


        /* About Section */
        .about {
            padding: 8rem 0;
            background: #FFFFFF; /* White background */
            position: relative;
        }

        .about .section-title {
            margin-bottom: 2rem; /* Adjusted margin for the title in About section */
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two columns for text and banner */
            gap: 4rem;
            align-items: center;
            margin-top: 4rem; /* Add some space below the section title */
        }

        .about-text {
            /* No specific grid column span needed, it will take 1fr */
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            /* Gradient with new colors */
            background: linear-gradient(135deg, #333333 0%, #FF8C00 100%); /* Dark grey to Orange */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #555555; /* Slightly lighter dark grey */
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-banner {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Stronger shadow for the banner */
            transition: transform 0.3s ease;
        }

        .about-banner:hover {
            transform: translateY(-10px);
        }

        .about-banner .banner-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            filter: brightness(0.7); /* Darken image slightly */
            transition: filter 0.3s ease;
        }

        .about-banner:hover .banner-image {
            filter: brightness(0.8);
        }

        .about-banner .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 123, 255, 0.6); /* Blue overlay with transparency */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease, background 0.3s ease;
        }

        .about-banner:hover .banner-overlay {
            opacity: 1;
            background: rgba(0, 123, 255, 0.8); /* Darker blue on hover */
        }

        .about-banner .banner-overlay h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .about-banner .banner-overlay p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.9);
        }

        .about-banner .cta-button {
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .about-banner .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
        }

        .stats-container {
            margin-top: 4rem; /* Space between about content and stats */
            padding-top: 2rem; /* Inner padding for the container */
            border-top: 1px solid rgba(0,0,0,0.05); /* Subtle separator */
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid for stats */
            gap: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: #F0F0F0; /* Light grey background */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Subtle shadow */
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 123, 255, 0.3); /* Blue border on hover */
            box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2); /* Blue shadow */
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%); /* Orange to Orangered */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #555555; /* Slightly lighter dark grey */
            font-size: 1rem;
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: #F8F8F8; /* Very light grey background */
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 70%); /* Blue transparent */
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-form {
            background: #FFFFFF; /* White background for form */
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            padding: 2rem;
            border-radius: 25px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Subtle shadow */
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 500;
            color: #333333; /* Dark text */
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(0, 0, 0, 0.2); /* Darker border */
            border-radius: 12px;
            background: #F0F0F0; /* Light grey input background */
            color: #333333; /* Dark text */
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF8C00; /* Orange focus border */
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1); /* Orange shadow */
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%); /* Orange to Orangered */
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3); /* Orange shadow */
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333333; /* Dark text */
            font-weight: 600;
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            color: #555555; /* Slightly lighter dark grey */
            line-height: 1.7;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #FFFFFF; /* White background for contact items */
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
            box-shadow: 0 5px 10px rgba(0,0,0,0.03); /* Subtle shadow */
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007BFF 0%, #87CEEB 100%); /* Blue to Skyblue */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: white;
        }

        /* Footer */
        footer {
            background: #333333; /* Dark grey background for footer */
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1); /* Light border */
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
            justify-items: center;
        }

        /* Logo Image Styles for Footer */
        .footer-logo-container {
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            height: 130px; /* Adjust as needed */
            width: auto;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #B0B0B0; /* Light grey for footer links */
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #FF8C00; /* Orange on hover */
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem; /* Add some space below social icons */
        }

        .social-icon-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #007BFF 0%, #87CEEB 100%); /* Blue to Skyblue */
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .social-icon-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5); /* Blue shadow on hover */
            background: linear-gradient(135deg, #87CEEB 0%, #007BFF 100%); /* Reverse gradient on hover */
        }

        .footer-text {
            color: #808080; /* Medium grey for footer text */
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Mobile Navigation Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 50px;
            height: 40px;
            cursor: pointer;
            z-index: 1001;
            border: 2px solid orangered;
            padding: 5px;
            border-radius: 4px;
        }

        .menu-toggle div {
            width: 100%;
            height: 3px;
            background-color: #333333; /* Dark color */
            border-radius: 5px;
            transition: all 0.3s linear;
            transform-origin: 1px;
        }

        /* Hamburger to Cross Animation */
        .menu-toggle.is-active div:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
        }

        .menu-toggle.is-active div:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.is-active div:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
        }


        .mobile-nav {
            position: fixed;
            top: 0;
            right: 0; /* Align to the right */
            width: 65vw; /* Half of the viewport width */
            height: 100%;
            background: rgba(255, 255, 255, 0.95); /* Light background for mobile nav */
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(100%); /* Start off-screen to the right */
            transition: transform 0.3s ease-in-out;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2); /* Darker shadow for depth */
        }

        .mobile-nav.is-open {
            transform: translateX(0); /* Slide in */
        }

        .mobile-nav .nav-links {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

        .mobile-nav .nav-links a {
            font-size: larger;
            padding: 1rem 0;
            color: #333333; /* Dark text for mobile links */
        }

        .close-btn {
            position: absolute;
            top: 2rem;
            left: 2rem; /* Position on the left inside the right-aligned menu */
            font-size: 2.5rem;
            color: #333333; /* Dark color */
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Hide desktop nav links by default on mobile */
            }

            .menu-toggle {
                display: flex; /* Show hamburger menu */
            }

            /* IMPORTANT: This rule ensures mobile nav links are displayed when the menu is open */
            .mobile-nav.is-open .nav-links {
                display: flex; /* Override display: none for mobile nav links when menu is open */
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr; /* Stack content and banner vertically on mobile */
            }

            .services-grid,
            .products-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid { /* Adjusted for horizontal scroll on mobile */
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                /* scroll-snap-type: x mandatory; */ /* Removed for continuous scroll */
            }

            .testimonial-card {
                width: 90%; /* Adjust width for mobile */
                flex-shrink: 0;
                /* scroll-snap-align: start; */ /* Removed for continuous scroll */
            }

            .section-title {
                font-size: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            /* Contact Section Responsiveness */
            .contact-content {
                grid-template-columns: 1fr; /* Stack columns vertically on mobile */
                gap: 2rem; /* Reduced gap for better spacing on mobile */
            }

            .form-group input,
            .form-group textarea {
                max-width: 100%; /* Ensure inputs don't overflow */
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1); /* Light track */
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%); /* Orange to Orangered */
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%); /* Reverse gradient on hover */
        }
