/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

/* Custom utility classes */
.text-gradient {
  background: linear-gradient(to right, #12455A, #54BFE9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Component-specific styles */
.service-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.testimonials-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.testimonials-section h2 {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-marquee {
  display: flex;
  gap: 20px;
  animation: scroll-horizontal 20s linear infinite;
}

.testimonial-card {
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.author-info {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.author-info span {
  font-weight: bold;
}

.author-info small {
  display: block;
  color: #888;
}

@keyframes scroll-horizontal {
  from {
    transform: translateX(100%);
  }

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

@media (max-width: 768px) {
  .space-x-6>* {
    margin-bottom: 1rem;
    /* Add spacing between buttons on mobile */
  }
}

html,
body {
  overflow-x: hidden;
}