/* Clients Section */
.clients-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.clients-section .section-header {
    margin-bottom: 3rem;
}

.clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-row {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
    width: fit-content;
    /* Remove all CSS animations - GSAP will handle it */
}

.clients-row:last-child {
    margin-bottom: 0;
}

.client-logo {
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
    border-color: #FFA500;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0;
        min-height: auto;
    }

    .clients-section .section-header {
        margin-bottom: 2rem;
    }

    .clients-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .client-logo {
        width: 140px;
        height: 90px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 30px 0;
        min-height: auto;
    }

    .clients-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .client-logo {
        width: 110px;
        height: 70px;
        padding: 0.9rem;
    }
}

@media (max-width: 360px) {
    .client-logo {
        width: 95px;
        height: 60px;
        padding: 0.7rem;
    }
    
    .clients-row {
        gap: 0.8rem;
    }
}
