/* ==================== RNK Testimonial Styles ==================== */
.RNK-testimonials {
  background: linear-gradient(135deg, #f7fafc, #eef3f7);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: slideLeft 35s linear infinite;
}

.testimonial-box {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-box p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-box h5 {
  font-weight: 700;
  color: #0077cc;
}

.testimonial-box span {
  display: block;
  font-size: 0.9rem;
  color: #777;
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-500%); }
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-box {
    flex: 0 0 100%;
  }
  .testimonial-track {
    animation-duration: 30s;
  }
}
