/* Testimonials Section */
.testimonials-section {
  padding: 110px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31,79,163,0.1), transparent);
  z-index: 0;
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  height: 300px;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial-content p {
  font-size: 22px;
  font-style: italic;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-logo {
  width: clamp(45px, 12vw, 65px);
  height: clamp(45px, 12vw, 65px);
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  color: #1f4fa3;
  font-size: 18px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-nav {
  text-align: center;
}

.nav-btn {
  background: white;
  border: 2px solid #e1e5e9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #1f4fa3;
  color: white;
  border-color: #1f4fa3;
  transform: scale(1.1);
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(31,79,163,0.2);
  z-index: 9999;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff7a2f, #1f4fa3);
  width: 0%;
  transition: width 0.1s;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 16px;
  }

  .testimonial-content p {
    font-size: 18px;
  }

  .testimonial-container {
    height: 280px;
  }
}
