/* Industries We Work With - Marquee Fix */

.logo-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.logo-marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 60s linear infinite;
    width: fit-content;
    align-items: center;
    will-change: transform;
}

.logo-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 110px;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-marquee-item img {
    max-width: 200px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block !important;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-marquee-item:hover img {
    transform: scale(1.05);
}

/* SVG specific fixes */
.logo-marquee-item img[src$=".svg"] {
    width: 200px;
    height: auto;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .logo-marquee-track {
        gap: 50px;
        animation-duration: 45s;
    }
}

@media screen and (max-width: 767px) {
    .logo-marquee-wrapper {
        padding: 15px 0;
    }
    
    .logo-marquee-track {
        gap: 40px;
        animation-duration: 35s;
    }
    
    .logo-marquee-item {
        min-width: 150px;
        height: 110px;
    }
    
    .logo-marquee-item img {
        max-width: 150px;
        max-height: 110px;
    }
}

@media screen and (max-width: 480px) {
    .logo-marquee-track {
        gap: 30px;
        animation-duration: 25s;
    }
    
    .logo-marquee-item {
        min-width: 120px;
        height: 90px;
    }
    
    .logo-marquee-item img {
        max-width: 120px;
        max-height: 90px;
    }
}

/* Industry title styling */
.industry-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

@media screen and (max-width: 767px) {
    .industry-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .industry-title {
        font-size: 1.75rem;
    }
}
