/* ==========================================================================
   Navmarg - site-chrome.css
   ONE shared stylesheet for the header (.nv-board) and footer (.nv-footer)
   used by every page. Edit the chrome HERE, once, for all pages.
   Load order: AFTER each page's inline styles (link placed before </head>).
   Extracted verbatim from index.html (the reference look) on 2026-06-12,
   preceded by a small self-contained normalization layer so the chrome
   renders identically on pages with or without Tailwind.
   ========================================================================== */

:root {
  /* Only the variable the chrome rules actually reference is declared here.
     Page-local :root values (--nv-shadow, --nv-aqua-soft, etc.) stay in charge
     of page-body styling because this file loads last. */
  --nv-deep-blue: #063b5c;
}

/* --- normalization: makes chrome self-contained on every page ----------- */
.nv-board, .nv-board *, .nv-board *::before, .nv-board *::after,
.nv-footer, .nv-footer *, .nv-footer *::before, .nv-footer *::after { box-sizing: border-box; }
.nv-board, .nv-footer { font-family: 'Josefin Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif; }
.nv-board a, .nv-footer a { text-decoration: none; }
.nv-board a { color: inherit; }
.nv-footer a { color: #fff; }
.nv-footer p { margin: 0; }
.nv-footer .mr-2 { margin-right: .5rem; }
.nv-footer .mt-5 { margin-top: 1.25rem; }
.nv-footer .max-w-xl { max-width: 36rem; }
.nv-footer .text-white\/90 { color: rgba(255, 255, 255, .90); }
.nv-mobile-menu { appearance: none; -webkit-appearance: none; cursor: pointer; font: inherit; }
.nv-mobile-menu svg { width: 1.25rem; height: 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- chrome rules, verbatim from index.html (base layer + patch layer) -- */
.nv-board {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(234, 249, 250, .94);
  border-bottom: 1px solid rgba(0, 119, 163, .16);
  box-shadow: 0 14px 34px -30px rgba(6, 59, 92, .50);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.nv-board-inner {
  width: min(96vw, 1760px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 2.2rem);
  padding: clamp(.52rem, .7vw, .78rem) clamp(.75rem, 2vw, 2.25rem) clamp(.38rem, .55vw, .6rem);
}

.nv-brand { display: inline-flex; align-items: center; min-width: 0; }

.nv-brand-with-original-logo { flex: 0 0 auto; }

.nv-brand-logo-original-wrap { display: inline-flex; align-items: center; line-height: 1; }

.nv-brand-logo-original {
  display: block;
  width: auto;
  height: clamp(4.8rem, 5.9vw, 6.9rem);
  max-width: clamp(14rem, 21vw, 26rem);
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: multiply;
}

.nv-brand-logo-fallback {
  width: clamp(4.5rem, 5vw, 5.8rem) !important;
  height: clamp(4.5rem, 5vw, 5.8rem) !important;
  border-radius: 9999px !important;
  object-fit: cover !important;
  background: #fff !important;
}

.nv-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.7rem, 1vw, 1.25rem);
  min-width: 0;
  overflow: visible;
}

.nv-trust-strip a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: clamp(4.1rem, 4.9vw, 5.8rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  line-height: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.nv-trust-strip a:hover { transform: translateY(-2px); opacity: .94; }

.nv-trust-strip img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.nv-partner-logo-small { max-width: clamp(5.4rem, 6.1vw, 7.4rem); max-height: clamp(3.3rem, 4.1vw, 5rem); }

.nv-partner-logo-startup-india { max-width: clamp(5.1rem, 5.8vw, 7rem); }

.nv-partner-logo-kilkari { max-width: clamp(9rem, 10.6vw, 12.5rem); max-height: clamp(4.3rem, 4.9vw, 5.7rem); }

.nv-partner-logo-jjm { max-width: clamp(5.5rem, 6vw, 7.2rem); }

.nv-partner-logo-mahe { max-width: clamp(11.2rem, 13.1vw, 15.4rem); max-height: clamp(4.5rem, 5vw, 5.9rem); }

.nv-partner-logo-azadi { max-width: clamp(5.5rem, 6.1vw, 7.5rem); }

.nv-mobile-menu {
  justify-self: end;
  width: 2.9rem;
  height: 2.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  border: 1px solid rgba(0,119,163,.20);
  color: var(--nv-deep-blue);
  background: rgba(255,255,255,.76);
}

.nv-nav-wrap {
  width: min(96vw, 1760px);
  margin-inline: auto;
  padding: 0 clamp(.75rem, 2vw, 2.25rem) .64rem;
}

.nv-nav { display: flex; align-items: center; justify-content: flex-end; gap: .35rem; flex-wrap: wrap; }

.nv-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: .53rem .88rem .43rem;
  border-radius: 9999px;
  color: var(--nv-deep-blue);
  font-size: clamp(.74rem, .70vw, .9rem);
  line-height: 1;
  letter-spacing: .15em;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.nv-nav-link:hover, .nv-nav-link.is-active {
  background: #99f6e4;
  transform: translateY(-1px);
  box-shadow: 0 12px 25px -22px rgba(6, 59, 92, .65);
}

.nv-footer { position: relative; overflow: hidden; background: #0d9488; color: #fff; }

.nv-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 0%, rgba(255,255,255,.18), transparent 26rem), linear-gradient(135deg, rgba(6,182,212,.15), transparent 45%); pointer-events: none; }

.nv-footer-inner { position: relative; width: min(94vw, 1720px); margin-inline: auto; padding: clamp(2.5rem,4vw,4.2rem) 0 1.35rem; }

.nv-footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, minmax(0,.7fr)); gap: clamp(1.4rem,2.6vw,3rem); align-items: start; }

.nv-footer-brand { display: flex; align-items: center; gap: 1rem; }

.nv-footer-brand img { width: clamp(4.4rem,4.7vw,5.6rem); height: clamp(4.4rem,4.7vw,5.6rem); object-fit: cover; border-radius: 9999px; background: #fff; }

.nv-footer-brand strong { display: block; font-size: clamp(1.15rem,1.35vw,1.7rem); line-height: 1.08; letter-spacing: -.035em; }

.nv-footer h3 { margin: 0 0 .85rem; font-size: clamp(.9rem,.86vw,1rem); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }

.nv-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .56rem; }

.nv-footer a { opacity: .92; transition: opacity .18s ease, transform .18s ease; }

.nv-footer a:hover { opacity: 1; transform: translateX(2px); }

.nv-footer-bottom { margin-top: clamp(1.6rem,3vw,3rem); padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.22); text-align: center; font-size: .95rem; opacity: .95; }

@media (max-width: 1500px) {
  .nv-brand-logo-original { height: clamp(4.25rem, 5.3vw, 5.9rem); max-width: clamp(12.5rem, 18vw, 22rem); }
  .nv-trust-strip { gap: clamp(.55rem,.85vw,1rem); }
  .nv-partner-logo-small { max-width: clamp(4.9rem,5.7vw,6.7rem); max-height: clamp(3rem,3.8vw,4.4rem); }
  .nv-partner-logo-kilkari { max-width: clamp(8rem,9.5vw,11rem); }
  .nv-partner-logo-mahe { max-width: clamp(10rem,11.8vw,13.5rem); }
}

@media (max-width: 1279px) {
  .nv-board-inner { display: flex; justify-content: space-between; }
  .nv-trust-strip { display: none; }
  .nv-brand-logo-original { height: clamp(3.6rem, 7vw, 4.85rem); max-width: clamp(10.5rem,34vw,15.5rem); }
  .nv-nav { justify-content: center; }
}

@media (max-width: 900px) {
  .nv-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nv-mobile-menu { display: inline-flex; }
  .nv-nav-wrap { display: none; padding-bottom: .9rem; }
  .nv-nav-wrap.is-open { display: block !important; }
  .nv-nav { align-items: stretch; flex-direction: column; }
  .nv-nav-link { width: 100%; min-height: 2.55rem; }
  .nv-footer-brand { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nv-brand-logo-original { height: 3.7rem; max-width: clamp(8.8rem, 62vw, 14rem); }
}

.nv-board {
  background: rgba(238, 252, 253, .94) !important;
  border-bottom: 1px solid rgba(0, 119, 163, .16) !important;
  overflow: visible !important;
}

.nv-board-inner {
  width: min(96vw, 1760px) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: minmax(215px, .34fr) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(.85rem, 1.4vw, 1.6rem) !important;
  padding: clamp(.42rem, .65vw, .7rem) clamp(.8rem, 2vw, 2.2rem) clamp(.38rem, .58vw, .64rem) !important;
}

.nv-brand-with-original-logo,
.nv-brand-logo-original-wrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  line-height: 1 !important;
}

.nv-brand-with-original-logo .nv-brand-logo-original {
  display: block !important;
  width: auto !important;
  height: clamp(4.8rem, 5.65vw, 6.85rem) !important;
  max-width: clamp(14rem, 20vw, 25rem) !important;
  object-fit: contain !important;
  object-position: left center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  mix-blend-mode: multiply !important;
  transform: none !important;
}

.nv-partner-row {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(.34rem, .62vw, .82rem) !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.nv-partner-row .nv-logo-slot {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 0 !important;
  overflow: visible !important;
  transition: transform .18s ease, opacity .18s ease !important;
}

.nv-partner-row a.nv-logo-slot:hover { transform: translateY(-1px) !important; opacity: .95 !important; }

.nv-partner-row .nv-logo-slot img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.nv-logo-slot-wide {
  width: clamp(7.3rem, 8.05vw, 10rem) !important;
  height: clamp(2.72rem, 2.98vw, 3.75rem) !important;
}

.nv-logo-slot-xwide {
  width: clamp(8.9rem, 10.25vw, 12.8rem) !important;
  height: clamp(2.72rem, 2.98vw, 3.75rem) !important;
}

.nv-logo-slot-medium {
  width: clamp(6.2rem, 7.35vw, 8.85rem) !important;
  height: clamp(2.72rem, 2.98vw, 3.75rem) !important;
}

.nv-logo-slot-circle {
  width: clamp(3.05rem, 3.42vw, 4.16rem) !important;
  height: clamp(3.05rem, 3.42vw, 4.16rem) !important;
}

.nv-nav-wrap {
  padding-top: 0 !important;
  padding-bottom: clamp(.54rem, .68vw, .75rem) !important;
}

.nv-nav { justify-content: flex-end !important; }

@media (max-width: 1500px) {
  .nv-board-inner {
    grid-template-columns: minmax(190px, .31fr) minmax(0, 1fr) auto !important;
    gap: clamp(.7rem, 1vw, 1.2rem) !important;
  }
  .nv-brand-with-original-logo .nv-brand-logo-original {
    height: clamp(4.2rem, 5vw, 5.55rem) !important;
    max-width: clamp(12rem, 17vw, 18.8rem) !important;
  }
  .nv-partner-row { gap: clamp(.28rem, .48vw, .58rem) !important; }
  .nv-logo-slot-wide {
    width: clamp(6.45rem, 7.2vw, 8rem) !important;
    height: clamp(2.38rem, 2.62vw, 3rem) !important;
  }
  .nv-logo-slot-xwide {
    width: clamp(7.85rem, 9vw, 10.2rem) !important;
    height: clamp(2.38rem, 2.62vw, 3rem) !important;
  }
  .nv-logo-slot-medium {
    width: clamp(5.55rem, 6.55vw, 7rem) !important;
    height: clamp(2.38rem, 2.62vw, 3rem) !important;
  }
  .nv-logo-slot-circle {
    width: clamp(2.72rem, 3.05vw, 3.38rem) !important;
    height: clamp(2.72rem, 3.05vw, 3.38rem) !important;
  }
}

@media (max-width: 1279px) {
  .nv-board-inner {
    display: flex !important;
    justify-content: space-between !important;
  }
  .nv-brand-with-original-logo .nv-brand-logo-original {
    height: clamp(3.7rem, 7vw, 4.85rem) !important;
    max-width: clamp(10.5rem, 34vw, 15.5rem) !important;
  }
  .nv-nav { justify-content: center !important; }
}

@media (max-width: 640px) {
  .nv-brand-with-original-logo .nv-brand-logo-original {
    height: 3.7rem !important;
    max-width: clamp(8.8rem, 62vw, 14rem) !important;
  }
}
