
      body { font-family: 'Poppins', sans-serif; }
       .glass {
        background: rgb(67 67 67 / 53%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(10px);
      }

.bg{
   background-color:  #FF0000 ;
}

  .body{
      background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
      background-size: cover;
      background-position: center;
    }


   




* {
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  height: 100px;
  margin-inline: auto;
  margin-top: 5rem;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  max-width: 1536px;
  overflow: hidden;
  position: relative;
  width: 90%;
}

.item {
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-name: scrollLeft;
  animation-timing-function: linear;
  background-color: teal;
  border-radius: 6px;
  height: 100px;
  left: max(calc(200px * 8), 100%);
  position: absolute;
  width: 200px;
}

.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}


/* marqee */


  .marquee-containers {
    width: 100%;
    /*transform: rotate(-9deg);*/
    /* background: #7BFF00; */
    overflow: hidden;
    padding: 20px 0;
    
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 15s linear infinite;
  }

  .marquee-text {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: white;
    white-space: nowrap;
    padding-right: 100px; /* spacing between repetitions */
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }





  /* slider css */
.slider-headingsks {margin-top: 15px; text-align: center; font-size: 24px; font-weight: bold; margin-bottom: 15px; }
  .slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
    position: relative;
  }
  .slider-track {
    display: flex;
    width: calc(200%);
    animation: slide 20s linear infinite;
  }
  .slider-container:hover .slider-track {
    animation-play-state: paused;
  }
  .artist-card {
    flex: 0 0 180px;
    margin-right: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s;
  }
  .artist-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .artist-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .artist-name {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


  /* brand slider */
  /* Infinite Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  animation: marquee 4s linear infinite;
}