.testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    margin-top: 150px;
  }

  .testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20PX;
  }

  .testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    flex: 0 0 calc(100% / 1 - 20px); /* default for mobile */
    box-sizing: border-box;
    height: 230px;
    position: relative;
  }

  .testimonial-card::before {
    content: "“";
    font-size: 3rem;
    color: #007bff;
    position: absolute;
    top: 10px;
    left: 15px;
  }

  .testimonial-card p {
    margin-top: 40px;
    font-size: 0.8em;
    color: #333;
  }

  .testimonial-card .name {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-weight: bold;
    color: #111;
  }

  .nav-buttons {
    margin-top: 20px;
  }

  .nav-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }

  .nav-buttons button:hover {
    background-color: #0056b3;
  }

  /* Medium screens */
  @media (min-width: 600px) {
    .testimonial-card {
      flex: 0 0 calc(100% / 2 - 20px);
    }
  }

  /* Large screens */
  @media (min-width: 992px) {
    .testimonial-card {
      flex: 0 0 calc(100% / 3 - 20px);
    }
  }