/* Logo Slider Styles */
.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    /* background: white; */
    border-radius: 15px;
    /* padding: 40px 20px; */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.logo-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(200px * 14); /* Adjust based on number of logos */
}

.logo-slide {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.brand-logo {
    height: 130px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7)); /* Half of total slides */
    }
}

/* Pause animation on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Carousel Indicators */
.carousel-indicators-custom {
    gap: 15px;
    margin: 20px 0;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #666;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot:hover {
    border-color: #007bff;
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #014377;
    border-color: #014377 ;
}



/* Responsive Design */
@media (max-width: 768px) {
    .logo-slide {
        flex: 0 0 150px;
        padding: 0 10px;
    }
    
    .brand-logo {
        height: 60px;
        max-width: 120px;
    }
    
    .logo-track {
        width: calc(150px * 14);
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 7)); }
    }
}
