/* --- SocialFormula | Trust & Featured In Component --- */
.trust-section {
    padding: 50px 0;
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    overflow: hidden;
    position: relative;
}

.trust-label {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

/* SLIDER CONTAINER */
.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Premium Fade Effect on Edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content; /* Adjusts to content width */
    animation: scroll 30s linear infinite;
}

/* INDIVIDUAL LOGO STYLE */
.trust-brand {
    font-family: 'Bebas Neue', sans-serif; /* Makes text look like logos */
    font-size: 28px;
    color: #CBD5E1; /* Subtle Gray */
    margin: 0 40px; /* Gap between logos */
    white-space: nowrap;
    user-select: none;
    transition: color 0.3s ease;
    cursor: default;
}

.trust-brand:hover {
    color: #0F172A; /* Darken on hover */
}

/* ANIMATION KEYFRAMES */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves half way, then resets instantly */
}

/* PAUSE ON HOVER */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}