    .testimonials-container {
      max-width: 1300px;
      margin: auto;
      padding: 150px 0;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px 20px;
      justify-items: center;
      margin-top:55px;
    }

    .testimonial-image {
      width: 373px;
      height: 373px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-image:hover {
      transform: scale(1.05);
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Tablet: 2 columns */
    @media (max-width: 1024px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile: 1 column */
    @media (max-width: 750px) {
      .testimonials-grid {  
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 378px){
        .testimonial-image{
            width: 340px !important;
            height: 340px !important;
        }
    }