.swiper-container {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}
.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    width: auto; /* Allow the width to adjust automatically */
    flex: 1 1 auto; /* Ensures slides grow and shrink to fit */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Increased padding for better layout */
}

.client-logo {
    max-width: 15vw; /* Adjusted for better responsiveness */
    max-height: 10vh; /* Adjusted for better responsiveness */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}
/* Media Queries */

@media (max-width: 480px) {
    .swiper-container {
        height: auto;
    }
@media (max-width: 768px) {
    .swiper-container {
        height: auto; /* Allow height to adjust with content */
    }

    .swiper-slide {
        padding: 4vw; /* Increased padding for better layout */
    }

    .client-logo {
        max-width: 12vw;
        max-height: 8vh;
    }
}

@media (max-width: 480px) {
    .swiper-container {
        height: 12vh;
    }

    .swiper-slide {
        padding: 2vw; /* Increased padding for better layout */
    }

    .client-logo {
        max-width: 10vw;
        max-height: 6vh;
    }
}