.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
@font-face {
  font-family: "MyCustomFont";
  src: url("./font/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "sfp_regular";
  src: url("/font/SFPRODISPLAYBOLD.OTF");
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll-left {
  animation: scroll-left 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }

  /* karena kamu duplikat 2x */
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee-reverse {
  animation: marquee-reverse 30s linear infinite;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 100%;
  animation: twinkle 2s infinite ease-in-out alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.2;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Efek glow radial */
.radial-glow::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: radial-gradient(ellipse at center, white 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(10px);
  z-index: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll-left {
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.animate-scroll-right {
  animation: scroll-right 30s linear infinite;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 100%; /* Supaya nggak keluar dari slide */
  object-fit: contain; /* Opsional: jaga proporsi di dalam container */
}

@media (max-width: 640px) {
  .swiper-slide img {
    height: 60px; /* tinggi lebih kecil di mobile */
  }
}

.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.logo-track img {
  height: 90px;
  margin-right: 30px;
  vertical-align: middle;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
