 .testimonial-section {
    background: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    cursor: grab;
    overflow: hidden;
    position: relative;
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    width: 100%;
  }
  
  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

/* Only on smaller screens: make slide fill the full screen width */
@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100vw;
  }
}

  
  .testimonial-slider:active {
    cursor: grabbing;
  }


  .testimonial-content {
    display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  }
  
  .testimonial-image {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #2c3e50;
    max-width: 600px;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 4px solid #193442;
  }
  
  .testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: #193442;
    font-family: Georgia, serif;
    opacity: 0.3;
  }
  
  .testimonial-info h4 {
    margin: 0.3rem 0 0;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  .slider-btn {
    background-color: #001d33;
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 8px;
  }
  
  .slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .slider-dots .active {
    background-color: #001d33;
  }
  



  @media (max-width: 768px) {
    .testimonial-slide {
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }
  
    .testimonial-image {
      width: 140px;
      height: 140px;
      margin-bottom: 1rem;
    }
  
    .testimonial-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
  
    .testimonial-quote {
      max-width: 90%;
      margin: 0 auto 1rem;
      font-size: 1rem;
      padding: 1.2rem;
      text-align: center;
    }
  
    .testimonial-info {
      text-align: center;
    }
  }