.testimonials{
    background-image: url(../../img/banner.jpg);
    height: 300px; 
  border-radius: 10px; 
  background-size: cover; /* Add this line to scale the image to cover the container */ 
  background-repeat: no-repeat; /* Add this line to prevent the image from repeating */ 
  background-position: center; /* Optional, to center the image horizontally and vertically */ 
    
  }
  .testimonials h1{
    color: white;
    font-size: 500%;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', 'sans-serif';
    text-align: center;
    position: relative;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
  }
  
  .testimonials-containt {
    text-align: center;
    padding: 50px;
    height: 1200px;
    background-color: white;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    display: inline-block;
    position: relative;
    width: 300px;
    height: 400px;
    animation: fadeInUp 2s ease-in-out;
  }
  
  .testimonial-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    
  }
  
  .rating {
    color: gold;
  }
  
  .name {
    font-weight: bold;
    text-align: right;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

    