.happy-customers-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.customers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-family: "Lilita One", sans-serif;
}

.customers-header h2 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
}

.slider-arrows {
  display: flex;
  gap: 20px;
  font-size: 24px;
  cursor: pointer;
}

.slider-arrows i {
  width: 24px;
  height: 24px;
}

.testimonials-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
  font-family: "Ubuntu", sans-serif;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease;
}

.rating {
  color: #ffc633;
  font-size: 20px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-info h3 {
  font-size: 20px;
  font-weight: 700;
}

.verified-icon {
  color: #01ab31;
  font-size: 18px;
}

.quote {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .customers-header h2 {
    font-size: 32px;
  }
  .testimonial-card {
    min-width: 300px;
    padding: 20px;
  }
}
