/* ========================================
   CLIENTS SECTION STYLES
   ======================================== */
.clients-section {
    background-color: white;
    padding: 80px 5%;
    overflow: hidden;
}

.clients-container {
    max-width: 100%;
    margin: 0 auto;
}

.clients-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 900px;
}

.clients-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bfc932;
    margin-bottom: 15px;
}

.clients-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0b3d2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.clients-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.clients-scroll-wrapper {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.clients-row {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    animation: scroll-left 15s linear infinite;
}

.clients-row:nth-child(2) {
    animation: scroll-right 15s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.clients-row:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 5%;
    }

    .clients-title {
        font-size: 2rem;
    }

    .clients-description {
        font-size: 0.9rem;
    }

    .client-logo {
        width: 140px;
        height: 80px;
    }

    .clients-row {
        gap: 40px;
        margin-bottom: 30px;
    }
}
