.trusted-tech {
  padding: 90px 0;

  .trusted-tech {
    background: linear-gradient(180deg, var(--bg-light), var(--bg-dark));
  }

  overflow: hidden;
}

.trusted-tech .section-title,
.trusted-tech .section-subtitle,
.trusted-tech .section-tag {
  text-align: center;
  display: block;
}

.tech-slider {
  margin-top: 50px;

  overflow: hidden;
}

.tech-track {
  display: flex;

  gap: 22px;

  width: max-content;

  animation: techScroll 35s linear infinite;
}

.tech-slider:hover .tech-track {
  animation-play-state: paused;
}

.tech-card {
  min-width: 170px;

  height: 80px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: var(--bg-light);

  color: var(--text);
  border: 1px solid var(--border);

  border-radius: 18px;

  font-weight: 600;

  font-size: 18px;

  box-shadow: var(--shadow-sm);

  transition: 0.35s;
}

.tech-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);

  color: var(--primary);
}

@keyframes techScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .tech-card {
    min-width: 130px;

    height: 65px;

    font-size: 15px;
  }

  .tech-track {
    gap: 15px;

    animation-duration: 25s;
  }
}
