
    /* Section Styles */
    .testimonial-section-container {
      width: 100%;
      padding: 40px 0;
      background: #fff;
    }

    .testimonial-wrapper {
      padding: 40px;
      font-family: 'Roboto', sans-serif;
      background: radial-gradient(circle at top, #f3f7f3, #ffffff);
      border-radius: 20px;
      overflow: hidden;
      /*max-width: 1200px;*/
      /*margin: 0 auto;*/
    }

    .testimonial-title {
      font-size: 29px;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
      color: #222;
    }

    .testimonial-scroll {
      display: flex;
      gap: 18px;
      overflow-x: hidden; /* Hide scrollbar for the auto-slide */
      white-space: nowrap;
      padding: 20px 0;
    }

    .testimonial-card {
      min-width: 280px;
      max-width: 300px;
      flex: 0 0 auto;
      padding: 20px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      cursor: default;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      background: #ffffff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .top {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #74d31d, #4caf50);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon i { color: #fff; }

    .stars i {
      color: #ffc107;
      font-size: 13px;
    }

    .testimonial-card p {
      font-size: 14px;
      color: #444;
      margin-bottom: 15px;
      white-space: normal; /* Allow text to wrap inside the card */
      line-height: 1.5;
    }

    .bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #f0f0f0;
      padding-top: 10px;
    }

    .bottom strong { font-size: 14px; color: #333; }
    .bottom span { font-size: 12px; color: #888; display: block; }

    .verified i {
      color: #74d31d;
    }
