/* ======================================
   CLIENTS LOGO CAROUSEL
   ====================================== */

.clients-logo-carousel {
    padding: 30px 0;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    height: 180px;
    margin: 0 10px;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.client-logo-item figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Swiper Specific Styles */
.clients-logo-carousel .swiper {
    /* overflow: visible; */
    padding: 10px 0 30px;
}

.clients-logo-carousel .swiper-slide {
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .client-logo-item {
        height: 150px;
        margin: 0 5px;
    }
    
    .client-logo-item img {
        max-height: 110px;
    }
    
    .clients-logo-carousel {
        margin-top: 30px;
    }
}
