/* General Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  opacity: 1;
  z-index: 1000;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: white;
}

.header {
  width: 100%;
  display: flex;

  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.ul_data {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 10px;
  margin: 0;
  list-style-type: none;
}

.ul_lists {
  cursor: pointer;
  padding: 5px 10px;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.ul_lists:hover {
  background-color: rgb(221, 211, 211);
}

.li_a {
  text-decoration: none !important;
  color: #444444 !important;
  font-weight: 400;
}

.icon {
  height: 60px;
}

/* SVG Toggle Button */
.mobile-svg {
  display: none;
}

.svg-icon {
  height: 30px;
  width: 30px;
  cursor: pointer;
  color: #444;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  /* Start hidden on the right */
  width: 70%;
  height: 100%;
  background-color: #0c3c60;
  /* Navbar background color */
  color: white;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, right 0.3s ease-in-out;
  /* Smooth transition */
  transform: translateX(0);
  z-index: 999;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 50px 20px;
}

.close-button {
  background-color: transparent;
  box-shadow: none;
  position: absolute;
  border: none;
  top: 10px;
  color: white;
  right: 10px;
}

.mobile-menu ul li {
  margin: 30px 0;
  text-align: center;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

/* Close Button */

.mobile-menu.open {
  right: 0;
  /* Slide in from right */
  transform: translateX(-0%);
}

.mobile-svg {
  cursor: pointer;
}
@media screen and (max-width: 740px) {
  .header {
    padding: 5%;
  }

  .ul_data {
    display: none;
  }

  .mobile-svg {
    display: block;
  }
}
