/* Trusted By Logos - SVG Animations */

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  padding: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover svg {
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
}

.logo-item svg path,
.logo-item svg circle,
.logo-item svg rect {
  transition: fill 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover svg path,
.logo-item:hover svg circle,
.logo-item:hover svg rect {
  fill: #22d3ee;
  stroke: #22d3ee;
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-logos {
    gap: 20px;
  }

  .logo-item {
    width: 100px;
    height: 50px;
  }
}
