.testimonials-section {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #00d8ff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
}

.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.testimonial-card {
  background: #1a1a1a;
  border: 2px solid transparent;
  border-radius: 12px;
  flex: 0 0 300px;
  padding: 20px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: slideInLeft 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #00d8ff;
  box-shadow: 0 0 20px rgba(0, 216, 255, 0.2);
}

.testimonial-text {
  font-style: italic;
  color: #ccc;
  margin-bottom: 15px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
  color: #00d8ff;
}

.user-info span {
  font-size: 14px;
  color: #999;
}

/* Bounce In Delay */
.bounce-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { transform: translateX(-40px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 80%; }
}

@media (max-width: 480px) {
  .testimonial-card { flex: 0 0 95%; }
}
