@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
:root {
  --plainclr:#fff;
  --darkclr:#000;
  --themeprimaryclr:#555;
  --themesecondaryclr:#1abc9c;
  --borderone:#764ba2;
  --themethirdclr:#333;
  --yellowclr:#f6b93b;
  --icon-hover-clr:#f1c40f;
  --lightbg:#f5e6ff;
}

.review-sec-5 {
  font-family: "Inter", sans-serif;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--darkclr);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.3s;
}

.testimonial-card {
  background: var(--plainclr);
  border-radius: 15px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: var(--themeprimaryclr);
}

.testimonial-card:hover {
  background-color: var(--themesecondaryclr); /* fresh teal */
  color: var(--darkclr); /* white text */
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 30px rgba(26, 188, 156, 0.6);
}

.testimonial-card:hover .client-name,
.testimonial-card:hover .testimonial-text {
  color: var(--plainclr);
}

.testimonial-card:hover .stars i {
  color: var(--icon-hover-clr); /* golden stars */
}

/* Also change the quote mark color */
.testimonial-card:hover .testimonial-text::before {
  color: var(--lightbg);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--borderone);
  box-shadow: 0 3px 8px rgba(118, 75, 162, 0.4);
  flex-shrink: 0;
}

.client-name {
  font-weight: 700;
  margin: 0;
  font-size: 1.2rem;
  color: var(--themethirdclr);
}

.stars span {
  color: var(--yellowclr);
  font-size: 1.2rem;
  margin-right: 2px;
}

.stars .empty {
  color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.4rem 1rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=reviewsDesign5.css.map */