.testimonials-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #111113;
  border: 1px solid rgb(255, 255, 255,.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  animation: fade-in-up 0.6s ease-out both;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #daff01;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #dadada;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgb(255, 255, 255,.1);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: #daff01;
  color: #111113;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #a1a1aa;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card svg {
    width: 20px;
    height: 20px;
    fill: #daff01;
    stroke: #daff01;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

