/* Navigation Bar Styles */
.navbar {
  background-color: #1E3A8A; /* Dark Blue */
  color: white;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  padding: 0 15px;
}

.lang-selector{
  margin-right: 20px;
  background: #1E3A8A;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: #93C5FD;
}

/* Icon Styling */
.nav-links i {
  margin-right: 6px;
}

.material-icons{
  font: size 20px !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: #1E3A8A;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
  width: 100%;
}

.mobile-nav a:hover {
  background-color: #3B5998;
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  .hamburger {
      display: block;
  }
}
