.navbar {
    /* padding: 1rem 2rem; */
    transition: background 0.3s, box-shadow 0.3s;
    /* z-index: 999; */
  }

  .navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
  }
  
  .navbar.scrolled .nav-link {
    color: #484848 !important;
    font-weight: 600;
    font-size: 13px;
  }

  .nav-link {
    color: #e4e4e4 !important;
    font-weight: 600;
    font-size: 13px;
    margin: 0 10px;
    transform: translateY(0);
    transition: transform .3s;
  }

  .nav-link:hover {
    color: #fff !important;
  }

  /* Hide the dropdown menu by default */
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #262626 !important;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: unset !important;
  width: 260px !important;
}

/* Show it on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}


/* Style the submenu items */
.dropdown-menu .dropdown-item {
  padding: 10px 0px;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #bbb;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(243, 243, 243, .15);
  transition: .3s;

}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  padding-left: 5px;
  color: #fff;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}

.dropdown-menu {
  transition: all 0.2s ease;
  margin-top: 0;
}

.lang-dropdown-box{
  width: 100%;
  min-width: 0px;
}

  .logo-center img {
    /* height: 50px; */
    width: 115px;
    height: auto;
  }

  /* Mobile Slide Menu */
  .mobile-menu {
    position: fixed;
    top: 55px; /* adjust to navbar height */
    left: 0;
    width: 100%;
    height: 0;
    background: #262626;
    overflow: hidden;
    opacity: 0;
    transition: height 1s ease, opacity 1s ease;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-top: 10px;
    padding-bottom: 10px;
    pointer-events: none;
  }

  .mobile-menu.active {
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 7px 18px;
    letter-spacing: 1px;
    font-family: Montserrat, sans-serif;
  }

  /* Hide submenus initially */
.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 5px;
}

/* Style the main links */
.mobile-menu-link {
  display: block;
  padding: 10px 0;
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

/* Style submenu links */
.mobile-submenu a {
  font-weight: 400;
  padding: 8px 30px 8px 0px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #666;
}

/* Active class to show submenu */
.mobile-menu-item.active .mobile-submenu {
  display: flex;
}

 

  @media (max-width: 991.98px) {
    .desktop-menu {
      display: none !important;
    }
    .navbar{padding: 0px;}.navbar-toggler{color: transparent !important;}
  }

  @media (min-width: 992px) {
    .navbar-toggler {display: none;}
    .navbar-expand-lg {flex-wrap: wrap;}
  }

  @media only screen and (min-device-width : 320px) and (max-device-width : 576px) {
    .logo-center img {
      width: 90px !important;
    }
  } 