
  /* Section Styling */
  .testimonials_section {
      background-color: transparent;
      padding: 80px 0;
      overflow: hidden;
      position: relative;
      white-space: nowrap;
  }
  .charger_icon img { 
    position: absolute;
    width: 15%;
    top: 10%;
    right: 0%;
  }
  /* Testimonial Button */
  .testimonial-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid #E87722;
      border-radius: 20px;
      color: #E87722;
      font-weight: bold;
      text-decoration: none;
      font-size: 14px;
      margin-top: -5%;
  }

  .testimonial-btn img {
      width: 16px;
      height: 16px;
  }

  /* Scrolling Effect */
  .scrolling-wrapper {
      display: flex;
      gap: 30px;
      animation: scroll 20s linear infinite;
  }

  @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
  }

  /* Testimonial Cards */
  .testimonial {
      flex: 0 0 300px;
      text-align: left;
      padding: 20px;
      background: transparent !important;
      border-radius: 10px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 180px;
  }
  /* Testimonial Text */
  .testimonial p {
      font-style: italic;
      font-size: 16px;
      margin-bottom: 20px;
  }

  /* Profile Image (Bottom Left) */
  .testimonial .profile-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      position: absolute;
      bottom: 15px;
      left: 15px;
  }

  /* Client Info (Bottom Right) */
  .client-info {
      position: absolute;
      bottom: 15px;
      right: 15px;
      text-align: right;
  }

  .client-info .client-name {
      font-weight: bold;
      font-size: 14px;
  }

  .client-info .client-role {
      font-size: 12px;
      color: #666;
  }

  /* Charger Image */
  .charger-img {
      width: 20%;
      position: absolute;
      top: 2100px;
      right: 0px;
      z-index: 0;
  }