/* abetec_navbarcustom.css */
/* prepared by Ravleen Sagoo */

nav {
  box-shadow: 10px 2px 4px 0 rgba(0,0,0,0.5);
}

nav.fancycrumb {
    box-shadow: none;
}

/* === Custom Navbar Styling === */
.navbar-custom {
  background-color: #ffffff;
  font-family: 'Baloo Chettan 2', cursive;
  font-weight: 500;
  z-index: 99;
}

/* --- Brand & text color --- */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
  color: #143a8f;
}

/* --- Nav link default --- */
.navbar-custom .navbar-nav .nav-link {
  color: #143a8f;
  padding-bottom: 0.25rem;
  position: relative;
  transition: color 0.3s ease;
}

/* --- Active link --- */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-link.active {
  color: #da3619;
  transition: color 0.3s ease;
}

/* --- Hover --- */
.navbar-custom .nav-item:hover .nav-link {
  color: #000;
}

/* --- Dropdown menu --- */
.navbar-custom .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  border: 1px solid #b3b3b3;
  border-radius: 0.25rem;
}

.navbar-custom .dropdown-item {
  color: #143a8f;
  font-weight: 500;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  color: #da3619;
  background-color: #ccc;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-custom .dropdown-item.active {
  color: #da3619;
  background-color: #fff;
  border-bottom: 1px dotted #ccc;
  transition: 0.3s ease;
}

/* --- Toggler button --- */
.navbar-custom .navbar-toggler {
  color: #143a8f;
  border: 1px solid #143a8f;
}

.custom-toggler.navbar-toggler {
  border-color: #143a8f;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(20,58,143,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* --- Optional: make dropdowns open on hover on desktop --- 
@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}
*/