/* Trusted By Section Styles */
.trusted-by-section {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.trusted-by-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 40px;
    opacity: 0.8;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.agency-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px; /* Slightly more compact */
    height: 40px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 
     * Premium "White Silhouette" Filter Stack for Dark Themes:
     * 1. grayscale(100%): Remove all color
     * 2. invert(1): Invert blacks to white, whites to black (makes white backgrounds blend into dark theme!)
     * 3. brightness(2): Boost greys to pure white
     * 4. opacity(0.5): Make them subtle 
     */
    filter: grayscale(100%) invert(1) brightness(2) opacity(0.5);
    cursor: pointer;
}

.agency-logo-item:hover {
    filter: grayscale(100%) invert(1) brightness(2) opacity(1);
    transform: scale(1.08);
}

.agency-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Optional: Scrolling Marquee for many logos */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-140px * 7 - 40px * 7)); }
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 40px;
}

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