    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

/*    body {
      background: #f8fafc;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      padding: 1rem;
    }*/

    .marquee-wrapper {
      width: 100%;
      max-width: 1280px;
      background: white;
      border-radius: 2.5rem;
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
      padding: 1.8rem 1.2rem;
      transition: box-shadow 0.2s;
      border: 1px solid rgba(226, 232, 240, 0.6);
    }

    /* -------- marquee container (overflow hidden) -------- */
    .marquee-track {
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    /* -------- the actual moving strip -------- */
    .marquee-content {
      display: flex;
      align-items: center;
      gap: 3.2rem;               /* space between logos */
      flex-shrink: 0;
      animation: scrollMarquee 28s linear infinite;
      will-change: transform;
      backface-visibility: hidden;
      padding: 0.2rem 0;
    }

    /* pause on hover – pure CSS, no JS */
    .marquee-track:hover .marquee-content {
      animation-play-state: paused;
    }

    /* each logo block – nice & clean */
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      height: 100px;
      filter: grayscale(0.1) brightness(1);
      transition: filter 0.2s, transform 0.2s;
    }

    .logo-item img {
      display: block;
      max-height: 100px;
      max-width: 120px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.2s ease;
      border-radius: 6px;
      background: transparent;
      padding: 0 2px;
    }

    /* subtle hover effect on individual logos (optional) */
    .marquee-track:hover .logo-item img {
      filter: brightness(1) drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    }

    /* -------- infinite keyframes -------- */
    @keyframes scrollMarquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* -------- responsive adjustments -------- */
    @media (max-width: 640px) {
      .marquee-wrapper {
        padding: 1.2rem 0.6rem;
        border-radius: 1.8rem;
      }
      .marquee-content {
        gap: 2rem;
      }
      .logo-item {
        height: 56px;
      }
      .logo-item img {
        max-height: 50px;
        max-width: 90px;
      }
    }

    @media (max-width: 480px) {
      .marquee-content {
        gap: 1.5rem;
        animation-duration: 22s;
      }
      .logo-item img {
        max-height: 40px;
        max-width: 70px;
      }
      .marquee-wrapper {
        padding: 1rem 0.2rem;
      }
    }

    /* extra style: small hint (optional) */
    .marquee-note {
      text-align: center;
      margin-top: 1.2rem;
      font-size: 0.85rem;
      color: #94a3b8;
      letter-spacing: 0.3px;
      font-weight: 400;
    }
    .marquee-note span {
      background: #f1f5f9;
      padding: 0.2rem 0.9rem;
      border-radius: 40px;
      display: inline-block;
      backdrop-filter: blur(2px);
    }
  