/* Testimonial Card Styling */
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f1f1f1;
  }
  
  .testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* Title Styling */
  #testimonials h2 {
    font-weight: bold;
    color: #333;
    position: relative;
  }
  
  #testimonials h2:after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .testimonial-card {
      margin-bottom: 20px;
    }
  }
  