/* Section 2: Trusted By - Portfolio Specific Styles */
.portfolio-clients {
    background: #ffffff;
    padding: 100px 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.section-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

/* Animation for Section 2 */
.portfolio-clients {
    opacity: 0;
    animation: fadeInSection 1s ease-out 0.3s forwards;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Section 2 */
@media (max-width: 768px) {
    .portfolio-clients {
        padding: 60px 0;
    }

    .section-intro {
        font-size: 1rem;
        padding: 0 20px;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .clients-scroll {
        gap: 40px;
    }

    .client-logo {
        min-width: 150px;
        height: 100px;
    }
}