/* @media(max-width:992px){
.navbar-nav{
    align-items:end !important ;
    padding-right: 20px;
}

.dropdown-menu{
  margin-left: -20px;
  border: none;
  font-size: 13px;
}

} */

/* Main navbar styling */

*{
 font-family: 'Poppins', sans-serif;
}
.navbar {
  background-color: #ffffff;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  position: relative;
  z-index: 1000;
}

.navbar-brand img {
  height: 40px;
}

/* Hide default Bootstrap collapse on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -75%;
  width: 75%;
  height: 100vh;
  background: linear-gradient(135deg, #0987C9 0%, #46B3DE  100%);
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

/* Mobile menu header */
.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  /* font-style: italic; */
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile menu items */
.mobile-menu-items {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link {
  display: block;
  padding: 18px 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s;
}

.mobile-menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Dropdown styling */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-content {
  background-color: rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-dropdown-content.active {
  max-height: 200px;
}

.mobile-dropdown-item {
  padding: 12px 40px;
  color: white;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop menu items */
@media (min-width: 486px) {
  .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
  }

  .navbar-nav .nav-link:hover {
    color: #0987C9;
  }

  .btn-primary {
    background-color: #0987C9;
    border-color: #0987C9;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
  }

  .btn-primary:hover {
    background-color: #0987C9;
    border-color: #0987C9
  }
}

/* Demo content */
.demo-content {
  padding: 2rem;
  text-align: center;
}
