
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

.header {
  background-image: url('../img/nav.avif'); 
  background-size: cover;       
  background-position: center;   
  background-repeat: no-repeat; 
  color: white;
  padding: 0;
  width: 100vw;
  
}
.company-link {
  text-decoration: none;
  color: inherit; 
}

.nav-list li a.active {
  color: #3a6afd !important;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 15px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 55px;
  width: 55px;
  object-fit: contain;
}

.company-info h1 {
  font-size: 20px;
  font-family: "montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.company-info p {
  font-family: "montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: rgb(170, 170, 170);
  line-height: 1.4em;
}

 
.navbar .nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 10px 30px;
  background-color: #000814;
  border-radius: 30px;
}

.navbar .nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4em;
  font-family: "proxima-n-w01-reg", sans-serif;
  transition: color 0.3s ease;
}

.navbar .nav-list li a:hover {
  color: #4a90e2; 
}

 
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar .nav-list {
    flex-wrap: wrap;
    padding: 10px 20px;
  }
}
