.testimonial-marquee {
  overflow: hidden;
  background-color: #f1f4f8;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-header h2 {
  font-size: 2rem;
  color: #0E386F;
  margin-bottom: 10px;
}

.testimonial-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 40s linear infinite;
}

.testimonial-card {
  flex: 0 0 auto;
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  margin: 0 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  min-width: 320px;
  max-width: 400px;
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #0E386F;
  font-style: normal;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 260px;
    padding: 20px 16px;
    font-size: 0.95rem;
  }

  .testimonial-header h2 {
    font-size: 1.5rem;
  }

  .testimonial-header p {
    font-size: 0.95rem;
  }
}
