/* Testimonial Card Container */
.riaz-testimonial-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonial-card {
  border: 1px solid #424542;
  padding: 20px;
  margin: 0 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 360px;
  height: 320px;
  position: relative;
  font-family: "Lato", "Noto Sans Bengali", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Top Category Tag */
.testimonial-category {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #DDDDDD;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* Quotation Icon */

.testimonial-quote{
  display: block;
  width: 30px;
  height: 30px;
  margin: 20px 0;
}


/* Testimonial Text */
.testimonial-content {
  font-size: 16px;
  line-height: 1.5;
  color: #424542;
  min-height: 121px;
  flex-grow: 1;
}

/* Bottom Area */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.testimonial-avatar {
  display: block;
  width: 65px;
  height: 65px;
  margin: 20px 0;
  border-radius: 50%;
  
}
/* Avatar Image */
.testimonial-avatar img{
  object-fit: cover;
}

/* Name & Designation */
.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: #000;
  font-weight: 700;
  font-size: 15px;
}

.testimonial-designation {
  font-size: 14px;
  color: #424542;
}





@media (max-width: 1024px) {
  .testimonial-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-name {
    font-size: 14px;
  }

  .testimonial-designation {
    font-size: 13px;
  }

  .testimonial-content {
    font-size: 15px;
  }
}
