.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #444;
  }
  
  .testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  }
  
  .testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(40% - 20px); /* 4 cards, with spacing */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-img {
    border-radius: 50%;
    height: 120px;
    width: 120px;
  }
  
 .para{
    text-align: center;
 }
  
  
  @media (max-width: 1200px) {
    .testimonial-card {
      width: calc(33.33% - 20px); 
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      width: calc(50% - 20px); 
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-card {
      width: 100%; 
    }
  }
  