        /* Custom Colors & Backgrounds */
        :root {
            --ikarus-dark-bg: #000000; /* Deep dark blue, similar to screenshot */
            --ikarus-text-gray: #ff0000; /* Lighter gray for descriptions */
            --ikarus-tag-bg: #000000; /* Darker background for tags */
            --ikarus-gradient-start: #000000; /* Primary blue for gradient start */
            --ikarus-gradient-end: #000000;   /* Darker blue for gradient end */
            --ikarus-blue-light: #000000; /* A lighter blue for hover/active states */
        }

        /* body {
            background-color: var(--ikarus-dark-bg);
            min-height: 100vh;   
            display: flex;
            align-items: center;   
            justify-content: center;  
            font-family: 'Inter', sans-serif;  
        } */

        body{
            background-color: black;
        }

        .services-section {
            background-color: var(--ikarus-dark-bg); /* Ensure section background is dark */
            color: white; /* Default text color for the section */
            overflow: hidden; /* Prevent content overflow */
            width: 100%;
            max-width: 1400px; /* Max width for the entire section */
            margin: 0 auto;
        }

        /* Right Column Text Styling */
        .text-content-wrapper {
            padding-left: 5rem; /* More padding on the left for text, especially on desktop */
            padding-right: 3rem; /* Some padding on the right */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertically center content */
        }

        @media (max-width: 767.98px) {
            .text-content-wrapper {
                padding: 2rem !important; /* Adjust padding for mobile */
                text-align: center; /* Center text on mobile */
            }
            .text-content-wrapper .d-flex {
                justify-content: center; /* Center tags on mobile */
            }
        }

        .section-title {
            font-size: 3rem; /* Larger heading */
            font-weight: 700; /* Bold */
            margin-bottom: 1rem; /* Space below title */
        }

        .service-subtitle {
            font-size: 2rem; /* Sub-heading size */
            font-weight: 600; /* Semibold */
            line-height: 1.3;
            min-height: 2.6em; /* Ensure consistent height to prevent layout shifts */
        }

        .service-description {
            font-size: 1.1rem;
            color: var(--ikarus-text-gray);
            line-height: 1.6;
            min-height: 4.8em; /* Ensure consistent height to prevent layout shifts */
        }

        .areas-cover-heading {
            font-size: 1.05rem;
            font-weight: 500;
        }

        .service-tag {
            display: inline-block;
            background-color: var(--ikarus-tag-bg);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px; /* Pill shape */
            font-size: 0.9rem;
            white-space: nowrap; /* Prevent tags from breaking lines awkwardly */
            margin-bottom: 0.5rem; /* Small space between tags if they wrap */
        }

        /* Know More Button */
        .btn-gradient-blue {
            background: linear-gradient(to right, var(--ikarus-gradient-start), var(--ikarus-gradient-end));
            border: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgb(255, 251, 0); 
            /* box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4); Blue shadow */
        }

        .btn-gradient-blue:hover {
            background: linear-gradient(to right, var(--ikarus-gradient-end), var(--ikarus-gradient-start)); /* Reverse gradient or darken */
            transform: translateY(-2px); /* Slight lift on hover */
            box-shadow: 0 6px 12px rgba(252, 160, 40, 0.959);
            /* box-shadow: 0 6px 12px rgba(0, 123, 255, 0.6); */
            color: white; /* Keep text white on hover */
        }

        /* Swiper Custom Styling (Left Column - Image Carousel) */
        .services-swiper {
            width: 100%;
            height: 500px; /* Fixed height for the Swiper container */
            max-height: 80vh; /* Max height relative to viewport */
            background-color: #41ffff; /* Slightly lighter dark for the image background */
            border-radius: 0.75rem; /* Rounded corners for the carousel container */
            overflow: hidden; /* Crucial for cube effect */
            position: relative; /* For positioning arrows/pagination */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Deep shadow for the image part */
        }

        .services-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: contain; /* Ensure background image fits */
            background-position: center;
            background-repeat: no-repeat;
            background-color: #000000; /* Fallback for slide background */
        }

        .services-swiper .swiper-slide img {
            max-width: 90%; /* Image within slide should not touch edges */
            max-height: 90%;
            object-fit: contain; /* Contain the image within its bounds */
            border-radius: 0.5rem; /* Optional: slight border-radius for images */
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); /* Subtle shadow for images */
        }

        /* Custom Swiper Navigation Buttons */
        .custom-swiper-button-next,
        .custom-swiper-button-prev {
            color: white !important; /* Force white icon color */
            background-color: rgba(0, 0, 0, 0.1); /* Very subtle background */
            backdrop-filter: blur(5px); /* Frosted glass effect */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
            top: 50%; /* Center vertically */
            transform: translateY(-50%);
            z-index: 10; /* Ensure buttons are above slides */
            border: 1px solid rgba(0, 0, 0, 0.2); /* Subtle border */
        }

        .custom-swiper-button-next::after,
        .custom-swiper-button-prev::after {
            font-size: 1.5rem !important; /* Adjust icon size */
        }

        .custom-swiper-button-next:hover,
        .custom-swiper-button-prev:hover {
            background-color: var(--ikarus-blue-light); /* Blue hover effect */
            transform: translateY(-50%) scale(1.1); /* Slightly enlarge on hover */
            border-color: var(--ikarus-blue-light);
        }

        .custom-swiper-button-prev {
            left: 20px; /* Position from left edge */
        }

        .custom-swiper-button-next {
            right: 20px; /* Position from right edge */
        }

        /* Custom Swiper Pagination Dots */
        .custom-swiper-pagination.swiper-pagination-bullets {
            bottom: 20px; /* Position from bottom */
            width: auto !important; /* Auto width for pagination */
            left: 50%;
            transform: translateX(-50%);
            display: flex; /* Use flex to center dots */
            gap: 10px; /* Space between dots */
            z-index: 10; /* Ensure pagination is above slides */
        }

        .custom-swiper-pagination .swiper-pagination-bullet {
            background-color: var(--ikarus-text-gray); /* Inactive dot color */
            opacity: 0.6;
            width: 10px; /* Dot size */
            height: 10px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .custom-swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--ikarus-blue-light); /* Active dot color */
            width: 12px; /* Slightly larger for active dot */
            height: 12px;
            opacity: 1;
            box-shadow: 0 0 8px var(--ikarus-blue-light); /* Glow effect */
        }

        /* Media Query for responsiveness */
        @media (max-width: 767.98px) {
            .services-swiper {
                order: 2; /* Image carousel below text on mobile */
                margin-top: 2rem; /* Add some space above carousel on mobile */
                height: 350px; /* Adjust height for mobile */
                border-radius: 0.5rem;
            }
            .text-content-wrapper {
                order: 1; /* Text content above carousel on mobile */
                padding: 1rem;
            }
            .section-title {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }
            .service-subtitle {
                font-size: 1.4rem;
                min-height: auto; /* Allow height to adjust on mobile */
            }
            .service-description {
                font-size: 0.9rem;
                min-height: auto; /* Allow height to adjust on mobile */
            }
            .areas-cover-heading {
                font-size: 0.9rem;
            }
            .service-tag {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }
            .btn-gradient-blue {
                font-size: 0.9rem;
                padding: 0.75rem 2rem !important;
            }
            .custom-swiper-button-next,
            .custom-swiper-button-prev {
                width: 40px; /* Smaller buttons on mobile */
                height: 40px;
                font-size: 1.2rem !important;
                left: 10px; /* Adjust position for mobile */
                right: 10px;
            }
            .custom-swiper-pagination {
                bottom: 10px;
            }
        }