
    .cls-slider-wrapper {
        overflow: hidden;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 0;
        position: relative;
    }
    
    .cls-slider-track {
        display: flex;
        gap: 30px;
        animation: cls-scroll 20s linear infinite;
        width: max-content;
    }
    
    .cls-slide {
        flex: 0 0 200px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 10px;
    }
    
    .cls-logo-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cls-logo {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: grayscale(100%) brightness(0.9);
        opacity: 0.7;
    }
    
    .cls-slide:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 2;
    }
    
    .cls-slide:hover .cls-logo {
        transform: scale(1.1);
        filter: grayscale(0%) brightness(1);
        opacity: 1;
    }
    
    @keyframes cls-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .cls-slide {
            flex: 0 0 150px;
            height: 75px;
        }
        .cls-slider-track {
            gap: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .cls-slide {
            flex: 0 0 120px;
            height: 60px;
            padding: 5px;
        }
        .cls-slider-track {
            gap: 15px;
        }
    }
    
    /* Pause on hover for better UX */
    .cls-slider-wrapper:hover .cls-slider-track {
        animation-play-state: paused;
    }
    