.testimonial-card {
  background: linear-gradient(to bottom, #eef4ff, #fbfcff);
  height: 265px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 15px;
  color: #002454;
  font-size: 30px;
  font-weight: bold;
}

.testimonial-text {
  margin-top: 30px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  -webkit-line-clamp: unset;
  overflow: auto;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.testimonial-name {
  color: #107cc7;
  font-weight: bold;
}

.testimonial-stars {
  color: #f7ac05;
}