 .section-testimonials {
      max-width: 1100px;
      margin: 80px auto;
      padding: 0 20px;
      text-align: center;
    }

    .subtitle {
      color: #ff4d6d;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    p.desc {
      font-size: 15px;
      color: #555;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .testimonial-container {
      display: flex;
      gap: 20px;
      overflow: hidden;
      justify-content: center;
      position: relative;
    }

    .testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      width: 320px;
      flex-shrink: 0;
      transition: 0.4s ease;
    }

    .testimonial-card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 20px;
      text-align: left;
      line-height: 1.6;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .profile img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile-info h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .profile-info p {
      font-size: 12px;
      color: #777;
      margin: 0;
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      background: white;
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: 0.3s ease;
    }

    .arrow:hover {
      background: #ff4d6d;
      color: white;
    }

    .arrow.left {
      left: -20px;
    }

    .arrow.right {
      right: -20px;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        width: 90%;
      }
      .testimonial-container {
        justify-content: flex-start;
      }
      .arrow {
        display: none;
      }
    }

    @media (max-width: 1200px) {
  .section-testimonials {
    max-width: 900px;
    padding: 0 10px;
  }
  .testimonial-card {
    width: 280px;
  }
}

/* Tablets and small desktops */
@media (max-width: 992px) {
  .section-testimonials {
    max-width: 700px;
    padding: 0 5px;
  }
  .testimonial-card {
    width: 220px;
    padding: 18px;
  }
  h2 {
    font-size: 26px;
  }
}

/* Small tablets */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .testimonial-card {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 20px auto;
  }
  .arrow {
    display: none;
  }
  h2 {
    font-size: 22px;
  }
}

/* Mobile devices */
@media (max-width: 678px) {
  .section-testimonials {
    max-width: 100%;
    margin: 40px 0;
    padding: 0 2vw;
  }
  .testimonial-card {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 13px;
  }
  .profile img {
    width: 36px;
    height: 36px;
  }
  .subtitle {
    font-size: 12px;
  }
  h2 {
    font-size: 18px;
  }
  p.desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
}