/* Trusted Section Styles */
.trusted-section {
    text-align: center;
    padding: 4rem 0 2rem 0;
    background: #ffffff;
}

.trusted-heading {
    font-size: 2.5rem;
    color: #666;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}

/* Marquee Section Styles */
.marquee-section {
    padding: 2rem 0 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
}

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

.marquee-content {
    display: flex;
    gap: 6rem;
    padding: 0 3rem;
    align-items: center;
}

.marquee-img {
    height: 100px;
    width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marquee-img:hover {
    transform: translateY(-5px);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Add gradient overlay for smooth edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
} 