/* ======= NAVBAR STYLES ======= */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #001f3f;
  color: white;
  padding: 0 50px;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding-bottom: 0;
}

/* ======= Logo and Company Name ======= */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 45px;
}

.company-name {
  font-size: 20px;
  color: white;
  font-weight: bold;
}

/* ======= Navigation Links (Desktop) ======= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0256d5;
}

/* ======= Contact Button Styling ======= */
.contact-link {
  border: 1px solid white;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
  background-color: white;
  color: #002147;
}

/* ======= Right Button ======= */
.navbar-right .contact-btn {
  padding: 8px 16px;
  background-color: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.navbar-right .contact-btn:hover {
  background-color: #0077cc;
}

/* ======= Mobile Responsive Styles ======= */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 20px;
  }

  .navbar-center {
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .navbar-right {
    align-self: flex-end;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #001f3f;
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
  }
}

