.headerrr-navvv {
  background: #0c0d11;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.headerrr-navvv img {
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .headerrr-navvv img {
    max-height: 30px;
  }
}

.navvv-brandname {
  color: #a855f7 !important;
  font-weight: bold;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.navvv-brandname:hover {
  color: #c084fc !important;
}

.navvv-links .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease;
  position: relative;
}
.navvv-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #c084fc;
  transition: width 0.3s ease;
}
.navvv-links .nav-link:hover::after {
  width: 100%;
}
.navvv-links .nav-link:hover {
  color: #e9d5ff !important;
}

.btn-login-navvv {
  background: #a855f7;
  color: #fff;
  border: none;
  padding: 8px 26px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-login-navvv:hover {
  background: #7e22ce;
  transform: translateY(-2px);
}

/* ===== Dropdown Fixes (Now fully solid) ===== */
.dropdown-menu {
  background-color: #2d0052 !important; /* solid deep purple */
  border: none !important;
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  z-index: 1050;
}
.dropdown-item {
  color: #e9d5ff !important;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #7e22ce !important;
  color: #fff !important;
  transform: translateX(5px);
}

/* ===== Center Links ===== */
.navvv-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .navvv-center {
    position: static;
    transform: none;
  }
}

/* ===== Custom Animated Hamburger ===== */
.custom-toggler {
  width: 32px;
  height: 28px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.custom-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #a855f7;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.custom-toggler span:nth-child(1) {
  top: 4px;
}
.custom-toggler span:nth-child(2) {
  top: 12px;
}
.custom-toggler span:nth-child(3) {
  top: 20px;
}
.custom-toggler.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}
.custom-toggler.active span:nth-child(2) {
  opacity: 0;
}
.custom-toggler.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
}
