.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  color: white;
  z-index: 1000;
  /* Ensure navbar is on top */
  box-sizing: border-box;
  /* Updated styles for flex layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  /* Adjusted padding */
  /* font-size: 24px; Removed, children will define their font sizes */
}

/* Menu Icon Styles (from landing.css .pageContent-section-1 .menu-icon) */
.navbar .menu-icon {
  width: 30px;
  height: 30px;
  background-color: white;
  /* White background for the icon itself */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  /* Adjusted padding slightly */
  cursor: pointer;
  border-radius: 0px;
  /* position: relative; Not needed here as it's a flex item */
}

.navbar .menu-icon.dark {
  background-color: #031734;
}

.navbar .menu-icon span {
  display: block;
  width: 80%;
  height: 2px;
  background-color: #000;
  /* Black lines for the hamburger */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
}

.navbar .menu-icon span.dark {
  background-color: #fff;
}

/* Active state for menu icon (X) */
.navbar .menu-icon.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  /* Approximate based on typical hamburger-to-X */
}

.navbar .menu-icon.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
  /* Approximate based on typical hamburger-to-X */
}


/* Right Navigation Area */
.navbar .right-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Space between lang dropdown and button */
}

/* Language Dropdown Styles (from landing.css) */
.navbar .lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: 'Futura', sans-serif;
  /* Added Futura */
}

.navbar .lang-dropdown .lang {
  /* Targets the displayed language, e.g., EN */
  font-size: 14px;
  /* color: white; Inherited from .navbar */
}

.navbar .lang-dropdown .lang.dark {
  color: #031734;
}

.navbar .lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  right: 0;
  /* Align to the right of the dropdown */
  display: none;
  background: transparent;
  /* background-color: rgba(0, 0, 0, 0.8); */
  /* Slightly darker background for dropdown */
  border-radius: 4px;
  overflow: hidden;
  min-width: 50px;
  /* Ensure it has some width */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar .lang-list.dark {
  background-color: rgba(0, 0, 0, 0.8);
}

.navbar .lang-list li {
  font-size: 14px;
  padding: 8px 12px;
  /* Adjusted padding */
  cursor: pointer;
  color: #fff;
  font-family: 'Futura', sans-serif;
  /* Added Futura */
  text-align: center;
}

.navbar .lang-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar .lang-dropdown.active .lang-list {
  display: block;
}

/* Button Styles (from landing.css .pageContent-section-1 .btn) */
.navbar .right-nav .btn {
  background: white;
  color: #000;
  padding: 8px 18px;
  /* Slightly adjusted padding */
  text-decoration: none;
  font-weight: bold;
  /* landing.css uses bold for btn */
  border-radius: 0px;
  font-family: 'Futura', sans-serif;
  font-size: 16px;
  /* Adjusted font size */
  line-height: 1.5;
  /* Ensure text is vertically centered */
  display: inline-flex;
  /* For centering text if padding is tricky */
  align-items: center;
  justify-content: center;
}

.navbar .right-nav .btn.dark {
  background: #031734;
  color: #fff;
}

@media (max-width: 767.98px) {
  .navbar .menu-icon {
    right: 0;
    order: 1;
  }

  .navbar .right-nav {
    right: 0;
    z-index: 995;
  }
}

/* Assuming .d-none and .d-lg-block are from Bootstrap or defined elsewhere */