/* Header Start */
header {
  width: 100%;
  background-color: var(--light-blue);
  box-shadow: 0px 1px 5px rgba(212, 222, 246, 0.15);
  position: fixed;
  padding-top: 10px;
  z-index: 30;

}

/* .header-container{
  width: 150%;
} */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container .logo img {
  width: 135px;
  height: 70px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  /* background-color: #ffb219; */

  color: white;
  /* position: absolute; */
  left: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffb219;
  cursor: pointer;
  margin-left: 20px;
  padding-left: 20px;
}


  .header-container .header-actions .btn-primary {
    color: white;
  background-color: #ffb219;
    border-radius: 10rem;
  padding: 5px 20px;
  margin-right: 10px;

  }

.header-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-right: 20px;
  flex: 1;
}

.header-container ul li a {
  font-size: 25px;
  font-weight: 500;
  color: white;
}

@media (max-width: 1200px){
  .header-container ul li a {
    font-size: 20px;
  }
}

@media (max-width: 905px) {
  .header-container ul {
    margin-right: 60px;
  }

  .header-container .header-actions .btn-primary {
    display: none;
    /* Hide top CTA on tablets usually to save space */
  }

  .header-container ul li a {
    font-size: 20px;
  }

  .header-container .mobile-toggle {
    display: block;
    margin-left: -20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 65vh;
    background: var(--light-blue);
    opacity: 0.9;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
  }


  .nav-links.active {
    left: 0;
  }
}


.header-container ul li a:hover {
  /* color: rgb(23, 167, 23); */
  font-size: 23px;
  transform: scale(0.5s);
}


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 20;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}



