/* Client Slider Styles */
.client-slider-wrapper {
    overflow: hidden;
    background: rgba(211, 223, 55, 0.1);
    border-radius: 20px;
    padding: 50px 20px;
    border: 1px solid rgba(211, 223, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.client-track {
    width: max-content;
    gap: 40px;
    transition: transform 0.3s ease;
}

.client-item {
    flex-shrink: 0;
}

.client-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: 220px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(211, 223, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 223, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 223, 55, 0.4);
    border-color: #d3df37;
}

.client-logo-container {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(211, 223, 55, 0.05);
    border: 1px solid rgba(211, 223, 55, 0.2);
    transition: all 0.3s ease;
}

.client-card:hover .client-logo-container {
    background: rgba(211, 223, 55, 0.15);
    border-color: #d3df37;
}

.client-logo {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.4s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

.client-info {
    width: 100%;
}

.client-name {
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.2;
}

.client-type {
    background: linear-gradient(135deg, #d3df37 0%, #b8c42f 100%);
    color: #000000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(211, 223, 55, 0.3);
}

@media (max-width: 768px) {
    .client-slider-wrapper {
        padding: 40px 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .client-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .client-track {
        gap: 25px;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        min-width: max-content;
        transition: transform 0.3s ease;
    }
    
    .client-card {
        width: 180px;
        height: 160px;
        padding: 25px 20px;
        flex-shrink: 0;
    }
    
    .client-logo-container {
        height: 70px;
        margin-bottom: 15px;
    }
    
    .client-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .client-type {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}