/* Our Clients Section Styles */
.our-clients-section {
    padding: 60px 0;
    overflow: hidden;
}

.clients-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

/* .clients-header {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    z-index: 10;
    background: var(--color-primary);
}

.header-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 200px;
}

.header-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-content p {
    color: #bdc3c7;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.header-slant {
    width: 60px;
    background: var(--color-primary);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
} */

.clients-marquee {
    /* margin-left: 260px; */
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 15s linear infinite;
    padding: 20px 0;
}

.marquee-reverse {
    animation: marquee-scroll-reverse 12s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: 10px;
    padding: 15px 25px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 992px) {
    .clients-header {
        position: relative;
        height: auto;
        width: 100%;
        flex-direction: column;
    }
    
    .header-slant {
        width: 100%;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
    }
    
    .clients-marquee {
        margin-left: 0;
        padding-top: 0;
    }
    
    .client-logo {
        width: 120px;
        height: 60px;
        padding: 10px 20px;
    }
    
    .marquee-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 20px;
        text-align: center;
    }
    
    .header-content h2 {
        font-size: 2rem;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
        padding: 8px 15px;
    }
    
    .marquee-content {
        gap: 30px;
    }
    
    .clients-wrapper {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .our-clients-section {
        padding: 40px 0;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .header-content p {
        font-size: 0.9rem;
    }
    
    .client-logo {
        width: 80px;
        height: 40px;
        padding: 5px 10px;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    .marquee-track {
        padding: 10px 0;
    }
}