.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.marquee {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
    gap: 1rem;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 6rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    background-color: rgba(0, 0, 0, 0.01);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.logo-card:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-card img {
    max-height: 4rem;
    max-width: 100%;
    object-fit: contain;
    filter: none;
}

.gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, #feeaf3, transparent);
    pointer-events: none;
    z-index: 10;
}
.contact-us-page .gradient-left {
    background: linear-gradient(to right, #fefdff, transparent);   
}
.product .gradient-left {
    background: linear-gradient(to right, #fefdff, transparent);   
}
.pricing .gradient-left {
    background: linear-gradient(to right, #fefdff, transparent);   
}
.gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to left, #ffffff, transparent);
    pointer-events: none;
    z-index: 10;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}
/* Responsive design */
@media (max-width: 768px) {
    /* .container {
        padding: 2rem 1rem;
    } */
    .brand-logos-title-sec {
    margin-top: 30px;
}
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .logo-card {
        width: 10rem;
        height: 5rem;
        padding: 1rem;
    }
    
    .logo-card img {
        max-height: 2.5rem;
    }
    .gradient-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 25%;
        height: 100%;
        background: linear-gradient(to left, #FFF3F2, transparent);
        pointer-events: none;
        z-index: 10;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.75rem;
    }
    
    .logo-card {
        width: 8rem;
        height: 4rem;
        padding: 0.75rem;
    }
    
    .logo-card img {
        max-height: 2rem;
    }
}