  .logo-slider-section {
    width: 100%;
    padding: 50px 10px 80px 10px;
    background: white;
    overflow: hidden;
  }

  .logo-slider-heading {
    text-align: center;
 font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    color: black;
  }
    .logo-slider-heading span{
        color :red;
        
    }
    .logo-sliderpp{
        text-align: center;
         margin-bottom: 30px;
    }

  .logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
  }
  .logo-sliderpp{
      
  }

  .logo-slider.dragging {
    cursor: grabbing;
  }

  .logo-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
  }

  .logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    
    padding: 0px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .logo-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
  }

  .logo-item img {
    max-width: 100%;
    max-height: auto;
    object-fit: contain;
    transition: 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
    border: 1px solid #00000038;
  }

  .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;margin-top: 0px;
  }

  /* Fade effect left-right */
  .logo-slider::before,
  .logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #0f0f0f 0%, rgba(15,15,15,0) 100%);
  }

  .logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #0f0f0f 0%, rgba(15,15,15,0) 100%);
  }

  /* Large screens */
  @media (min-width: 1400px) {
    .logo-item {
      width: 200px;
      height: auto;
    }
  }

  /* Tablet */
  @media (max-width: 991px) {
    .logo-slider-heading {
      font-size: 26px;
    }

    .logo-item {
      width: 150px;
      height: auto;
      padding: 14px;
    }

    .logo-item img {
      max-height: 45px;
    }
  }

  /* Mobile */
  @media (max-width: 575px) {
    .logo-slider-section {
      padding: 35px 0;
    }

    .logo-slider-heading {
      font-size: 22px;
      margin-bottom: 22px;
    }

    .logo-track {
      gap: 0px;
    }

    .logo-item {
      width: 120px;
      height: auto;
      border-radius: 10px;
      padding: 10px 0px;
    }

    .logo-item img {
      max-height: 54px;
    }

    .logo-slider::before,
    .logo-slider::after {
      width: 100px;
    }
    
  .logo-slider-heading {
 font-size: 35px;
  }
  }