/* --- Bigger Drone Image Only on Desktop --- */
@media screen and (min-width: 1024px) {
    .hero-section .hero-image-wrapper {
        max-width: 750px !important;
        /* force larger image wrapper */

    }

    .hero-section .hero-image {
        width: 100%;
        transform: scale(1.25);
        /* enlarge the image */
        transition: transform 0.3s ease;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


:root {
    /* Colors */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #103c65;
    --secondary-color: #ee800b;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 1rem;
    --font-size-n: 1.1rem;
    --font-size-m: 1.3rem;
    --font-size-l: 1.8rem;
    --font-size-xl: 2.3rem;
    --font-size-xxl: 3rem;

    /* Font Weight */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site Maw Width */
    --size-max-width: 1600px;

}

html {
    scroll-behavior: smooth;

}

/* Stylings for whole site */

ul {
    list-style: none;
}

a {
    text-decoration: none;

}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 10px;
    max-width: var(--size-max-width);
}

/* about*/

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* NavBar styling */

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
}

.navbar .nav-logo .logo-text {
    color: var(--primary-color);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--primary-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar #menu-close-button,
.navbar #menu-open-button {
    display: none;
}

/* Language switcher styling  */
.language-switcher {
    margin-left: 1rem;
}

.language-switcher select {
    background: transparent;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.language-switcher select option {
    color: #000;
}

/* Responsive adjustment for mobile menu */
@media (max-width: 768px) {
    .language-switcher {
        margin: 10px auto;
        display: block;
        text-align: center;
    }

    .language-switcher select {
        font-size: 18px;
    }
}

@media (max-width: 900px) {

    /* Move the language switcher inside the mobile nav */
    .language-switcher {
        display: block;
        margin-top: 25px;
        background: var(--white-color);
        color: var(--primary-color);
        border: 1px solid var(--medium-gray-color);
        border-radius: var(--border-radius-s);
        padding: 5px 10px;
        font-size: var(--font-size-m);
    }

    /* Hide the standalone dropdown when menu is closed */
    header .language-switcher {
        display: none;
    }

    body.show-mobile-menu header .language-switcher {
        display: block;
    }
}


/* Hero Section Styling */

.hero-section {
    min-height: 100vh;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--primary-color);
    justify-content: space-between;
}

.hero-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Outfit", sans-serif;
}

.hero-section .hero-details .subtitles {
    margin-top: 8px;
    max-width: 89%;
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    color: var(--primary-color);
    font-size: var(--font-size-m);

}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

/*.hero-section .hero-details .contact-us{
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
   }
   .hero-section .hero-details .contact-us:hover{
    color: var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
   }*/

.hero-section .hero-details .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

/* About section styling */

.about-section {
    padding: 120px 0;
    background: var(--white-color);
    color: #103c65;
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    color: #103c65;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
    padding: 0;
    color: #103c65;
}

.about-section .about-details {
    max-width: 50%;
    color: #103c65;
}


.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    font-size: var(--font-size-m);
    color: #103c65;

}

.text-ul b {
    color: var(--secondary-color);
}



.about-section .about-details .text-ul {
    line-height: 30px;
    margin: 40px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
    list-style-position: outside;
    margin-left: 1.5em;
    color: #103c65;

}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/* ---  Services Section --- */

.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    color: var(--primary-color);
    padding: 20px 0 40px 0;
    /* Full-screen height on desktop */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.services-section .section-title {
    text-align: center;
    font-size: var(--font-size-xl);
    margin-bottom: 0px;
    color: var(--primary-color);

}

/* BASE .service-card STYLES (Used for desktop and inherited everywhere) */
.service-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* Card Height Fix: Ensure equal height */
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-section .slider-wrapper {
    overflow: hidden;
    margin: 0 60px 50px;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(16, 60, 101, 0.15);
}

.service-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-color);
    opacity: 0.9;
}


.services-section .swiper-pagination {
    /* Adjusted for spacing below the cards */
    position: relative;
    margin-top: 50px;
    bottom: unset !important;
}

.services-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.services-section .swiper-pagination-bullet-active {
    /* Active bullet size */
    width: 20px;
    height: 20px;
    opacity: 1;
    background: var(--secondary-color);
    transform: none;
}

.services-section .swiper-slide-button {
    color: var(--secondary-color);
    margin-top: -60px;
    transition: 0.3s ease;
}

.services-section .swiper-slide-button:hover {
    color: var(--primary-color);

}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(238, 128, 11, 0.25);
}

.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Icon Animation --- */
.service-card img {
    transition: transform 0.6s ease;
}

.service-card:hover img {
    animation: pulse 1.2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1) rotate(3deg);
    }
}

/*  Scroll Card Animation  */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card .service-btn {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 50px;
    align-self: center;
    color: var(--white-color);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-s);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;

}

.service-card .service-btn:hover {
    color: var(--secondary-color);
    /* Orange text on hover */
    background: var(--white-color);
    /* White background on hover */
    border-color: var(--secondary-color);
    /* Keep the border color */
    transform: translateY(-2px);
    /* Subtle lift effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.services-section .swiper-slide .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(16, 60, 101, 0.15);
}

/*  service detail */
.service-detail {
    padding: 80px 20px;
    text-align: center;
}

.service-detail img,
.service-detail video {
    max-width: 700px;
    width: 100%;
    margin: 20px auto;
    border-radius: 12px;
}

.hero-image-slider .swiper-slide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}


/* Styling Team Section */
.team-section {
    padding: 50px 0 100px;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%) !important;
    margin-top: -40px;

}

.team-section .section-title {
    color: #103c65;
}

.team-section .team {
    display: flex;
    padding: 50px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.team-section .team .user-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: var(--border-radius-circle);
}

.team-section .team .name {
    margin-bottom: 16px;
    font-size: var(--font-size-l);
    color: #103c65;
}

.team-section .team .feedback {
    line-height: 25px;
    font-size: var(--font-size-l);
    color: #103c65;
}

.team-section .social-link-list {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    justify-content: center;
}

.team-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.team-section .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/* contact section styling */

.contact-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.contact-section .section-title {
    color: #103c65;
}

.contact-section .section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-section .map-container {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-section .concat-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section .concat-info-list .contact-info i {
    font-size: var(--font-size-m);
}

.contact-section .contact-form {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--primary-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--secondary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
    color: var(--primary-color);
    background: transparent;
}

/* footer section styling */

.footer-section {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
}

.footer-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-content i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-social .social-link {
    color: white;
    font-size: 1.5rem;
    margin-right: 12px;
    transition: color 0.3s;
}

.footer-social .social-link:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

/* * ======================================
* RESPONSIVE BREAKPOINTS (FIXED & UPDATED) 
* ======================================
*/


/* --- Tablet View (901px to 1024px) --- */
@media screen and (max-width: 1024px) and (min-width: 901px) {

    /* Navbar fix for tablet - ensure nav-menu is NOT displayed like a mobile sidebar */
    .navbar .nav-menu {
        display: flex !important;
        /* Force desktop/inline view */
        position: static !important;
        /* Undo mobile fixed position */
        width: auto !important;
        height: auto !important;
        padding-top: 0 !important;
        left: auto !important;
        flex-direction: row !important;
    }

    .navbar #menu-close-button,
    .navbar #menu-open-button {
        display: none !important;
        /* Hide hamburger icon on tablet */
    }

    /* Keep the language switcher visible inline */
    header .language-switcher {
        display: block !important;
        margin-left: 10px;
    }

    /* Services Card adjustments for 2-column view */
    .service-card {
        padding: 40px 20px;
        min-height: 380px;
    }

    /* Adjust spacing */
    .services-section .slider-wrapper {
        margin: 0 40px 50px;
    }

    header .navbar {
        padding: 20px 40px;
        /* Reduced padding on tablets */
    }
}


/* Responsive media query code for Mobile (Max Width 900px and below) */
@media screen and (max-width: 900px) {

    /* FIX: Added global overflow-x: hidden to prevent horizontal scrolling artifact */
    body {
        overflow-x: hidden;
    }

    /* FIX: Reduced navbar padding to fit small screen widths */
    header .navbar {
        padding: 15px 15px;
    }

    /* --- NAVIGATION MENU FIXES --- */
    .navbar #menu-open-button {
        display: block;
        /* Show hamburger */
        font-size: var(--font-size-l);
        color: var(--primary-color);
    }

    .navbar #menu-close-button {
        display: block;
        /* Show close button */
        font-size: var(--font-size-l);
        color: var(--primary-color);
    }

    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        /* FIX: Made the menu wider (80%) */
        left: -80%;
        top: 0;
        width: 80%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    /* Font size adjustment */
    :root {
        --font-size-m: 1.12rem;
        --font-size-l: 1.5rem;
        --font-size-xl: 2rem;
        --font-size-xxl: 2.3rem;
    }

    body.show-mobile-menu::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar .nav-menu .nav-link {
        color: var(--primary-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    /* Hero Section */
    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }


    .hero-section .hero-details :is(.subtitle, .description),
    .about-section .about-details {
        max-width: 100%;

    }

    .subtitles {
        display: inline;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--accent-color);
    }


    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    /* About mobile section */
    .about-section .section-content {
        gap: 70px;
        flex-direction: column;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    /* Contact section mobile adjustments */
    .contact-section .section-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .map-container,
    .contact-section .contact-form {
        min-width: 100%;
    }

    .service-card {
        padding: 30px 20px !important;
        min-height: 350px !important;
    }

    /* Adjust spacing */
    .services-section .slider-wrapper {
        margin: 0 20px 50px !important;
        max-width: 100% !important;
    }

}


/* Responsive tweaks for Smaller Mobile Devices (Max Width 768px and below) */
body {
    overflow-x: hidden !important;
}

/* --------------------------------------------------------------------------
| MOBILE MEDIA QUERY: max-width 768px (GRID LAYOUT)
|-------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .services-section {
        /* Keep overall section padding moderate */
        padding: 50px 15px;
        min-height: auto;
        justify-content: flex-start;
    }

    /* | CRITICAL FIX 1: DISABLE SLIDER LAYOUT & APPLY GRID */
    .services-section .slider-container {
        position: relative !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 auto 40px !important;
        /* Slightly reduced bottom margin */
        max-width: 700px;
    }

    /* | CRITICAL FIX 2: FORCE 2-COLUMN GRID WRAPPING */
    .services-section .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        /* Reduced gap between cards for compactness */

        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }

    /* | CRITICAL FIX 3: RESET SLIDE PROPERTIES */
    .services-section .swiper-slide {
        flex-shrink: 1 !important;
        width: auto !important;
        margin: 0 !important;
    }

    /* | CRITICAL FIX 4: HIDE NAVIGATION CONTROLS */
    .services-section .swiper-button-next,
    .services-section .swiper-button-prev,
    .services-section .swiper-pagination {
        display: none !important;
    }

    /* -----------------------------------------------------------------------
    | CARD SIZE FIXES (Make cards shorter and fit more on screen)
    |----------------------------------------------------------------------- */
    .services-section .service-card {
        width: 100% !important;
        max-width: none;
        margin: 0 !important;
        padding: 15px 10px !important;
        /* Significantly reduced internal padding */
        box-sizing: border-box;
        min-height: auto;
        /* Ensure no minimum height forces vertical space */
    }

    /* Make the service image smaller */
    .service-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        /* Reduced margin below the image */
    }

    /* Reduce font size for title to save space */
    .service-card h3 {
        font-size: 1.1rem;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    /* Reduce font size for description to save space */
    .service-card p {
        font-size: 0.85rem;
    }

    /* Ensure the Learn More button is compact */
    .service-card .service-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    /* Cleanup pagination if it somehow appears */
    .services-section .swiper-pagination {
        margin-top: 20px;
    }
}



/* --- CRITICAL FIX FOR MOBILE/TABLET CARD BACKGROUND COLOR --- */

@media (max-width: 992px) {

    /* 1. Target the main content area of the entire services section */
    /* This ensures the area behind the slider is the correct light color */
    .services-section .section-content {
        background-color: #ffffff !important;
    }

    /* 2. Target the main Swiper container */
    /* This is the most likely culprit for the unwanted dark background */
    .slider-container.swiper {
        background-color: #ffffff !important;
    }

    /* 3. Target the Swiper wrapper and slides */
    /* Setting these to transparent allows the white background of the card to show through */
    .slider-wrapper,
    .services-grid.swiper-wrapper,
    .services-grid .swiper-slide {
        background-color: transparent !important;
    }

    /* 4. Ensure the actual card remains white with shadow */
    .service-card {
        background-color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* Ensure the card has a defined height to properly fill the area */
        height: 100%;
    }

    /* Optional: If the entire section is dark, you may need this too */
    .services-section {
        background-color: #f7f7f7;
        /* Use a very light grey or white */
    }
}