/* -------------------------------
   MS NAVBAR - Scoped, RTL, Responsive
----------------------------------- */
.ms-navbar {
  background-color: #0077b6;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  direction: rtl;
  font-family: "SolaimanLipi", Arial, sans-serif;
}

.ms-navbar .logo-typo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.ms-navbar .logo-typo span {
  color: #ffd60a;
}

.ms-navbar .menu {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ms-navbar .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.ms-navbar .menu li a:hover {
  background-color: #023e8a;
}

.ms-navbar .menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive (Tablet & Mobile) */
@media (max-width: 768px) {
  .ms-navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ms-navbar .menu-toggle {
    display: block;
    margin-top: 10px;
  }

  .ms-navbar .menu {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .ms-navbar .menu.show {
    display: flex;
  }

  .ms-navbar .menu li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ms-navbar .menu li a {
    width: 100%;
    padding: 12px;
  }
}
