html[dir="rtl"] .testimonial-slider .testimonial-card {
  text-align: right;
}
html[dir="rtl"] .testimonial-slider .slider-track {
  flex-direction: row-reverse;
}
.testimonial-slider .testimonial-card {
  font-family: 'Poppins', 'Arial', sans-serif;
  direction: inherit;
}
.testimonial-slider .testimonial-name h4, .testimonial-slider .testimonial-name p {
  word-break: break-word;
}
.testimonial-slider .testimonial-description {
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 0 8px;
}
.testimonial-slider .testimonial-photo img {
  box-shadow: 0 2px 8px rgba(65,114,165,0.10);
}
@media (max-width: 600px) {
  .testimonial-slider .testimonial-card {
    min-width: 90vw;
    padding: 20px 8px 16px 8px;
  }
}
/* Testimonial Card Slider Styles (Inspired by CodingNepal) */
.testimonial-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-slider .slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,2.08,.55,.44);
}
.testimonial-slider .testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin: 0 16px;
  padding: 32px 24px 24px 24px;
  min-width: 320px;
  max-width: 350px;
  flex: 0 0 80vw;
  text-align: center;
  position: relative;
}
.testimonial-slider .testimonial-photo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4172a5;
  margin-bottom: 16px;
}
.testimonial-slider .testimonial-name h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #4172a5;
}
.testimonial-slider .testimonial-name p {
  margin: 0;
  color: #888;
  font-size: 0.95rem;
}
.testimonial-slider .testimonial-description {
  margin: 18px 0 0 0;
  color: #333;
  font-size: 1rem;
}
.testimonial-slider .slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.testimonial-slider .slider-btn {
  background: #4172a5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-slider .slider-btn:disabled {
  background: #b0c4de;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .testimonial-slider .testimonial-card {
    flex: 0 0 350px;
  }
}
