body{
  background: #000418;
}

.divider {
  width: 1px;
  height: 20px;
  border-left: 1px dashed #ccc;
}

.dropdown-item + .dropdown-item {
  border-top: 1px solid #eee;
}

.site-header {
  position: relative;
  background: #0a1849;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5px 100px;
}

/* Scroll buttons */
.nav-scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 105px;
  border: none;
  background: #0a1849;
  color: #fff;
  z-index: 2;
}

.nav-scroll.left { left: 0; }
.nav-scroll.right { right: 0; }

/* Menu wrapper */
.menu-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
}

/* Hide scrollbar */
.menu-wrapper::-webkit-scrollbar {
  display: none;
}

/* Menu item */
.menu-item {
  position: relative;
  padding: 10px 20px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  font-weight: bold;
}

/* Hover */
.menu-item:hover {
  background: #1a1f4a;
  color: gold;
}

.tab-menu-item {
  background-color: rgb(26 34 89 / 81%);
  color: gold;
  border-bottom: 4px solid #0361c1;
}

/* WRAPPER */
.wrapper {
  padding: 2%;
}

/* LIST */
.tab-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ITEM */
.tab-menu-list li {
  flex: 0 0 calc((100% - 6%) / 4); /* 5 kolom */
}

/* LINK */
.tab-menu-list li a {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 271 / 123;
  overflow: hidden;
  text-decoration: none;

  transition: transform 0.3s ease;

  overflow: hidden;
}

/* BACKGROUND (belakang) */
.tab-menu-list li .background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%; /* 🔥 sesuai request */
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #004ab7 100%);
  border: 2px solid #004ab7;
  border-radius: 70px;
  box-sizing: border-box;
  z-index: 1;
}

/* FOREGROUND (depan) */
.tab-menu-list li .foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* 🔥 full */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  z-index: 2;
}

/* HOVER EFFECT */
.tab-menu-list li:hover a {
  transform: scale(1.1); /* 🔥 zoom sedikit */
}

  .wrapper-main {
    position: relative;
  }

  #mainCarousel {
    position: relative;
    z-index: 1;
  }

  .tab-menu-item {
    position: absolute;
    top: 0;        /* bisa kamu atur */
    left: 0;
    width: 100%;
    z-index: 10;   /* lebih tinggi dari carousel */
  }



@media(max-width:786px){

  .nav-scroll {
    max-width: 50px;
  }

  .site-header {
    padding: 5px 30px;
  }
}


  @media(max-width:786px){
    .desc_cont{
      font-size: 24px;
    }
  }

  /* Divider garis putus-putus */
.ver_divider {
  border-top: 1px dashed #ccc;
  margin: 12px 0;
}

/* Text kecil */
.small-text {
  font-size: 13px;
  color: #aaa;
}

/* Right time */
.time {
  display: flex;
  align-items: flex-end;
}

/* Angka besar */
.time .big {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

/* Tulisan Min */
.time .small {
  font-size: 28px;
  margin-left: 4px;
  line-height: 1;
}

/* Progress custom */
.progress {
  height: 10px;
  background-color: #3c4b72;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar {
  background-color: #c9ddf5;
}



.announcement-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background: black;
}

.announcement-text {
  display: inline-block;
  white-space: nowrap;
}

.announcement-text ul li {
  display: inline-block;
  margin-right: 100px; /* jarak antar text */
  color: white;
}

/* animasi jalan */
@keyframes scrollText {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* FIXED BAR */
.top-auth-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #02071c;
}

/* BUTTON STYLE */
.btn-login {
  background: #0056b3;
  color: white;
  border-radius: 0;
}

.btn-daftar {
  background: gold;
  color: black;
  border-radius: 0;
}

/* BIAR NAVBAR TIDAK KETUTUP */
body {
  padding-top: 45px; /* sesuaikan tinggi bar */
}