
    .testimonials-section {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-subtitle {
      font-size: 20px;
      color: #718096;
      font-weight: 400;
    }

    .carousel-container {
      position: relative;
      padding: 0 60px;
    }

   .carousel-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

/* Desktop only */
@media (hover: hover) and (pointer: fine) {
  .carousel-wrapper {
    overflow: visible;
  }
}

    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      gap: 24px;
    }

    .testimonial-card {
      flex: 0 0 calc(25% - 18px);
      background: linear-gradient(90deg, #ffffff 30%, #fdd96331 100%);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 24px 24px 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border-left: 2px solid #ffc55a;
      border-bottom: 2px solid #ffc55a;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .testimonial-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .customer-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 24px;
      border: 2px solid #fcbc45f8;
      box-shadow: 0 4px 12px rgba(39, 30, 17, 0.3);
      object-fit: cover;
    }

    .customer-name {
      font-size: 20px;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 8px;
    }

    .customer-role {
      font-size: 14px;
      color: #718096;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .customer-feedback {
      font-size: 15px;
      line-height: 1.7;
      color: #4a5568;
      font-style: italic;
      position: relative;
    }

    .customer-feedback::before {
      content: '"';
      font-size: 48px;
      color: #53351c;
      opacity: 0.3;
      position: absolute;
      top: -20px;
      left: -10px;
      font-family: Georgia, serif;
    }

    .rating {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }

    .star {
      color: #fbbf24;
      font-size: 18px;
    }

    .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid #e2e8f0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      z-index: 10;
    }

    .carousel-button:hover {
      background: #f7fafc;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-button:active {
      transform: translateY(-50%) scale(0.95);
    }

    .carousel-button.disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .carousel-button.disabled:hover {
      transform: translateY(-50%) scale(1);
    }

    .carousel-button-prev {
      left: 0;
    }

    .carousel-button-next {
      right: 0;
    }

    .carousel-button svg {
      width: 24px;
      height: 24px;
      fill: #46413e;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #cbd5e0;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }

    .dot.active {
      background: #555453e3;
      width: 32px;
      border-radius: 6px;
    }

    @media (max-width: 1200px) {
      .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
      }
    }

    @media (max-width: 768px) {
      .carousel-container {
        padding: 0 60px;
      }

      .testimonial-card {
        flex: 0 0 calc(50% - 12px);
      }

      .section-title {
        font-size: 36px;
      }

      .section-subtitle {
        font-size: 18px;
      }

      .carousel-button {
        width: 48px;
        height: 48px;
      }
    }

    @media (max-width: 480px) {
      .carousel-container {
        padding: 0 50px;
      }

      .testimonial-card {
        flex: 0 0 100%;
      }

      .section-title {
        font-size: 28px;
      }

      .section-subtitle {
        font-size: 16px;
      }

      .carousel-button {
        width: 40px;
        height: 40px;
      }

      .carousel-button svg {
        width: 20px;
        height: 20px;
      }

    }
