
.section-wrapper {
      padding: 50px 20px;
      background: linear-gradient(to bottom, #111111, #1e1e1e);
      text-align: center;
    }

    .section-title-promo {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      color: #fff;
    }

    .section-title-promo::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(to right, #00c6ff, #007bff);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .slider-container {
      overflow: hidden;
      position: relative;
      margin-top: 50px;
    }

    .slider-track {
      display: flex;
      align-items: center;
      animation: scroll-track 60s linear infinite;
      width: max-content;
    }

    .slider-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll-track {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .slider-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      margin: 10px;
      background: white;
      border-radius: 16px;
      padding: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      backdrop-filter: blur(4px);
    }

    .slider-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(0,123,255,0.4);
    }

    .see-more {
      display: inline-block;
      margin-top: 30px;
      padding: 10px 20px;
      color: #fff;
      border: 1px solid #00c6ff;
      border-radius: 8px;
      text-decoration: none;
      font-size: 15px;
      transition: 0.3s ease;
    }

    .see-more:hover {
      background: #00c6ff;
      color: #000;
    }

    @media (max-width: 768px) {
      .slider-logo {
        width: 90px;
        height: 60px;
        margin: 6px;
      }

      .section-title-promo {
        font-size: 24px;
      }

      .see-more {
        font-size: 13px;
        padding: 8px 16px;
      }
    }