
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 50px; /* Sesuaikan dengan tinggi navbar */
}

.hero-section-beranda {
    background: url('background.jpg') no-repeat center center/cover;
    height:78%;
    position: relative;
}
.hero-section {
  background: url('background.jpg') no-repeat center center/cover;
  height:70%;
  position: relative;
}
.bgheaderText {
    background: #000;
    width: 100%;
    max-height: 50%;
    padding: -30px 10px;

}
.overlay {
    background: #000;
    padding: 0,1rem;
    width: 100%;
    height: 100%;
}
#flash-message {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
}

@font-face {
  font-family: 'Carnivalee';
  src: url("../../../asset/asset_sscp/font/CarnevaleeFreakshow.ttf") format('truetype');
}

.selamat-text {
  font-family: 'Carnivalee', cursive;
  font-size: 30px;
  color: white;
  background: black;
  padding: 5px 5px -5px 5px;
  text-align: center;  
}

.header-text {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: white;
  background: black;
  padding: 5px 5px -5px 5px;
  text-align: center;  
}

.sub-header-text {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: white;
  background: black;
  padding: 5px 5px -5px 5px;
  text-align: center;  
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .bg-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 10px;
  }
  
  .login-box {
    position: relative;
    z-index: 1; /* agar di atas background */
    border-radius: 20px !important;
    max-width: 500px;
    max-height: 260px !important;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.555) !important;
    padding: 10px !important;
  }
 
  .banner-box {
    position: relative;
    z-index: 1; /* agar di atas background */
    border-radius: 20px !important;
    max-width: 800px;
    max-height: 420px !important;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.555) !important;
    padding: 10px !important;
  }

  .gambar-box {
    position: absolute; /* atau fixed jika ingin selalu di tengah saat scroll */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* untuk benar-benar memusatkan */
    z-index: 1;
   }
  
  .floating-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .floating-icon:hover {
    transform: scale(1.1);
  }
  .badge-notif {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
  }
/* Aktifkan dropdown saat hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  /* Opsional: hilangkan delay jika ada */
  .dropdown-menu {
    transition: none;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Posisi submenu ke kanan */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none !important; /* default disembunyikan */
  position: absolute;
}

/* Tampilkan submenu saat hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block !important;
}
  

/* cirlce flow daftar */
.timeline-container {
  background: url('path/to/your/background.jpg') no-repeat center center/cover;
  padding: 50px 0;
  position: relative;
  height: 75vh;
  color: white;
}

.timeline {
  position: relative;
  margin: 0 auto;
  width: 4px;
  background-color: white;
  max-height: 0%;
}

.timeline-item {
  position: relative;
  padding: 40px 30px;
  text-align: left;
}

.timeline-item .circle {
  position: absolute;
  left: -8px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: rgb(255, 255, 255);
  border: 3px solid white;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.active .circle {
  background-color: #00ff00;
  border-color: #00ff00;
}

.timeline-item.final .circle {
  background-color: #f0e500;
  border-color: #f0e500;
}

.timeline-item .label {
  position: absolute;
  left: 30px;
  top: 0;
  white-space: nowrap;
  font-size: 18px;
}

.timeline-item .labelkiri {
  position: absolute;
  right: 90px;
  top: 0;
  white-space: nowrap;
  font-size: 18px;
}

.btn-close-custom {
  background-color: #ff23ff;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 10%;
  line-height: 1;
  cursor: pointer;
  
}

.btn-close-custom:hover {
  opacity: 0.8;
}