/* ===============================
   GLOBAL (HEADER SCOPE)
================================ */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #222;
  margin: 0;
}

/* ===============================
   HEADER
================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */
.logo img {
  height: 58px;
  width: auto;
  display: block;
}

/* ===============================
   DESKTOP NAV
================================ */
.main-nav {
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
}

/* PREMIUM PILL BUTTONS */
.nav-links a {
  padding: 12px 28px;
  min-width: 160px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #6a4fa3 0%,
    #5b7cbe 50%,
    #4aa6a6 100%
  );

  color: #ffffff;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;

  box-shadow: 0 6px 18px rgba(90, 80, 170, 0.35);

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* SHINE EFFECT */
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(90, 80, 170, 0.45);
}

/* ===============================
   HAMBURGER
================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* ===============================
   TRUST SLIDER
================================ */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  width: max-content;
  animation: trustScroll 18s linear infinite;
}

.trust-track span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* RIGHT → LEFT */
@keyframes trustScroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-50%); }
}

/* ===============================
   MOBILE NAV FIXED
================================ */
/* Disable hamburger completely */
.hamburger {
  display: none !important;
}


@media (max-width: 768px) {

  .main-nav {
    display: none !important;
  }

}

