.testimonials01 {
  padding: 6rem 0;
  background-color: var(--bs-light);
}

.testimonials01 .testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonials01 .testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonials01 .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.testimonials01 .testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #34495e;
  text-align: right;
}

.testimonials01 .author-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: #e0e6ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials01 .author-image svg {
  width: 32px;
  height: 32px;
  color: #95a5a6;
}

.testimonials01 .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.1;
  font-size: 2rem;
}

@media (max-width: 991px) {
  .testimonials01 {
    padding: 4rem 0;
  }
  .testimonials01 .testimonial-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .testimonials01 {
    padding: 3rem 0;
  }
  .testimonials01 .testimonial-text {
    font-size: 1rem;
  }
}