.testimonials-section { padding: 4rem 2rem; overflow: hidden; }
.testimonials-container {
  display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2rem;
  width: max-content; animation: scroll 60s linear infinite;
}
.testimonials-container:hover { animation-play-state: paused; }

.testimonial-box {
  background: rgba(30, 30, 30, 0.8); padding: 2rem; border-radius: 16px; text-align: center;
  border: 1px solid #2a2a2a; transition: all 0.3s ease; width: 300px; flex: 0 0 auto;
}
.testimonial-box:hover { transform: translateY(-5px); border-color: #00ffe7; background: rgba(30, 30, 30, 0.95); }
.testimonial-box h3 { color: #00ffe7; margin-bottom: 1rem; }
.testimonial-box p { color: #ccc; font-size: 0.95rem; line-height: 1.5; }

.testimonials-link { text-align: center; margin-top: 2rem; }
.testimonials-link a {
  background: rgba(0, 255, 231, 0.1); color: #00ffe7; border: 1px solid #00ffe7;
  font-weight: 600; padding: 0.8rem 2rem; border-radius: 50px; display: inline-block;
  text-decoration: none; transition: all 0.3s ease;
}
.testimonials-link a:hover { background: rgba(0, 255, 231, 0.2); transform: translateY(-2px); }
