/* Trusted by Section Styling */
.trusted-by-section {
    padding: 60px 0 30px 0;
    background: #f8f9fa;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trusted-by-section .section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.trusted-by-section .section-heading h2 span.highlight-1 {
    color: #007bff;
}

.trusted-by-section .section-heading h2 span.highlight-2 {
    color: #ff6b6b;
}

.trusted-by-section .sub-text {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Logo Slider Container */
.logo-slider {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logo-track {
    display: flex;
    width: calc(250px * var(--logo-count) * 2);
    animation: scroll calc(var(--logo-count) * 4s) linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * var(--logo-count)));
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trusted-by-section {
        padding: 40px 0;
    }

    .trusted-by-section .section-heading h2 {
        font-size: 26px;
    }

    .logo-item {
        width: 180px;
        padding: 0 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * var(--logo-count)));
        }
    }
}
