/* Common */
.top-header {
  background-color: #000;
  color: #fff;
  font-size: 11px;
  padding: 8px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  letter-spacing: 0.55px;
}

.top-header-link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.top-header-link:hover {
  color: #ffd700;
}

.nav-bar {
  background-color: #F8F9FF;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  padding: 16px 40px;
  position: relative;
  z-index: 1030;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-bar.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar-brand img,
.footer-logo {
  max-width: 200px;
}

.nav-menu-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header Navbar Dropdown & Hover Styles */
.nav-menu-list .nav-link {
  transition: all 0.25s ease;
}

.nav-menu-list .nav-link:hover,
.nav-menu-list .nav-link:focus,
.nav-menu-list .nav-link.active,
.nav-menu-list .nav-item.dropdown:hover>.nav-link,
.nav-menu-list .nav-item.dropdown.show>.nav-link {
  background-image: linear-gradient(0deg, rgba(216, 129, 5, 1) 0%, rgba(240, 209, 92, 1) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Fix Bootstrap dropdown caret arrow rendering with text-gradient */
.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #121824;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  -webkit-text-fill-color: initial !important;
  color: #121824 !important;
}

.nav-link.dropdown-toggle.active::after,
.nav-link.dropdown-toggle:hover::after,
.nav-link.dropdown-toggle:focus::after,
.nav-item.dropdown:hover>.nav-link.dropdown-toggle::after,
.nav-item.dropdown.show>.nav-link.dropdown-toggle::after {
  border-top-color: #d88105 !important;
  -webkit-text-fill-color: initial !important;
  color: #d88105 !important;
}

.nav-bar .dropdown-menu {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
  padding: 8px;
  margin-top: 10px;
}

.nav-bar .dropdown-menu>li:not(:last-child) {
  margin-bottom: 4px;
}

.nav-bar .dropdown-item {
  color: #121824 !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.nav-bar .dropdown-item:hover,
.nav-bar .dropdown-item:focus {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  background-image: linear-gradient(0deg, rgba(216, 129, 5, 1) 0%, rgba(240, 209, 92, 1) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 600;
}

.nav-bar .dropdown-item.active,
.nav-bar .dropdown-item:active {
  background: linear-gradient(0deg, rgba(216, 129, 5, 1) 0%, rgba(240, 209, 92, 1) 100%) !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: #000000 !important;
  color: #000000 !important;
  font-weight: 700;
  box-shadow: none !important;
}

/* Enable dropdown display on desktop hover */
@media (min-width: 992px) {
  .nav-menu-list .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    animation: navDropdownFadeIn 0.2s ease-in-out;
  }
}

@keyframes navDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Content */

/* Section */
.hero-section {
  position: relative;
  background-color: #080c14;
  color: #ffffff;
  padding: 0;
  min-height: calc(100vh - var(--header-total-h));
}

.hero-carousel-item {
  min-height: calc(100vh - var(--header-total-h));
  height: calc(100vh - var(--header-total-h));
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.hero-carousel-slide-1 {
  background: url('../images/banners/hero-banner-1.jpg') center center / cover no-repeat;
}

.hero-carousel-slide-2 {
  background: url('../images/banners/hero-banner-2.jpg') center center / cover no-repeat;
}

.hero-carousel-slide-3 {
  background: url('../images/banners/hero-banner-3.jpg') center center / cover no-repeat;
}

/* Carousel prev/next arrow controls - hidden by default, shown on hero hover */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next,
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (hover: none), (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(124deg, rgba(216, 129, 5, 1) 0%, rgba(240, 209, 92, 1) 100%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0);
}

.risk-warning-section {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-section {
  position: relative;
  background: url(../images/banners/choose-next-step-bg.jpg) no-repeat left top;
  background-size: cover;
  padding: 60px 40px;
  color: #ffffff;
  overflow: hidden;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, rgba(201, 143, 48, 1) 0%, rgba(245, 233, 125, 1) 33%, rgba(190, 128, 43, 1) 67%, rgba(226, 190, 89, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.cta-disclaimer {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  /* max-width: 900px; */
  margin: 30px auto 0 auto;
}

.cta-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Background */

/* Heading */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Sub Heading */
.hero-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 680px;
}

/* Title */
.section-title-dark {
  color: #ffffff;
}

/* Sub Title */

/* Paragraph */
.body-text {
  color: #000;
  line-height: 1.6;
  font-size: 15px;
  margin: 20px 0;
}

/* Images */

/* Cards */

/* Lists */
.carousel-indicators-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.carousel-indicators-custom {
  position: static;
  margin: 0;
  justify-content: flex-start;
  gap: 12px;
}

.carousel-indicators-custom [data-bs-target] {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators-custom .active {
  width: 64px;
  background-color: #f0d15c;
  box-shadow: 0 0 12px rgba(240, 209, 92, 0.6);
}

.footer-section {
  background-color: #040508;
  color: #fff;
  padding: 60px 40px 40px 40px;
}

.footer-bottom {
  font-size: 0.85rem;
}

.copyright-text {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.legal-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-link:hover {
  color: #f0d15c;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-carousel-item {
    min-height: calc(100vh - var(--header-total-h));
    height: calc(100vh - var(--header-total-h));
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }
}

@media (max-width: 575.98px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }
}