.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  
  
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #32BAA6;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 150px;
  height: 40px;

}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.4px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  padding: 6px;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  background-color:#ffffff ;
  color:#32BAA6;
  text-decoration: none;

  border-radius: 5px;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #111827;
}

@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links a{
    color: black;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
