.section-12 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  transition: all 0.5s ease;
}

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

.section-heading {
  font-size: 2.5rem;
  color: #003E65;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #000;
}

.testimonials-slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-box {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 20px;
  background: white;
  border-radius: 15px;
  margin: 0 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.testimonial-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 5px 0;
}

.testimonial-rating {
  font-size: 1.2rem;
  color: #FFA41C;
  margin-bottom: 10px;
}

.testimonial-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  max-width: 500px;
  padding: 0 100px;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003E65;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

.prev-btn:hover, .next-btn:hover {
  background: #005A8D;
}

/* Responsive: 1 box on mobile */
@media (max-width: 768px) {
  .testimonial-box {
    flex: 0 0 100%;
  }
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.navigation-buttons button {
  background-color: #003E65;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.navigation-buttons button:hover {
  background-color: #005A8D;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .section-heading {
      font-size: 2.5rem;
  }

  .section-subheading {
      font-size: 1.2rem;
  }

  .testimonial-box {
      height: auto;
  }
}

@media screen and (max-width: 425px) {
  .section-heading {
      font-size: 2rem;
  }

  .section-subheading {
      font-size: 1rem;
  }

  .testimonial-box {
      height: auto;
  }
}