/* Trusted By Logo Section */
.trusted-section {
    position: relative;
    z-index: 5;
}

.trusted-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
}

.trusted-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    max-width: 280px;
    transition: all 0.4s var(--ease-expo-out);
    opacity: 0.5;
}

.trusted-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .trusted-logos-grid {
        gap: 2rem;
    }

    .trusted-logo-item {
        height: 60px;
        max-width: 140px;
    }
}
