/* AMEDAP Clients Frontend Styles */
/* This file provides fallback styles if theme CSS is not available */

.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.partners-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.partner-card {
    flex: 0 0 240px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    /* transform: translateY(-5px); */
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 15px; */
}

.partner-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-section .section-title {
        font-size: 2rem;
    }
    
    .partner-card {
        flex: 0 0 200px;
    }
    
    .partners-track {
        gap: 20px;
    }
}
