/* Custom CSS to complement Tailwind */

/* Logo carousel animation styles */
.logos-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logos-carousel {
  display: flex;
  animation: scrollLogos 25s linear infinite;
  width: fit-content;
}

.logo-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: grayscale(10%);
  flex: 0 0 auto;
  margin: 0 1rem;
}

.logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  filter: grayscale(0%);
  animation-play-state: paused;
}

.logo-item img {
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-item:hover img {
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(59, 130, 246, 0.2);
  font-family: 'Nunito', sans-serif;
  line-height: 1;
}
