/* Testimonials Section */
.testimonials {
  padding: 80px 0px;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonials-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.testimonials-heading {
  font-size: 48px;
  color: #0b0f28;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonials-subheading {
  font-size: 16px;
  color: #a1a1a1;
  line-height: 1.7;
}

.testimonials-carousel {
  width: 100%;
  overflow: visible;
  position: relative;
  margin-bottom: 48px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(100% - 300px);
  max-width: 950px;
  background: #f7f8fb;
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 48px;
  height: 48px;
  opacity: 1;
}

.testimonial-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.testimonial-image {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.testimonial-text {
  flex: 1;
  padding-right: 60px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 32px;
}

.testimonial-author {
  margin-top: auto;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #0b0f28;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.author-title {
  font-size: 14px;
  color: #6b7280;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1e2b79;
  background: transparent;
  color: #1e2b79;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #1e2b79;
  color: #ffffff;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: #1e2b79;
  width: 32px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 1280px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 200px);
  }
}

@media (max-width: 1024px) {
  .testimonials-heading {
    font-size: 40px;
  }
  .testimonial-card {
    flex: 0 0 calc(100% - 100px);
    padding: 40px;
  }
  .testimonial-image {
    width: 220px;
    height: 280px;
  }
  .testimonial-text {
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-heading {
    font-size: 36px;
  }
  .testimonial-card {
    flex: 0 0 100%;
    padding: 32px;
  }
  .testimonial-content {
    flex-direction: column;
  }
  .testimonial-image {
    width: 100%;
    height: 300px;
  }
  .testimonial-text {
    padding-right: 0;
    padding-top: 20px;
  }
  .quote-icon {
    width: 40px;
    height: 40px;
    top: 24px;
    right: 32px;
  }
}
