/* Menu Bar Styling */

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b5394;
  padding: 10px 20px;
  color: #f5f5f5;
  flex-wrap: wrap;
}

.logo {
  font-size: 30px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #f5f5f5;
}

.nav-links {
  list-style: none;                           
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 10px;
}

.nav-links li a {
  color: #f5f5f5;
  text-decoration:solid;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #FFD700;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Mobile Responsive Menu */

/* =================== RESPONSIVE DESIGN =================== */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #f5f5f5;
    padding: 5px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    padding: 5px;
    width: 100%;
  }

  .nav-links.show {
      display: inline-flex;
  }

  .nav-links li {
    padding: 10px;
    border-top: 1px solid #ffffff40;
  }
}

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  align-items: flex-end;
}

.nav-contact a {
  color: #f5f5f5;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.nav-contact a:hover {
  color: #FFD700;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Show full text by default (desktop), hide icons */
.desktop-text {
  display: inline;
}
.mobile-icon {
  display: none;
}


/* ✅ On mobile: hide text, show icons */
@media (max-width: 768px) {
  .nav-contact {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    gap: 20px;
  }

  .desktop-text {
    display: none;
  }

  .mobile-icon {
    display: inline;
    font-size: 16px;
  }
}

/* Show toggle on small screens */
  @media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}