/* Section Container */
.testimonial-slider-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 15px;
  box-sizing: border-box;
}

.testimonial-swiper {
  width: 100%;
  padding-bottom: 80px !important;
}

/* Equal Height Fix for Swiper Slides */
.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

/* Card Style */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Card Top */
.card-top {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Quote Icon Box - Positioned on Top, Not Left */
.quote-icon-box {
  margin-bottom: 20px; /* কোট আইকন এবং রিভিউ টেক্সটের মাঝখানে গ্যাপ */
}

.quote-badge-img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  display: block;
}

/* Review Text - Clean full width alignment, no extra left padding */
.review-text {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin: 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-align: left;
  padding-left: 0 !important; 
}

/* Bottom Content */
.card-bottom {
  margin-top: 24px;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 20px;
}

.user-name {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0 0 4px 0;
  letter-spacing: 0;
  font-family: 'Cormorant Garamond', serif;
  text-align: left;
}

.user-role {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0;
  display: block;
  text-align: left;
}

/* --- Pagination Dots --- */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  width: 13px !important;
  height: 13px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .testimonial-card {
    padding: 24px;
  }
  .review-text {
    font-size: 14px;
    line-height: 22px;
  }
}