
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1rem;
  padding-bottom: 20px;
}

.testimonial-card {
  flex: 0 0 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

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

.testimonial-content .stars {
  color: #f6c026;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid #ddd;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: #222;
}

.author-info span {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-dots {
  text-align: center;
  margin-top: 10px;
}

.testimonial-dots span {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots span.active {
  background-color: #222;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 48%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 32%;
  }
}
