.abib-client-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.abib-client-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.abib-client-slide {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.abib-client-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(0.1);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.abib-client-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0);
}

.abib-client-name {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    .abib-client-logo {
        max-height: 80px;
    }
}