/* Keep the original design EXACTLY as it was in style.css */
.partners-grid { 
    display:grid; 
    gap:2rem 2.5rem; 
    grid-template-columns:repeat(8,1fr); 
    align-items:center; 
    justify-items:center; 
    transition: opacity 0.5s ease-in-out;
}

.partner-item { 
    position:relative; 
    width:100%; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    padding:.75rem 0; 
}

.partner-item img { 
    max-height:55px; 
    width:auto; 
    filter:grayscale(100%) brightness(.8); 
    opacity:.75; 
    transition:.35s ease; 
    max-width:100%; 
}

.partner-item:hover img { 
    filter:grayscale(0%) brightness(1); 
    opacity:1; 
    transform: translateY(-4px) scale(1.05); 
}

/* Only add fade effect for swapping - keep everything else identical */
.partners-grid.fade-out {
    opacity: 0;
}

.partners-grid.fade-in {
    opacity: 1;
}

/* Keep original responsive design exactly */
@media (max-width:1400px){ 
    .partners-grid { grid-template-columns:repeat(6,1fr);} 
}

@media (max-width:992px){ 
    .partners-grid { grid-template-columns:repeat(4,1fr); gap:1.5rem 1.75rem; } 
    .partner-item img { max-height:48px; } 
}

@media (max-width:576px){ 
    .partners-grid { grid-template-columns:repeat(3,1fr); gap:1.25rem 1rem; } 
    .partner-item img { max-height:42px; } 
}

/* Simple indicators - minimal and clean */
.partners-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
}

.partners-progress {
    width: 100px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 15px;
}

.progress-bar {
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1px;
    width: 0%;
    transition: width 0.1s linear;
}
