.services-hero-section {
            position: relative;
            width: 100%;
            height: 600px; /* Fixed height for the hero section */
            overflow: hidden;
            /* border-radius: 0.5rem; Matches the screenshot's subtle rounded corners */
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
            cursor: grab; /* Indicate draggable */
        }
        .services-hero-section.dragging {
            cursor: grabbing;
        }

        .hero-slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0; /* Hidden by default */
            transition: opacity 1s ease-in-out; /* Fade transition */
            transform: scale(1); /* Initial scale for zoom effect */
            animation: none; /* No animation initially */
        }

        .hero-slider-item.active {
            opacity: 1; /* Show active slide */
            animation: slowZoom 8s linear infinite; /* Slow zoom animation */
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) { /* Tablet */
            .services-hero-section {
                height: 450px; /* Adjust height for tablet */
            }
        }

        @media (max-width: 767.98px) { /* Mobile */
            .services-hero-section {
                height: 350px; /* Adjust height for mobile */
            }
        }



/*===============================================================================
===============================================================================
==========================SERVICES SECTION 2==================================*/


        .discover-section {
            padding: 80px 0;
            background-color: #fff;
            margin-top: 100px;
        }

        .section-overline {
            font-size: 0.9rem;
            font-weight: 500;
            color: #6c757d;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center; /* Center the overline */
        }
        .section-overline .blue-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #0d6efd;
            border-radius: 50%;
            vertical-align: middle;
        }

        .section-heading {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 50px; /* Space below heading */
            text-align: center; /* Center the heading */
        }

        .feature-block {
            text-align: right; /* Default to right align for left column */
            margin-bottom: 40px; /* Space between feature blocks */
        }

        .feature-block.left-aligned {
            text-align: left; /* Override for right column */
        }

        .feature-block h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }

        .feature-block p {
            font-size: 0.95rem;
            color: #495057;
            line-height: 1.6;
            margin-bottom: 0;
            max-width: 300px; /* Constrain text width */
            margin-left: auto; /* Push to right for right-aligned text */
        }

        .feature-block.left-aligned p {
            margin-left: 0; /* Reset for left-aligned text */
            margin-right: auto; /* Push to left for left-aligned text */
        }

        .central-image {
            width: 100%;
            height: auto; /* Auto height to maintain aspect ratio */
            max-width: 500px; /* Max width for the image */
            display: block;
            margin: 0 auto; /* Center the image */
            padding: 20px; /* Padding around the image to separate from text */
            box-sizing: border-box; /* Include padding in width */
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) { /* Tablet */
            .section-heading {
                font-size: 2.5rem;
            }
            .feature-block {
                text-align: left; /* All blocks left-aligned on tablet */
                margin-bottom: 30px;
            }
            .feature-block p {
                max-width: 100%; /* Allow full width */
                margin-left: 0;
            }
            .central-image {
                max-width: 400px;
                margin-bottom: 30px; /* Space below image on tablet */
            }
        }

        @media (max-width: 767.98px) { /* Mobile */
            .section-heading {
                font-size: 2rem;
            }
            .feature-block {
                margin-bottom: 25px;
            }
            .central-image {
                max-width: 300px;
                margin-bottom: 25px;
            }
        }



/*===============================================================================
===============================================================================
==========================SERVICES SECTION 3==================================*/



 .services-accordion-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-overline {
            font-size: 0.9rem;
            font-weight: 500;
            color: #6c757d;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-overline .blue-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #0d6efd;
            border-radius: 50%;
            vertical-align: middle;
        }

        .section-heading-accordion {
            font-size: 1.8rem; /* Smaller heading for accordion title */
            font-weight: 700;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 30px; /* Space below heading */
        }

        .animated-image-container {
           
            height: 550px; /* Fixed height for the image container */
        }
        .animated-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /* Animation will now be applied via JavaScript for parallax effect */
            transition: transform 0.1s ease-out; /* Smooth transition for parallax updates */
        }

        /* Accordion Styles (reused from FAQ section, adjusted for context) */
        .accordion-item {
            border: none; /* Remove default Bootstrap border */
            border-bottom: 1px solid #e9ecef; /* Custom bottom border */
            background-color: transparent; /* Transparent background */
            margin-bottom: 0; /* No margin between items */
            border-radius: 0; /* No border radius */
        }
        .accordion-item:last-child {
            border-bottom: none; /* No border for the last item */
        }

        .accordion-button {
            background-color: transparent; /* Transparent background */
            color: #212529; /* Dark text color */
            font-size: 1.1rem;
            font-weight: 600;
            padding: 1.25rem 0; /* Vertical padding */
            border-bottom: none; /* Remove default button border */
            box-shadow: none; /* Remove shadow */
            transition: color 0.3s ease;
        }
        .accordion-button:not(.collapsed) {
            color: #212529; /* Keep dark text color when expanded */
            background-color: transparent;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none; /* Remove focus outline */
            border-color: transparent;
        }

        .accordion-button::after {
            /* Plus icon */
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
            transform: none; /* No rotation */
            transition: none; /* No transition on transform */
            width: 1rem; /* Adjust icon size */
            height: 1rem;
            background-size: 1rem;
        }
        .accordion-button:not(.collapsed)::after {
            /* Minus icon when expanded */
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
            transform: none; /* No rotation */
        }

        .accordion-body {
            font-size: 0.95rem;
            color: #495057;
            line-height: 1.6;
            padding: 0 0 1.25rem 0; /* Adjust padding to align with button */
        }

        /* Custom class for spacing between the two main blocks */
        .services-accordion-section .block-separator {
            margin-bottom: 100px; /* Explicit 100px gap */
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) { /* Tablet */
            .section-heading-accordion {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            .animated-image-container {
                height: 300px;
                margin-bottom: 40px; /* Space between image and accordion on tablet */
            }
            .services-accordion-section .block-separator { /* Adjust for tablet if needed */
                margin-bottom: 60px; /* Example adjustment for smaller screens */
            }
        }

        @media (max-width: 767.98px) { /* Mobile */
            .section-overline {
                justify-content: center;
                text-align: center;
            }
            .section-heading-accordion {
                font-size: 1.3rem;
                text-align: center;
                margin-bottom: 20px;
            }
            .animated-image-container {
                height: 250px;
                margin-bottom: 30px;
            }
            .accordion-button {
                font-size: 1rem;
                padding: 1rem 0;
            }
            .accordion-body {
                font-size: 0.85rem;
                padding: 0 0 1rem 0;
            }
            .services-accordion-section .block-separator { /* Adjust for mobile if needed */
                margin-bottom: 40px; /* Example adjustment for smaller screens */
            }
        }


/*=======================================================================
=========================================================================
=========================SERVICES TEAM SECTION===============================*/



         .team-section {
            padding: 80px 0;
            background-color: #fff;
            margin-top: 100px;
        }

        .section-overline {
            font-size: 0.9rem;
            font-weight: 500;
            color: #6c757d;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .Team-section-overline .blue-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #0d6efd;
            border-radius: 50%;
            vertical-align: middle;
        }

        .Team-section-heading {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 1rem;
            color: #495057;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .get-in-touch-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.75rem 1.5rem;
            background-color: #0d6efd;
            color: #fff;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .get-in-touch-btn:hover {
            background-color: #0a58ca;
            transform: translateY(-2px);
        }
        .get-in-touch-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2;
        }

        /* Team Members Grid */
        .team-grid {
            display: flex;
            justify-content: center; /* Center the team members */
            gap: 30px; /* Space between team members */
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        .team-member-card {
            position: relative;
            width: 200px; /* Fixed width for circular image */
            height: 200px; /* Fixed height for circular image */
            border-radius: 50%; /* Circular shape */
            overflow: hidden; /* Hide overflow for circular image */
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
            transition: box-shadow 0.3s ease;
            cursor: pointer;
        }

        .team-member-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .team-member-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member-card:hover img {
            transform: scale(1.05); /* Slight zoom on image hover */
        }

        .team-member-info-overlay {
            position: absolute;
            bottom: -30px;
            left: 0;
            width: 100%;
            height: 0; /* Start hidden */
            background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent WHITE overlay */
            color: #212529; /* Dark text for white background */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content vertically */
            align-items: center;
            padding: 10px;
            transition: height 0.3s ease-out; /* Animate height */
            text-align: center;
            box-sizing: border-box; /* Include padding in height calculation */
        }

        .team-member-card:hover .team-member-info-overlay {
            height: 70%; /* Expand to middle */
        }

        .team-member-info-overlay h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #212529; /* Dark text for white background */
        }

        .team-member-info-overlay p {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0;
            color: #495057; /* Slightly lighter dark text */
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) { /* Tablet */
            .section-heading {
                font-size: 2.5rem;
            }
            .team-grid {
                margin-top: 40px; /* Space between text and grid on tablet */
            }
        }

        @media (max-width: 767.98px) { /* Mobile */
            .section-heading {
                font-size: 2rem;
                text-align: center;
            }
            .section-overline {
                justify-content: center;
                text-align: center;
            }
            .section-description {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .get-in-touch-btn {
                justify-content: center;
                width: 100%; /* Full width button on mobile */
                max-width: 250px; /* Constrain max width */
                margin-left: auto;
                margin-right: auto;
            }
            .team-grid {
                flex-direction: column; /* Stack vertically on mobile */
                align-items: center;
                gap: 20px; /* Reduced gap */
                margin-top: 30px;
            }
            .team-member-card {
                width: 180px; /* Smaller size for mobile */
                height: 180px;
            }
            .team-member-info-overlay h5 {
                font-size: 1rem;
            }
            .team-member-info-overlay p {
                font-size: 0.75rem;
            }
        }


