/* Naval Client Testimonials Plugin CSS */

.naval-testimonial-section {
  background: #f8fff8;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #3caa3c;
  border-bottom: 4px solid #3caa3c;
  font-family: "Poppins", sans-serif;
}

.naval-testimonial-section h2 {
  color: #2b2b2b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial {
  max-width: 720px;
  background: #ffffff;
  border: 1px solid #e0f0e0;
  border-radius: 12px;
  padding: 25px 30px;
  margin: 0 auto 25px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.quote {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
}

.rating {
  color: #3caa3c;
  font-size: 18px;
  margin-bottom: 5px;
}

.client {
  color: #555;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
