/* =========================
   HEADER STYLES (Scoped)
   ========================= */
.site-header .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  border-radius: 0 0 25px 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
}

.site-header .top-navbar {
  background: linear-gradient(90deg, #001a4d, #003c8f, #007bff);
  color: #fff;
  font-size: 15px;
  padding: 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 25px rgba(0,153,255,0.35);
}

.site-header .top-navbar .left span {
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(90deg, #00eaff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(0,195,255,0.4);
}

.site-header .top-navbar .right a {
  color: #fff;
  margin-left: 12px;
  font-size: 18px;
  transition: .3s;
}

.site-header .top-navbar .right a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

.site-header .top-btn {
  margin-left: 20px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #00eaff, #007bff);
  color: #000;
  font-weight: 600;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,195,255,0.4);
  transition: .3s;
}

.site-header .top-btn:hover {
  background: linear-gradient(90deg, #ffdd00, #ffb300);
  color: #000;
  transform: scale(1.05);
}

/* Navbar */
.site-header .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 12px 40px;
}

.site-header .logo img {
  height: 60px;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
}

.site-header .nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color .3s;
}

.site-header .nav-links li a:hover {
  color: #0d47a1;
}

.site-header .menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media(max-width:991px) {
  .site-header .nav-links {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s;
  }
  .site-header .nav-links.active {
    max-height: 400px;
    padding: 15px 0;
  }
  .site-header .menu-toggle {
    display: block;
  }
}
