.testimonials-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1a2a6c;
}

.testimonials-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.testimonial-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #1a2a6c;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  min-height: 250px;
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  z-index: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(-50%) scale(1.05);
  background-color: #1a2a6c;
  color: white;
  z-index: 2;
}

.testimonial-card.prev {
  opacity: 0.6;
  transform: translateX(-170%) scale(0.9);
  z-index: 1;
}

.testimonial-card.next {
  opacity: 0.6;
  transform: translateX(70%) scale(0.9);
  z-index: 1;
}

.testimonial-card.hidden {
  display: none;
}

.testimonial-card h4 {
  margin-top: 20px;
  font-weight: 600;
}

.testimonial-dots {
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 6px;
  background: #bbb;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background: #1a2a6c;
}