/* Testimonials Section Styles */

.absolute.-top-4.-left-4.w-12.h-12.rounded-full.flex.items-center.justify-center {
  background-color: #4d8bff;
}
.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  box-shadow: 0 15px 35px rgba(0, 85, 255, 0.1);
  transform: translateY(-5px);
}
.testimonials-section {
  padding: 4rem 0;
  position: relative;
  background: white;
}
.grid.grid-cols-1.md\:grid-cols-3.gap-8.pb-8 {
  justify-items: center;
}
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  padding: var(--spacing-lg);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  height: 100%;
  flex-direction: column;
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  background-color: #8b5cf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: absolute;
  top: -30px;
  left: 30px;
}

.testimonial-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: bold;
  color: #8b5cf6;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: #111827;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }
}
