/* TRUSTED PARTNERS */
.trusted-partners-section {
  padding: 3rem 0 3.2rem;
  background: #0f1f33;
  overflow: hidden;
}

.trusted-partners-title {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

.trusted-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0f1f33 0%, rgba(15, 31, 51, 0) 100%);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0f1f33 0%, rgba(15, 31, 51, 0) 100%);
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: trustedSlide 20s linear infinite;
  will-change: transform;
}

.trusted-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.trusted-item {
  flex: 0 0 auto;
  color: var(--white);
  white-space: nowrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  min-width: 150px;
  padding: 0;
  border: 0;
}

.alphecca-item {
  gap: 0.75rem;
}

.alphecca-item span {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.logo-item img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 76px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.02);
}

@keyframes trustedSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
}

@media screen and (max-width: 768px) {
  .trusted-partners-section {
    padding: 2.5rem 0;
  }

  .trusted-group {
    gap: 2rem;
    padding-right: 2rem;
  }

  .logo-item {
    height: 64px;
    min-width: 124px;
  }

  .logo-item img {
    max-width: 160px;
    max-height: 64px;
  }

  .trusted-marquee::before,
  .trusted-marquee::after {
    width: 60px;
  }
}

@media screen and (max-width: 480px) {
  .trusted-partners-title {
    padding: 0 1.25rem;
    line-height: 1.6;
  }

  .trusted-group {
    gap: 1.5rem;
    padding-right: 1.5rem;
  }

  .logo-item {
    height: 56px;
    min-width: 110px;
  }

  .logo-item img {
    max-width: 140px;
    max-height: 56px;
  }
}
