.testimonials {
  padding: 80px 20px;
  background-color: #111;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.testimonials h2 {
  color: #ff6600;
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: linear-gradient(145deg, #1b1b1b, #252525);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin: 30px auto;
  max-width: 700px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.carousel img {
  width: 300px;
  height: 500px;
  display: none;
  margin: auto;
  border-radius: 10px;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  display: block;
}

.testimonial-text h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.testimonial-text p {
  color: #ccc;
  font-style: italic;
  margin-bottom: 10px;
}

.stars {
  color: #ffcc00;
  font-size: 20px;
}
