/* testimonials.css */

.testimonials {
  padding: 4rem 0;
  background-color: #111;
  color: #fff;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  max-width: 350px;
  flex: 1 1 300px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
}

.author {
  margin-top: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.testimonial-nav {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-nav button {
  background: #e53935;
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-nav button:hover {
  background: #ff4d4d;
}

@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}
