body {
  margin: 0;
  padding: 0;
}

.testimonial-section {
  text-align: center;
  margin-top: 5px;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin: 0;            /* remove all margins */
  line-height: 1.2;     /* tighter line spacing */
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  animation: scroll 20s linear infinite;
}

/* Pause scrolling on hover */
.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial {
  flex: 0 0 260px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  color: #f4c542;
  font-size: 1.1rem;
}

.testimonial-date {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}

.testimonial-top {
  display: flex;
  flex-direction: column;
}

h4 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}








