.trusted-section {
    background: linear-gradient(135deg, #23242a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 34, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 34, 34, 0.05) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

.trusted-title {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.trusted-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2222, transparent);
}

.trusted-logos-container {
    position: relative;
    overflow: hidden;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    animation: scrollLogos 30s linear infinite;
}

.trusted-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trusted-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}

.trusted-logos::before,
.trusted-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.trusted-logos::before {
    left: 0;
    background: linear-gradient(90deg, #23242a, transparent);
}

.trusted-logos::after {
    right: 0;
    background: linear-gradient(-90deg, #23242a, transparent);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes gradientPulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Hover Effects */
.trusted-logo {
    position: relative;
}

.trusted-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 34, 34, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.trusted-logo:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-title {
        font-size: 1.5rem;
    }

    .trusted-logos {
        gap: 20px;
    }

    .trusted-logo {
        height: 30px;
    }
}

/* Animation for logos on hover */
.trusted-logo {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.trusted-logo:hover {
    animation: none;
    transform: scale(1.1) rotate(5deg);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,1.56,.64,1), transform 0.7s cubic-bezier(.4,1.56,.64,1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
} 