
  .testimonials-section {
    width: 100%;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 800;
  }

  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .testimonial-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    scrollbar-width: none;
  }

  .testimonial-wrapper::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    min-height: 200px;
  }

  .quote {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
  }

  .info {
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
  }

  .name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
  }

  .date { font-size: 0.8rem; color: #aaa; }

  .nav-btn {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-btn:hover { background: #000; color: #fff; }

  /* Dots */
  .dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: 0.3s;
  }

  .dot.active {
    background: #222;
    width: 24px;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .nav-btn { display: none; }
    .section-title { font-size: 1.5rem; padding: 0 20px; }
  }

  @media (min-width: 1024px) {
    .testimonial-card { flex: 0 0 31%; }
  }
