:root {
  --regular: 400;
  --medium: 500;
  --bold: 700;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  background-color: #02153f;
  color: #fff;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: var(--bold);
}

h3 {
  font-size: 1.4rem;
}

a {
  color: #00fffc;
}
a:hover {
  color: #3371da;
  text-decoration: none;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover; /* make sure video covers the section */
}

.glow-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto; /* center inside bootstrap column */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* The rotating neon line */
.glow-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00caff; /* only a line, not full glow */
  animation: rotate 2s linear infinite;
  filter: drop-shadow(0 0 6px #00d9ff);
}

/* The actual image */
.icon-real {
  width: 60%;
  z-index: 2;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes luxury-shake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(-5px) rotate(-2deg);
  }
  20% {
    transform: translateX(5px) rotate(2deg);
  }
  30% {
    transform: translateX(-4px) rotate(-1.5deg);
  }
  40% {
    transform: translateX(4px) rotate(1.5deg);
  }
  50% {
    transform: translateX(-3px) rotate(-1deg);
  }
  60% {
    transform: translateX(3px) rotate(1deg);
  }
  70% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  80% {
    transform: translateX(2px) rotate(0.5deg);
  }
  90% {
    transform: translateX(-1px) rotate(-0.2deg);
  }
}
.luxury-shake {
  animation: luxury-shake 2s infinite ease-in-out;
}

.hero {
  position: relative;
  padding-top: 8rem;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}
.hero__bg-container {
  top: 50%;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: rotate(-5deg) translateY(-50%);
}
.hero__bg-container .stars {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: auto 100%;
  background-position: 50% 0;
  background-repeat: repeat-x;
  transform: translateZ(0);
}
.hero__bg-container .stars:nth-child(1) {
  background-image: url("../img/stars-1.webp");
  animation: twinkle 8s ease-in -5s infinite alternate, layer-1 60s linear infinite;
}
.hero__bg-container .stars:nth-child(2) {
  background-image: url("../img/stars-2.webp");
  animation: twinkle 3s ease-in -3s infinite alternate, layer-2 120s linear infinite;
}
.hero__bg-container .stars:nth-child(3) {
  background-image: url("../img/stars-3.webp");
  animation: twinkle 3.5s ease-in infinite alternate, layer-3 120s linear infinite;
}
.hero__bg-container .stars:nth-child(4) {
  background-image: url("../img/stars-4.webp");
  animation: twinkle 4s ease-in -2s infinite alternate, layer-4 80s linear infinite;
}
.hero__bg-container .stars:nth-child(5) {
  background-image: url("../img/stars-5.webp");
  animation: twinkle 5.5s ease-in infinite alternate, layer-5 80s linear infinite;
}
.hero__bg-container .shooting-star {
  top: -50px;
  z-index: 100;
  width: 72px;
  height: 50px;
  background-image: url("../img/shooting-star.webp");
  background-size: 72px 50px;
}
.hero__bg-container .shooting-star:nth-child(6) {
  animation: shooting-star-1 10s infinite;
  animation-delay: 1s;
  left: 70%;
}
.hero__bg-container .shooting-star:nth-child(7) {
  animation: shooting-star-2 10s infinite;
  animation-delay: 5s;
  left: 40%;
}
.hero__bg-container .shooting-star:nth-child(8) {
  animation: shooting-star-2 10s infinite;
  animation-delay: 7s;
  left: 90%;
}
.hero__bg-container .shooting-star:nth-child(9) {
  animation: shooting-star-1 10s infinite;
  animation-delay: 9s;
  left: 55%;
}
.hero__bg-container .shooting-star:nth-child(10) {
  animation: shooting-star-1 10s infinite;
  animation-delay: 13s;
  left: 20%;
}
.hero__bg-container .card-1 {
  top: 7%;
  left: 26%;
  animation: card-1 12s ease infinite;
}
.hero__bg-container .card-2 {
  top: 45%;
  left: 10%;
  animation: card-2 14s ease infinite;
}
.hero__bg-container .card-3 {
  display: none;
  top: 20%;
  left: 80%;
  animation: card-3 10s ease-out infinite;
}
@media screen and (min-width: 768px) {
  .hero__bg-container .card-3 {
    display: block;
  }
}
.hero__main-content {
  z-index: 10;
}
.hero__title {
  font-size: 1.3rem;
}
.hero__btn {
  width: 150px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .hero__btn {
    width: 200px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes layer-1 {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-689px, 0, 0);
  }
}
@keyframes layer-2 {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-699px, 0, 0);
  }
}
@keyframes layer-3 {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-699px, 0, 0);
  }
}
@keyframes layer-4 {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-480px, 0, 0);
  }
}
@keyframes layer-5 {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-486px, 0, 0);
  }
}
@keyframes shooting-star-1 {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  15% {
    opacity: 0;
    transform: translate3d(-270px, 180px, 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes shooting-star-2 {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  25% {
    opacity: 0;
    transform: translate3d(-270px, 180px, 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes card-1 {
  0% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(-30px, -15px) rotate(-1deg);
  }
  100% {
    transform: translate(0) rotate(0);
  }
}
@keyframes card-2 {
  0% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(-30px, 15px) rotate(-1deg);
  }
  100% {
    transform: translate(0) rotate(0);
  }
}
@keyframes card-3 {
  0% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(30px, -5px) rotate(-5deg);
  }
  100% {
    transform: translate(0) rotate(0);
  }
}
/* Floating Navbar */
.navbar-custom {
  background: linear-gradient(135deg, #002458, #001745);
  border-radius: 50px;
  padding: 0.5rem 2rem;
  max-width: 1100px;
  transition: all 0.3s ease;
  z-index: 100;
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: space-between; /* buat mobile lebih rapi */
}

/* Shadow effect */
.navbar-custom.shadow-sm {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Nav Links */
.navbar-custom .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 1rem;
  transition: 0.3s;
}

.navbar-custom .nav-link:hover {
  color: #00fffc;
  text-shadow: 0 0 8px #00fffc;
}

/* Luxury Button */
.btn-luxury {
  background: linear-gradient(50deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.45rem 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Logo Animation */
@keyframes luxury-shake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(-3px) rotate(-1.5deg);
  }
  20% {
    transform: translateX(3px) rotate(1.5deg);
  }
  30% {
    transform: translateX(-2px) rotate(-1deg);
  }
  40% {
    transform: translateX(2px) rotate(1deg);
  }
  50% {
    transform: translateX(-1px) rotate(-0.5deg);
  }
  60% {
    transform: translateX(1px) rotate(0.5deg);
  }
}
.logo-shake {
  animation: luxury-shake 2s infinite ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #001745;
  border-radius: 0 0 15px 15px;
  padding: 1rem 2rem;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .nav-link {
  padding: 0.75rem 0;
}

.mobile-menu .btn-luxury {
  width: 100%;
  margin-top: 0.5rem;
}

/* Show on mobile */
@media (max-width: 767.98px) {
  .navbar-custom {
    justify-content: space-between;
    padding: 0.5rem 1rem;
    max-width: 95%;
  }
}
.btn-primary {
  background: linear-gradient(to bottom, #0268cc 0%, #014a90 100%);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  background: linear-gradient(to bottom, #0268cc 0%, #003a71 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 2px #0268cb;
}
.btn-primary:focus, .btn-primary:active:focus {
  box-shadow: none !important;
}
.btn-secondary {
  background: linear-gradient(to bottom, #df3b71 0%, #b61a4d 100%);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: linear-gradient(to bottom, #df3b71 0%, #9a1541 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 2px #de3c70;
}
.btn-secondary:focus, .btn-secondary:active:focus {
  box-shadow: none !important;
}

.icon-small {
  width: 80px;
}
.icon-small:hover {
  transition: opacity 0.15s ease-in-out !important;
  opacity: 0.8 !important;
}

.text-gradient {
  background: linear-gradient(to left, #46d4e4 0%, #3371da 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-gradient {
  border-image-slice: 1;
  border-width: 1px;
  border-image-source: linear-gradient(to right, #46d4e4, #3371da);
}

.description-small {
  font-size: 0.75rem;
  opacity: 0.75;
}

@media screen and (min-width: 992px) {
  .separator-md::after {
    content: "";
    position: absolute;
    top: 0;
    right: -0.5px;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(70, 212, 228, 0) 0%, rgba(70, 212, 228, 0.4) 50%, rgba(51, 113, 218, 0.5) 70%, rgba(51, 113, 218, 0) 100%);
  }
}
@media screen and (min-width: 768px) {
  .separator-sm::after {
    content: "";
    position: absolute;
    top: 0;
    right: -0.5px;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(70, 212, 228, 0) 0%, rgba(70, 212, 228, 0.4) 50%, rgba(51, 113, 218, 0.5) 70%, rgba(51, 113, 218, 0) 100%);
  }
}
.separator-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(70, 212, 228, 0) 0%, rgba(70, 212, 228, 0.4) 50%, rgba(51, 113, 218, 0.5) 70%, rgba(51, 113, 218, 0) 100%);
}

.floating {
  animation-name: floating;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 1.3rem);
  }
  to {
    transform: translate(0, 0);
  }
}
.products {
  background: url("../img/test.jpg") no-repeat top center;
  background-size: cover;
}
.products__fg {
  bottom: 0;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .products__fg {
    bottom: 3rem;
  }
}
.products__card {
  background: rgba(0, 36, 87, 0.25); /* semi-transparent blue */
  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); /* soft shadow */
  border-radius: 15px; /* rounded corners */
  color: #fff;
  cursor: pointer;
}
.products__card-container {
  margin-top: -1rem;
}
@media screen and (min-width: 992px) {
  .products__card-container {
    margin-top: -4rem;
  }
}
.products__card:hover {
  transform: scale(1.02) !important;
  transition: transform 0.15s ease-in-out !important;
}
.products__btn {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .products__btn {
    width: 300px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
  }
}

.stats__title {
  color: #00e3f7;
  font-size: 1.4rem;
}
.stats__card {
  background: rgba(0, 36, 87, 0.25); /* semi-transparent blue */
  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); /* soft shadow */
  border-radius: 15px; /* rounded corners */
  color: #fff;
}
.stats__total {
  color: #00e3f7;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}
.stats__counter::after {
  content: "+";
}

.contact {
  background-color: black;
  background-size: cover;
  padding-bottom: 8rem;
}
.contact__form-container {
  background: rgba(13, 25, 54, 0.45); /* dark blue transparan */
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 0 20px rgba(255, 255, 255, 0.05);
}
.contact__form-btn {
  padding: 0.7rem 2rem;
  font-size: 0.8rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__form-btn {
    width: 150px;
  }
}
.contact__social {
  font-size: 1.2rem;
}
.contact__social a {
  transition: color 0.15s ease-in-out;
}
.contact label::after {
  content: "*";
  position: absolute;
  right: -0.5rem;
  top: 0;
  color: #00a8ff;
}
.contact .form-control {
  background-color: transparent;
  color: #fff;
  box-shadow: none !important;
}

.about {
  background: url("../img/about.jpg") no-repeat bottom center;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

#productModal .modal-content {
  background-color: #000;
  border: 1px solid #213080;
  border-radius: 30px;
  box-shadow: 0 0 20px 5px rgba(2, 104, 203, 0.5);
}
#productModal .close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  color: #fff;
  opacity: 0.75;
  z-index: 2;
}

.provider-logos img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  .provider-logos img {
    width: auto;
  }
}
.provider-container {
  display: none;
}

.modal-content {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 10px;
  margin: auto;
}

.btn-play i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-play:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-play:hover i {
  transform: scale(1.2);
}

.logo-card {
  width: 130px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(15px) saturate(180%);
          backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.swiper-slide {
  width: auto !important; /* penting agar banyak logo terbaca */
  flex-shrink: 0; /* biar tidak mengecil atau numpuk */
}

.logo-card img {
  width: 100px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-card:hover img {
  filter: grayscale(0);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.color-1 .logo-card {
  background: rgba(255, 0, 0, 0.15);
} /* merah */
.color-2 .logo-card {
  background: rgba(255, 255, 0, 0.15);
} /* kuning */
.color-3 .logo-card {
  background: rgba(0, 255, 0, 0.15);
} /* hijau */
.color-4 .logo-card {
  background: rgba(0, 0, 255, 0.15);
} /* biru */
.color-5 .logo-card {
  background: rgba(128, 0, 128, 0.15);
} /* ungu */
.logo-card:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.25);
}

.thank-you {
  background-color: #0f111b; /* dark background */
  color: #ccc;
  padding: 60px 20px 40px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.thank-you .footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.thank-you .footer-desc {
  margin: 0 auto 30px;
  font-size: 12px;
  line-height: 1.7;
  color: #aaa;
}

.thank-you .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.thank-you .footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.thank-you .footer-nav li a:hover {
  color: #00c4ff; /* accent color */
}

.thank-you .footer-copy {
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .thank-you .footer-desc {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */