/* Client Carousel Styles */
.client-list {
    width: 80%;
    /* max-width: 800px; */
    margin: 0 auto;
}

.client-list .item {
    text-align: center;
    padding: 20px;
}

.client-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.7;
}

/* Fallback for missing images */
.client-logo[src*="client-logo1.png"],
.client-logo[src*="client-logo2.png"] {
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    text-decoration: none;
}
.client-list span {
    display: flex;
    width: 148px;
    height: 90px;
    border-radius: 5px;
    padding: 0.5rem;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.2);
    background-color: white;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    transition: .3s all;
}
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .client-list .item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .client-list .item {
        padding: 10px;
    }
}
