.custom-nav {
  /* background: #fff; */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar {
      background-color: #ffffff;
      padding: 4px 0 !important;
      border-bottom: 1px solid rgba(0,0,0,0.05);
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    }
    .nav-link {
      font-weight: 500;
      color: #4b5563 !important;
      padding: 8px 14px !important;
    }
    .nav-link:hover { color: #0ea5e9 !important; }

/* Hamburger Icon */
.custom-toggler {
  padding: 0;
  width: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}

.custom-toggler .bar {
  width: 100%;
  height: 3px;
  background-color: #0ea5e9;
  transition: 0.3s ease;
  border-radius: 4px;
}

/* REMOVE FOCUS & ACTIVE RING (IMPORTANT) */
.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* X Animation */
.custom-toggler.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.custom-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.custom-toggler.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Sliding */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh !important;
  background: #ffffff;
  padding-top: 100px;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .nav-link {
  padding: 12px 0;
  font-size: 18px;
  color: #0ea5e9 !important;
  font-weight: 600;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

