/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Topbar */
.topbar {
  background-color: #c02148;
  color: #fff;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left ul,
.topbar-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.topbar-left ul li,
.topbar-right ul li {
  font-size: 15px;
}

.topbar-right ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background-color: #fff;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
}

.nav-logo img {
  max-width: 60px;
  height: auto;
}

/* Nav items (desktop) */
.nav-items {
  display: flex;
}

.nav-items ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-items ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-items ul li a:hover,
.nav-items ul li a.active {
  color: #c02148;
  border-bottom: 2px solid #c02148;
}

/* Hamburger menu toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #c02148;
  color: #fff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav .close-btn {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

/*...........................................Responsive adjustments .................................................................................*/
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-items {
    display: none;
  }
.mobile-nav ul li a.active {
  color: #ffc107; /* yellow or your preferred color */
  text-decoration: underline;
}

  .navbar {
    justify-content: space-between;
  }

  .nav-logo {
    order: 2;
    margin-left: auto;
  }

  .topbar {
    justify-content: center;
    text-align: center;
  }
 .topbar-right ul {
    flex-wrap: wrap;  /* allow wrapping if too wide */
    gap: 5px;         /* small gap between items */
    justify-content: center;  /* center items */
    align-items: center;      /* align them vertically */
  }

  .topbar-left ul {
    justify-content: center;
    gap: 10px;
  }

.topbar-left ul li:last-child {
    margin-right: 10px;  /* Space between Kathmandu and Social Address */
  }

  .topbar-right ul {
    gap: 10px;  /* small consistent gap between social icons */
  }


}

@media (max-width: 480px) {
  .topbar {
    padding: 6px 12px;
  }

  .navbar {
    padding: 8px 12px;
  }

  .topbar-left ul li,
  .topbar-right ul li {
    font-size: 15px;
  }

  .nav-items ul li a {
    font-size: 15px;
  }
}
/* Basic Reset for ul/li */
.nav-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-items li {
  position: relative;
  display: inline-block;
}

/* Style for links */
.nav-items a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Dropdown menus hidden by default */
.nav-items .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Dropdown items */
.nav-items .dropdown-menu li {
  display: block;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Show dropdown on hover */
.nav-items .dropdown:hover > .dropdown-menu {
  display: block;
}

/* Second-level dropdown */
.nav-items .dropdown-menu .dropdown {
  position: relative;
}

/* Second-level dropdown menu positioning */
.nav-items .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  min-width: 190px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  align-items:center;
}

/* Remove bottom borders and shadows from dropdown items */
.nav-items .dropdown-menu li a {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* Active link color (optional) */
.nav-items a.active {
  color: #d9534f;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif !important;
}

/* Topbar */
.topbar {
  background-color: #c02148;
  color: #fff;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left ul,
.topbar-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-weight: 500;
}

.topbar-left ul li,
.topbar-right ul li {
  font-size: 15px;
}

.topbar-right ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
  padding: 12px 20px;
}

.nav-logo img {
  max-height: 50px;
  width: auto;
}

/* Nav items (desktop) */
.nav-items {
  display: flex;
}

.nav-items ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-items ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-items ul li a:hover {
  color: #c02148;
  border-bottom: 2px solid #c02148;
  font-weight: bold;
}

.nav-items ul li a.active {
  color: #c02148;
  font-weight: bold;
}

/* Hamburger menu toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Mobile Nav Overlay */
.my-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background-color: #c02148;
  color: #fff;
  display: none;
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
}

.my-mobile-nav .close-btn {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
}

.my-mobile-nav ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.my-mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 15px 0;
}

.my-mobile-nav ul li a.active {
  color: orange;
  text-decoration: underline;
  font-weight: bold;
}

/* Dropdown menus hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 1000;
  padding: 0;
}

/* Enable About Us dropdown on hover (desktop) */
.nav-items .dropdown {
  position: relative;
}

.nav-items .dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile dropdowns */
.my-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.my-dropdown ul {
  display: none;
  padding-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .nav-items {
    display: none;
  }
  .navbar {
    justify-content: space-between;
  }
  .topbar {
    justify-content: center;
    text-align: center;
  }
  .topbar-right ul,
  .topbar-left ul {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 6px 12px;
  }
  .navbar {
    padding: 8px 12px;
  }
  .nav-items ul li a {
    font-size: 15px;
  }
  .my-mobile-nav {
    width: 80%;
  }
}

