.testimonials-section {
  padding: 80px 30px;
  background: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.btn-icon {
  width: 30px;
  height: 30px;
}
.testimonial-card {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.testimonial-card.black {
  background: #2c3e50;
  color: white;
}

.testimonial-card.green {
  background: #32cd32;
  color: white;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid white;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.rating {
  color: #c1ff72;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-avatar {
    margin-bottom: 10px;
  }
}
