/* header section */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background-color: #111325;
  padding: 1rem 2rem;
}

.navbar-toggler {
  line-height: 1rem;
}

.navbar-brand img {
  height: 32px;
  transition: transform 0.15s ease;
}

.navbar-brand:active img {
  transform: scale(0.94);
}

/* Mobile navbar scrollable fix */
@media (max-width: 991px) {
  .navbar-collapse.show {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: #111325;
    margin-top: 0.5rem;
    padding-bottom: 0;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    padding-bottom: 0.5rem;
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .navbar-collapse.show::-webkit-scrollbar {
    display: none;
  }
  .navbar-nav {
    padding-bottom: 0.5rem;
    width: 100%;
    margin-bottom: 0;
  }
  .navbar .d-flex {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .navbar .d-flex .btn {
    width: 100%;
    margin: 0;
  }
}
.nav-link {
  color: #FFFFFF !important;
  margin: 0 0.25rem;
  padding: 0.35rem 0.85rem !important;
  font-weight: 500;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
  user-select: none;
}

.nav-link:hover {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-link:active {
  transform: scale(0.93);
  background-color: rgba(255, 255, 255, 0.18);
}

.dropdown-title:hover .nav-link,
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.12);
}

@keyframes dropdownShake {
  0% {
    transform: scale(1) translateX(0);
  }
  35% {
    transform: scale(1) translateX(-1.5px);
  }
  70% {
    transform: scale(1) translateX(1.5px);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}
.dropdown-content--shake {
  animation: dropdownShake 0.3s ease;
}

.btn-outline-light-custom {
  border: 1px solid #8259E8;
  color: #FFFFFF;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 576px) {
  .btn-outline-light-custom {
    font-size: 12px;
  }
}
.btn-outline-light-custom:hover {
  background-color: white;
}

.dropdown-content {
  position: absolute;
  top: 48px;
  left: 0;
  right: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px) scale(0.995);
  transform-origin: top left;
  background-color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 12px 48px rgba(15, 16, 35, 0.14), 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  width: 360px;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  will-change: opacity, transform;
}

.dropdown-title {
  position: relative;
}

.dropdown-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.dropdown-title:hover .dropdown-content,
.dropdown-title.active .dropdown-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

@media (max-width: 992px) {
  .dropdown-content {
    position: static;
    width: 100%;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    box-shadow: none;
    border-radius: 8px;
    padding: 0.35rem;
  }
}
a.menu-item {
  text-decoration: none;
  color: #111325;
}

.menu-item:hover .menu-icon {
  background: radial-gradient(317.01% 118.18% at 123.86% -0.9%, #6B46C1 0%, #242346 100%);
  border-radius: 10px;
}

.menu-item:hover .icon-item {
  display: none;
}
.menu-item:hover .icon-item-hover {
  display: inline;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 12px 14px;
  border-radius: 8px;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.15s ease;
  position: relative;
  z-index: 0;
  will-change: transform;
}
.menu-item:hover {
  background-color: #FFFFFF;
  transform: scale(1.01);
  z-index: 1;
  cursor: pointer;
}
.menu-item.active {
  background-color: #f3f4f6;
  border-radius: 8px;
}

.menu-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: #faf7ff;
  box-shadow: 0px 0px 0px 1px rgba(130, 89, 232, 0.1);
}
.menu-icon .icon-item,
.menu-icon .icon-item-hover {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 12px;
}
.menu-icon .icon-item-hover {
  display: none;
}

.menu-text h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111325;
}
.menu-text p {
  margin: 0.25rem 0 0 0;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

.btn-purple {
  background-color: #8259E8;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
}
.btn-purple:hover {
  background-color: #FFFFFF;
}

/*# sourceMappingURL=header-body.css.map */
