/* ================================
   TRUSTED PARTNERS SLIDER
   Compact, Minimal Height, Inline Design
   ================================ */

.trusted-partners-section {
    padding: 10px 0px;
    background: white;
    overflow: hidden;
}

/* Header - Inline with minimal spacing */
.trusted-partners-header {
    text-align: center;
    margin-bottom: 25px;
}

.trusted-partners-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.trusted-partners-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Slider Wrapper - Minimal Height */
.trusted-partners-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.trusted-partners-slider {
    display: flex;
    gap: 100px;
    animation: partners-scroll var(--scroll-speed, 20s) linear infinite;
    width: fit-content;
}

.trusted-partners-slider:hover {
    animation-play-state: paused;
}

/* Logo Items - Compact & Clean */
.trusted-partner-logo {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.trusted-partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
    background: white;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .trusted-partners-section {
        padding: 30px 15px;
    }
    
    .trusted-partners-title {
        font-size: 1.3rem;
    }
    
    .trusted-partners-subtitle {
        font-size: 0.85rem;
    }
    
    .trusted-partner-logo {
        width: 120px;
        height: 55px;
    }
    
    .trusted-partners-slider {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .trusted-partners-section {
        padding: 25px 15px;
    }
    
    .trusted-partners-title {
        font-size: 1.2rem;
    }
    
    .trusted-partner-logo {
        width: 110px;
        height: 50px;
    }
    
    .trusted-partners-slider {
        gap: 25px;
    }
}
