/* ============================================================
   NAV.CSS — Navigation Bar
   Kinzi Pharma Landing Page
   ============================================================ */


   @keyframes bounce {
  0%   { transform: translateY(0) scale(1); }
  10%  { transform: translateY(-8px) scale(1.05); }
  20%  { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-5px) scale(1.03); }
  40%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}


nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); }

/* Logo */
.nlogo         { display: flex; align-items: center; gap: 10px; }
.nlogo-i       { width: 32px; height: 32px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.5px; }
.nlogo-t       { font-size: 17px; font-weight: 500; color: var(--black); }

/* Links */
.nlinks        { display: flex; gap: 28px; list-style: none; align-items: center; }
.nlinks a      { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.nlinks a:hover{ color: var(--black); }

/* CTA Button */
/* CTA Button */
.ncta {
  padding: 10px 22px;
  background: var(--black);
  color: #fff !important;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
  animation: bounce 3s ease-in-out infinite;
  display: inline-block;
}
.ncta:hover { background: var(--teal) !important; }


/* Hamburger (mobile) */
.nham        { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nham span   { width: 22px; height: 1.5px; background: var(--black); display: block; transition: all 0.3s; }
