 .fixed-img {
    width: 200px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: auto;
  }

  .slider-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }

  .slider {
    animation: scrollSlider 20s linear infinite;
    white-space: nowrap;
  }

  .slide-item {
    flex: 0 0 auto;
    width: 220px;
  }

  @keyframes scrollSlider {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
    .fixed-img {
    width: 200px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
  }

  .carousel a {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
  }
  
   .testimonial5-section-area video {
    object-fit: cover;
    z-index: -1;
  }

  /* Text styles */
  .testimonial-header-area h2 {
    color: #fff;
    font-size: 2rem;
  }

  .testimonial-header-area h5 {
    color: #ffc107;
    font-weight: bold;
  }

  .testimonial-sliders {
    position: relative;
    padding: 20px 0;
  }

  .single-testimonial-nav {
    display: inline-block;
    margin: 0 5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }

  .single-testimonial-nav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-testimonial {
    margin-top: 20px;
  }

  .single-testimonial h5 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .single-testimonial .author a {
    font-weight: bold;
    color: #ffc107;
    display: block;
    font-size: 1rem;
  }

  .single-testimonial .author p {
    color: #ccc;
    font-size: 0.9rem;
  }

  /* Arrows */
  .testimonial-arrows {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .testimonial-arrows button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
  }

  .testimonial-arrows button:hover {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .testimonial-header-area h2 {
      font-size: 1.5rem;
    }

    .single-testimonial h5 {
      font-size: 1rem;
    }

    .testimonial-arrows {
      flex-direction: column;
      gap: 10px;
    }

    .single-testimonial-nav {
      width: 45px;
      height: 45px;
    }
  }

  @media (max-width: 480px) {
    .testimonial-header-area h2 {
      font-size: 1.25rem;
    }

    .single-testimonial h5 {
      font-size: 0.95rem;
    }
  }