/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #fdfbf5;
}

.testimonials h2 {
  font-size: 3.5rem;
  color: #f2864f;
  text-align: center;
  margin-bottom: 60px;
}

/* Card Styling */
.testimonial-card {
  background-color: #ffedd5;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* Quote Mark Inside Box */
.quote-mark {
  font-size: 2rem;
  color: #f2864f;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin: 20px 0 40px;
}

/* Author Styling */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background-color: #ffe680;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Author Name */
.author-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #555;
}

/* Social Proof Badge */
.social-proof {
  margin-top: 30px;
  text-align: center;
  font-size: 1rem;
  color: #333;
  background-color: white;
  padding: 15px 30px;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-proof span {
  font-weight: bold;
}


@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    margin: 15px 0 25px;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .social-proof {
    font-size: 0.9rem;
    padding: 12px 20px;
    margin-top: 20px;
  }
}
