.logos-section {
    padding: 50px 0;
    text-align: center;
  }

  .logos-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
  }

  .logo-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .logo-track {
    display: inline-flex;
    gap: 40px;
    animation: scroll 60s linear infinite; /* Slowed down from 20s to 60s */
}

  .logo-track img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s;
  }

  .logo-track img:hover {
    transform: scale(1.1);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }