/* ===============================
   DESIGN SYSTEM — eCareHealth EHR
   Container: 1200px (matches homepage)
   Brand: Medarch deep blue #0C4C75
   Font: Inter (homepage standard)
=============================== */
:root {
  --navy: #071f3a;
  --navy-2: #0a2540;
  --ink: #0a2540;
  --ink-2: #1f3a5f;
  --muted: #5b6b80;
  --muted-2: #8497ad;
  --line: #e6ecf2;
  --line-2: #eef2f7;
  --bg: #ffffff;
  --bg-page: #eef2fb;
  --bg-alt: #faf6f0;
  --bg-soft: #f5f8fc;
  --bg-blue: #eaf1fb;
  --bg-hero: #eef2fb;
  --brand: #0C4C75;
  /* homepage Primary-1 */
  --brand-2: #1F578F;
  /* homepage secondary heading */
  --brand-3: #2563eb;
  --brand-light: #3b82f6;
  --pill: #e6efff;
  --pill-ink: #0C4C75;
  --green: #16a34a;
  --green-2: #22c55e;
  --green-bg: #dcfce7;
  --amber: #f59e0b;
  --amber-bg: #fef3c7;
  --rose: #ef4444;
  --rose-bg: #fee2e2;
  --purple: #a21caf;
  --purple-bg: #fae8ff;
  --radius: 12px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .04);
  --shadow: 0 8px 24px rgba(10, 37, 64, .08);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .14);
  --maxw: 1200px;
  --pad-x: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

a {
  color: var(--brand);
  text-decoration: none
}


img,
svg {
  max-width: 100%;
  display: block
}

button {
  font-family: inherit
}

/* Container — same as homepage (max-width:1200px default; 1440px at 1366px+) */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%
}

@media screen and (min-width:1366px) {
  .container {
    max-width: 1440px
  }
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0
}

.skip-link:focus {
  left: 0
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-blue);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand)
}

/* Headings — Manrope (homepage uses Manrope for h1/h2/h3) */
h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--brand-2);
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0;
  font-weight: 700
}

h1 {
  font-size: clamp(34px, 5vw, 56px)
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px)
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600
}

h4 {
  font-size: 18px;
  font-weight: 600
}

p {
  margin: 0;
  color: var(--muted)
}

.section {
  padding: 96px 0;
    padding-top: calc(50px + (95 - 50) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(50px + (95 - 50) * ((100vw - 320px) / (1920 - 320))) !important;
  background: #fff
}

/* .section.alt and .section.soft kept as classes for spacing parity but render with white background — only banner (hero) and Sticky CTA carry colour */
.section.alt,
.section.soft {
  background: #fff
}

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center
}

.section-head h2 {
  margin: 14px 0 12px
}

.section-head p {
  font-size: 18px;
  color: var(--muted)
}

.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

/* Buttons (matches homepage CTA style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 48px;
  text-align: center;
  white-space: nowrap
}

.btn-ghost  {
  border-radius: 12px;
    background: #1F578F;
    padding: 18px 16px;
    color: var(--white, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Manrope;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: max-content;
    display: flex;
    gap: 7px;
    width: max-content;
}

.btn-primary.btn-ghost :hover {
  box-shadow: 0px 4px 14px #B1DDFF !important;
}

.btn-primary{
  border-radius: 12px;
    border: 1.5px solid #1F578F;
    padding: 18px 16px;
    color: #1F578F;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Manrope;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    text-decoration: none;
        height: max-content;
        background: #fff;

}

.btn-primary:hover {
  box-shadow: 0px 4px 14px #B1DDFF !important;
}

.btn-link {
  background: transparent;
  color: var(--brand);
  padding: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.btn-link:hover {
  color: var(--navy-2)
}

/* ============== HEADER (floating pill, matches homepage) ============== */
.header {
  position: sticky;
  top: 14px;
  z-index: 60;
  background: transparent;
  border-bottom: none;
  padding: 0;
  margin-top: 14px;
  pointer-events: none;
  /* let pointer events apply only to the inner pill */
}

.header .container {
  pointer-events: auto
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(10px);
  border: 1px solid rgba(230, 236, 242, .9);
  border-radius: 18px;
  padding: 0 22px;
  box-shadow: 0 6px 24px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -.01em;
  flex-shrink: 0
}

.brand img {
  height: 38px;
  width: auto;
  display: block
}

.brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1c5a96, #0C4C75);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0
}

.brand .logo svg {
  width: 18px;
  height: 18px
}

.brand b {
  color: var(--ink);
  font-weight: 700
}

.brand .health {
  color: var(--brand);
  font-weight: 500
}

@media (max-width:600px) {
  .brand img {
    height: 32px
  }
}

/* Primary nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links>li {
  position: relative
}

.nav-links>li>a,
.nav-links>li>button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-links>li>a:hover,
.nav-links>li>button:hover {
  color: var(--brand);
  background: var(--bg-soft)
}

.nav-links .caret {
  transition: transform .15s ease
}

.nav-links>li:hover .caret,
.nav-links>li[aria-expanded="true"] .caret {
  transform: rotate(180deg)
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .18s ease;
  z-index: 50;
}

.nav-links>li:hover .dropdown,
.nav-links>li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4
}

.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--brand)
}

.dropdown a small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 2px
}

.dropdown .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-blue);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

/* CTA cluster */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.signin {
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px
}

.signin:hover {
  color: var(--brand);
  background: var(--bg-soft)
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center
}

.menu-toggle svg {
  width: 22px;
  height: 22px
}

.mobile-menu {
  display: none;
  background: #fff;
  padding: 16px 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(230, 236, 242, .9);
  box-shadow: 0 6px 24px rgba(10, 37, 64, .08);
  margin-top: 8px
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--ink-2);
  font-weight: 500;
  border-bottom: 1px solid var(--line-2)
}

.mobile-menu .sub {
  padding-left: 14px;
  font-size: 14px;
  color: var(--muted)
}

.mobile-menu .ctas {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-direction: column
}

@media (max-width:1024px) {
  .nav-links {
    display: none
  }

  .menu-toggle {
    display: inline-flex
  }

  .signin {
    display: none
  }
}

/* ============== HERO ============== */
.hero {
  padding: 48px 0 48px;
  margin-top: -100px;
  /* pull background up behind the floating pill navbar */
  padding-top: 148px;
  /* compensate so content sits below the nav */
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(255, 247, 236, .6) 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(219, 234, 254, .5) 0%, transparent 55%);
}

.hero>* {
  position: relative
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center
}

.hero h1 .accent {
  color: var(--brand)
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 20px;
  max-width: 560px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap
}

.trial-note {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px
}

.trial-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2)
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 20px
}

.trust-row .item {
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--brand)
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 540px
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  /* max-width: 520px; */
  border-radius: 12px;
  overflow: hidden;
  /* aspect-ratio: 6/5; */
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.phone {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 240px;
  height: 420px;
  border-radius: 32px;
  background: #fff;
  border: 7px solid #0a2540;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100px;
  height: 20px;
  background: #0a2540;
  border-radius: 0 0 14px 14px;
  z-index: 2
}

.phone-screen {
  padding: 32px 14px 14px
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink);
  font-weight: 600
}

.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 14px;
  font-weight: 500
}

.appt {
  background: linear-gradient(180deg, #f5f8fc, #fff);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px
}

.appt .tag {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 7px;
  border-radius: 5px
}

.appt .who {
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  margin-top: 6px
}

.appt .meta {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px
}

.msg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px;
  margin-top: 7px
}

.msg b {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  display: block
}

.msg p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3
}

.card-autopay {
  right: 0;
  top: 30px;
  width: 220px
}

.card-autopay .row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.card-autopay .row b {
  font-size: 13px;
  color: var(--ink)
}

.card-autopay .chip {
  width: 36px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0a2540, #1c5a96)
}

.card-autopay .enabled {
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-weight: 500
}

.card-autopay .enabled::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-2)
}

.card-autopay .visa {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .5px
}

.card-autopay .exp {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .1em
}

/* Logo strip */
.logo-strip {
  padding: 32px 0 64px
}

.logo-strip .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0
}

.logos .l {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #94a3b8;
  font-weight: 600;
  font-size: 15px;
  justify-content: center;
  text-align: center
}

.logos .l svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

/* ============== PROBLEM ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.diary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm)
}

.diary .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px
}

.diary .top small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500
}

.diary .row {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed var(--line)
}

.diary .time {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-2);
  background: #f5f8fc;
  border-radius: 6px;
  padding: 5px 8px;
  text-align: center;
  font-weight: 500
}

.diary .label {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px
}

.diary .label small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.5
}

.icon-tile {
  width: 45px;
  height: 45px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.icon-tile img{
  width: max-content;
  height: 30px;
}


.icon-tile.y {
  background: var(--amber-bg);
  color: #b45309
}

.icon-tile.p {
  background: var(--purple-bg);
  color: var(--purple)
}

.diary .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px
}

.diary .stats b {
  font-size: 24px;
  color: var(--brand);
  font-weight: 700;
  display: block
}

.diary .stats small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500
}

.scene {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a2238;
  min-height: 480px;
  color: #fff
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .85
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(7, 31, 58, .3), rgba(7, 31, 58, .6)); */
  z-index: 1
}

.scene .stage {
  position: relative;
  height: 100%;
  padding: 24px;
  z-index: 2
}

.scene .floater {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px
}

.scene .floater b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600
}

.scene .floater small {
  font-size: 11px;
  color: var(--muted)
}

.scene .floater .tile {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0
}

.f1 {
  top: 24px;
  left: 24px
}

.f2 {
  top: 24px;
  right: 24px
}

.f3 {
  bottom: 24px;
  left: 24px
}

.f4 {
  bottom: 24px;
  right: 24px
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px
}

.pillar {
  background: linear-gradient(180deg, #0c2e4f, #071f3a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px
}

.pillar::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .18), transparent 70%);
  pointer-events: none
}

.pillar .ic {
  width: 44px;
    height: 44px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: #9bd0ff;
    position: relative;
    background: #fff;
    padding: 5px;

}

.pillar h3 {
  color: #fff;
  margin-top: 18px;
  position: relative
}

.pillar p {
  color: #cdd9ea;
  margin-top: 10px;
  position: relative
}

.pillar .stat {
  margin-top: 24px;
  font-size: 32px;
  font-weight: 700;
  position: relative
}

.pillar .stat small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9bd0ff;
  margin-left: 10px;
  font-weight: 500
}

/* Why grid */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.why .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column
}

.why .card.dark {
  background: linear-gradient(180deg, #0c2e4f, #071f3a);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden
}

.why .card.dark::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .18), transparent 70%);
  pointer-events: none
}

.why .card.dark>* {
  position: relative
}

.why .card.dark h3 {
  color: #fff
}

.why .card.dark p {
  color: #cdd9ea
}

.why .card .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--bg-blue);
  color: var(--brand);
  display: grid;
  place-items: center
}

.why .card.dark .ic {
  background: rgba(255, 255, 255, .08);
  color: #9bd0ff
}

.why .card h3 {
  margin-top: 18px
}

.why .card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  background: #fff;
  font-weight: 500
}

.chip.b {
  background: var(--bg-blue);
  color: var(--brand);
  border-color: transparent
}

.proven {
  background: var(--bg-blue);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-top: 24px;
  align-items: center
}

.proven h3 {
  font-size: 24px
}

.proven .num {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.proven .stat {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line)
}

.proven .stat b {
  display: block;
  font-size: 32px;
  color: var(--brand);
  font-weight: 700
}

.proven .stat small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500
}

.proven .stat .delta {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
  display: block
}

/* Testimonial */
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-sm)
}

.tcard .stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px
}

.tcard blockquote {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  font-family: inherit
}

.tcard .by {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px
}

.tcard .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8)
}

.tcard .av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tcard .by b {
  display: block;
  color: var(--ink);
  font-weight: 600
}

.tcard .by small {
  display: block;
  color: var(--muted);
  font-size: 13px
}

.tcard .verified {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--brand);
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 6px
}

.tcard .quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #dbeafe;
  font-size: 60px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none
}

.impact {
  background: linear-gradient(180deg, #0c2e4f, #071f3a);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 90% 10%, rgba(56, 189, 248, .18), transparent 60%);
  pointer-events: none
}

.impact .lab {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: #9bd0ff;
  text-transform: uppercase;
  font-weight: 600;
  position: relative
}

.impact .row {
  margin-top: 22px;
  position: relative
}

.impact .row+.row {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  margin-top: 18px
}

.impact .row small {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: #9bd0ff;
  text-transform: uppercase;
  font-weight: 500
}

.impact .row b {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px
}

.impact .bar {
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  margin-top: 14px;
  overflow: hidden
}

.impact .bar>span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #9bd0ff);
  border-radius: 4px
}

/* ============== MODULES (TABS) ============== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  margin: 0 auto 28px;
  max-width: 1080px;
 
  
}


.tab {
  flex: 1 1 110px;
  text-align: center;
  padding: 14px 10px;
  border-radius: 10px;
  color: var(--ink-2);
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  transition: background .15s ease
}

.tab .ic {
  width: 36px;
  height: 36px;
  background: var(--bg-soft);
  border-radius: 9px;
  color: var(--ink-2);
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  transition: all .15s ease
}

.tab:hover {
  background: var(--bg-soft)
}

.tab.active {
  background: var(--bg-blue);
  color: var(--brand);
  font-weight: 600
}


.module-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: none;
  animation: fadeIn .25s ease
}

.module-panel.active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.module-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-bottom: 22px
}

.module-head h3 {
  font-size: 24px;
  margin-top: 14px
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

/* Calendar widget */
.calendar {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px
}

.calhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink)
}

.calhead .pill {
  background: var(--bg-blue);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  text-align: center
}

.cal-grid .dow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
  padding: 4px 0;
  font-weight: 500
}

.cal-grid .d {
  padding: 8px 0;
  color: var(--ink-2);
  border-radius: 6px;
  position: relative
}

.cal-grid .d.dot::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px
}

.cal-grid .d.today {
  background: var(--brand);
  color: #fff;
  font-weight: 700
}

.calnav {
  display: flex;
  gap: 6px
}

.calnav button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: var(--ink-2);
  display: grid;
  place-items: center
}

.calnav button:hover {
  background: var(--bg-soft)
}

.notif {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px
}

.notif-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink)
}

.notif-head .pill {
  background: var(--bg-blue);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px
}

.notif-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 10px
}

.notif-row .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-blue);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.notif-row .body {
  flex: 1;
  min-width: 0
}

.notif-row b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600
}

.notif-row small {
  font-size: 11px;
  color: var(--muted)
}

.notif-row .ok,
.notif-row .warn {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0
}

.notif-row .ok {
  background: var(--green-bg);
  color: var(--green)
}

.notif-row .warn {
  background: var(--amber-bg);
  color: #b45309
}

.notif .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px
}

.notif .stats-row .stat {
  text-align: center;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 10px
}

.notif .stats-row b {
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
  display: block
}

.notif .stats-row small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500
}

/* Module — generic feature list panel for non-scheduling modules */
.mfeat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px
}

.mfeat .item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px
}

.mfeat .item .ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-blue);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 12px
}

.mfeat .item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.mfeat .item p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5
}

.mvisual {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-height: 300px
}

.mvisual .bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px
}

.mvisual .bar-row b {
  color: var(--ink)
}

.mvisual .bar-row .v {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--brand);
  font-weight: 600
}

.mvisual .ok-tag {
  background: var(--green-bg);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px
}

/* ============== WORKFLOW ============== */
.flow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm)
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px
}

.flow-left h3 {
  font-size: 24px
}

.flow-left p {
  margin-top: 10px
}

.flow-stats {
  margin-top: 22px
}

.flow-stat {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  margin-top: 12px
}

.flow-stat .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  flex-shrink: 0
}

.flow-stat b {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600
}

.flow-img {
  /* margin-top: 24px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden; */
  position: relative
}

.flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.flow-steps {
  position: relative;
  padding-left: 18px;
  border-left: 2px dashed var(--line)
}

.fstep {
  position: relative;
  padding: 14px 0 14px 22px
}

.fstep::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px #fff
}

.fstep .card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  transition: transform .15s ease
}

.fstep .card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.fstep .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap
}

.fstep .head h4 {
  font-size: 17px;
  font-weight: 600
}

.fstep .badge {
  background: var(--bg-blue);
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  white-space: nowrap
}

.fstep p {
  margin: 6px 0 12px;
  font-size: 14px;
  color: var(--muted)
}

.fstep .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.pill-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--bg-blue);
  color: var(--brand);
  font-weight: 500
}

.pill-green {
  background: var(--green-bg);
  color: #166534
}

/* ============== AUDIENCE TABS ============== */
.aud-row {
  display: flex;
  justify-content: center;
  margin: 0 0 28px
}

.aud-tabs {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center
}

.aud-tab {
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  background: transparent;
  border: none;
  font-family: inherit;
  transition: all .15s ease
}

.aud-tab small {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  margin-left: 8px;
  opacity: .8;
  font-weight: 500
}

.aud-tab:hover {
  color: var(--brand)
}

.aud-tab.active {
  background: var(--brand);
  color: #fff;
  font-weight: 600
}

.aud-tab.active small {
  color: #9bd0ff
}

.aud-panel {
  display: none;
  animation: fadeIn .25s ease
}

.aud-panel.active {
  display: block
}

.aud-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px
}

.aud-feature {
  background: linear-gradient(180deg, #0c2e4f, #071f3a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden
}

.aud-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 100%, rgba(56, 189, 248, .16), transparent 60%);
  pointer-events: none
}

.aud-feature .lab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: #9bd0ff;
  background: rgba(255, 255, 255, .08);
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600
}

.aud-feature .lab::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8
}

.aud-feature h3 {
  color: #fff;
  margin-top: 16px;
  font-size: 24px;
  position: relative
}

.aud-feature p {
  color: #cdd9ea;
  margin-top: 10px;
  position: relative
}

.aud-mock {
  margin-top: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 14px;
  position: relative
}

.aud-mock .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #cdd9ea;
  font-size: 13px;
  gap: 8px
}

.aud-mock .line:last-child {
  border: none
}

.aud-mock .line .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0
}

.aud-mock .dot.g {
  background: var(--green-2)
}

.aud-mock .dot.y {
  background: var(--amber)
}

.aud-mock .dot.b {
  background: #38bdf8
}

.aud-mock .v {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #9bd0ff;
  letter-spacing: .1em;
  flex-shrink: 0
}

.aud-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column
}

.aud-side .item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start
}

.aud-side .item:last-of-type {
  border: none
}

.aud-side .item .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-bg);
  color: #166534;
  display: grid;
  place-items: center;
  font-weight: 700
}

.aud-side .item .check.lead {
  background: var(--bg-blue);
  color: var(--brand)
}

.aud-side .item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.aud-side .item small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5
}

.aud-side .btn {
  margin-top: auto;
  width: 100%
}

/* Specialties grid */
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px
}

.spec-row h3 {
  font-size: 20px
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px
}

.spec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit
}

.spec:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.spec.active {
  background: var(--bg-blue);
  border-color: var(--brand)
}

.spec .ic {
  width: 45px;
  /* height: 36px; */
  margin: 0 auto 8px;
  border-radius: 9px;

  display: grid;
  place-items: center;
  transition: all .15s ease
}



.spec b {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  display: block
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative
}

.trust-card .ic {
  width: 100px;
  /* height: 42px; */
  color: var(--brand);
  display: grid;
  place-items: center
}

.trust-card .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg-blue);
  color: var(--brand);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600
}

.trust-card h3 {
  margin-top: 18px;
  font-size: 19px
}

.trust-card p {
  margin-top: 8px;
  font-size: 13px
}

.trust-card ul {
  padding: 0;
  list-style: none;
  margin: 18px 0 0
}

.trust-card li {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
  align-items: flex-start;
  line-height: 1.5
}

.trust-card li::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6L5 8.5L9.5 4' stroke='%23166534' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
  margin-top: 2px
}

.cert-bar {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center
}

.cert-bar>b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600
}

.cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.cert-pills span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500
}

.cert-pills span svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0
}

/* CTA band */
.cta-band {
  background: linear-gradient(180deg, #0c2e4f, #071f3a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 320px at 50% 0%, rgba(56, 189, 248, .18), transparent 60%);
  pointer-events: none
}

.cta-band>* {
  position: relative
}

.cta-band .eyebrow {
  background: rgba(255, 255, 255, .08);
  color: #9bd0ff
}

.cta-band .eyebrow::before {
  background: #38bdf8
}

.cta-band h2 {
  color: #fff;
  margin-top: 16px
}

.cta-band p {
  color: #cdd9ea;
  margin: 14px auto 26px;
  max-width: 640px;
  font-size: 18px
}

.cta-band .actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.cta-band .check-row {
  margin-top: 22px;
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  color: #cdd9ea;
  font-size: 14px
}

.cta-band .check-row span {
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.cta-band .check-row svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
  flex-shrink: 0
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none
}

.faq-q::-webkit-details-marker {
  display: none
}

.faq-q .pm {
  font-size: 22px;
  color: var(--brand);
  font-weight: 300;
  transition: transform .2s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center
}

.faq-a {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65
}

.faq-item[open] .pm {
  transform: rotate(45deg)
}

/* ============== FOOTER ============== */
.footer {
  background: #071f3a;
  color: #cdd9ea;
  padding: 64px 0 28px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px
}

.footer h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: #9bd0ff;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 600
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.footer li {
  padding: 6px 0
}

.footer a {
  color: #cdd9ea;
  font-size: 14px
}

.footer a:hover {
  color: #fff
}

.footer .brand {
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px
}

.footer .brand b {
  color: #fff
}

.footer .brand .health {
  color: #9bd0ff
}

.footer .brand .logo {
  background: linear-gradient(135deg, #38bdf8, #1c5a96)
}

.footer .desc {
  font-size: 14px;
  line-height: 1.6;
  color: #9bb0c8;
  margin-top: 0;
  max-width: 300px
}

.foot-contact {
  margin-top: 18px;
  font-size: 13px;
  color: #9bb0c8;
  line-height: 1.7
}

.foot-contact a {
  color: #cdd9ea;
  font-size: 13px
}

.foot-contact div {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 6px
}

.foot-contact svg {
  width: 14px;
  height: 14px;
  color: #9bd0ff;
  margin-top: 3px;
  flex-shrink: 0
}

.ccert {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.ccert span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  background: rgba(255, 255, 255, .06);
  padding: 6px 10px;
  border-radius: 6px;
  color: #9bd0ff;
  font-weight: 600
}

.foot-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap
}

.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  color: #cdd9ea;
  transition: all .15s ease
}

.foot-social a:hover {
  background: #1c5a96;
  color: #fff
}

.foot-social svg {
  width: 18px;
  height: 18px
}

.legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: #9bb0c8;
  font-size: 13px;
  align-items: center
}

.legal-links a {
  color: #9bb0c8;
  margin-left: 18px
}

.legal-links a:hover {
  color: #fff
}

/* ============== RESPONSIVE BREAKPOINTS ============== */
@media (max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative
  }

  .hero-img {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/10
  }

  .phone {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0 auto
  }

  .float-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    width: auto;
    max-width: 320px
  }

  .module-head {
    grid-template-columns: 1fr
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .aud-grid {
    grid-template-columns: 1fr
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px
  }
}

@media (max-width:880px) {
  .section {
    padding: 72px 0
  }

  .split {
    grid-template-columns: 1fr
  }

  .pillars {
    grid-template-columns: 1fr
  }

  .why {
    grid-template-columns: 1fr
  }

  .proven {
    grid-template-columns: 1fr;
    padding: 28px
  }

  .module-grid {
    grid-template-columns: 1fr
  }

  .mfeat {
    grid-template-columns: 1fr
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .spec-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .logos {
    grid-template-columns: repeat(3, 1fr)
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  h1 {
    font-size: 36px
  }

  h2 {
    font-size: 28px
  }

  .cta-band {
    padding: 48px 24px
  }
}

@media (max-width:600px) {
  :root {
    --pad-x: 16px
  }

  .section {
    padding: 56px 0
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 32px;
    margin-top: -90px
  }

  .nav {
    height: 60px;
    padding: 0 14px
  }

  .header {
    top: 10px;
    margin-top: 10px
  }

  .section-head {
    margin-bottom: 36px
  }

  .hero p.lead {
    font-size: 16px
  }

  .btn {
    font-size: 14px;
    padding: 13px 20px
  }

  .hero-ctas {
    flex-direction: row;
    align-items: stretch
  }

  .hero-ctas .btn {
    width: 100%
  }

  .nav {
    height: 64px
  }

  .brand {
    font-size: 18px
  }

  .brand .logo {
    width: 32px;
    height: 32px
  }

  .diary {
    padding: 20px
  }

  .diary .row {
    grid-template-columns: 64px 1fr 32px;
    gap: 10px
  }

 

  .diary .time {
    font-size: 10px;
    padding: 4px 6px
  }

  .scene {
    min-height: 380px
  }

  .scene .floater {
    min-width: auto;
    padding: 10px 12px
  }

  .scene .floater b {
    font-size: 12px
  }

  .scene .floater small {
    font-size: 10px
  }

  .pillar {
    padding: 24px
  }

  .why .card {
    padding: 24px;
    min-height: auto
  }

  .tcard {
    padding: 24px
  }

  .tcard blockquote {
    font-size: 17px
  }

  .impact {
    padding: 24px
  }

  .module-panel {
    padding: 20px
  }

  .flow {
    padding: 20px
  }

  .fstep .card {
    padding: 16px
  }

  .aud-feature {
    padding: 24px
  }

  .aud-side {
    padding: 20px
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .cert-bar {
    padding: 16px;
    justify-content: flex-start
  }

  .footer {
    padding: 48px 0 24px
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .legal {
    justify-content: center;
    text-align: center;
    flex-direction: column
  }

  .legal-links a:first-child {
    margin-left: 0
  }
}

@media (max-width:420px) {
  .tabs {
    padding: 6px
  }

  .tab {
    padding: 10px 6px;
    font-size: 12px;
    flex: 1 1 80px
  }

  .tab .ic {
    width: 30px;
    height: 30px
  }

  .float-card {
    font-size: 13px
  }
}

/* ============== HUBSPOT GET-STARTED MODAL (homepage parity) ============== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 58, .55);
  backdrop-filter: blur(4px);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s ease;
}

.modal-backdrop.open {
  display: flex;
  opacity: 1
}

.modal-card {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 30px 80px rgba(7, 31, 58, .25);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px 32px 28px;
  position: relative;
  transform: translateY(8px);
  transition: transform .25s ease;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0)
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f8fc;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-2);
  font-size: 20px;
}

.modal-close:hover {
  background: var(--bg-blue);
  color: var(--brand)
}

.modal-card .form-header {
  text-align: center;
  margin-bottom: 18px
}

.modal-card .form-header img {
  height: 42px;
  width: auto;
  margin: 0 auto 14px
}

.modal-card .form_heading {
  color: #0C4C75;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
}

.modal-card .form_para {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.modal-card .hs-form-wrapper {
  margin-top: 8px;
  min-height: 280px
}

.modal-card .hs-form-wrapper .hbspt-form {
  margin-top: 8px
}

.modal-card .compliance-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px
}

.modal-card .compliance-row span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.modal-card .compliance-row svg {
  width: 14px;
  height: 14px;
  color: var(--brand)
}

@media (max-width:600px) {
  .modal-card {
    padding: 24px 20px 20px
  }

  .modal-card .form_heading {
    font-size: 19px
  }
}

/* ============== CASE STUDIES — homepage-parity (3-up · image+content per card) ============== */
.cs-section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 1100px
}

.cs-section-head h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -.01em;
  line-height: 1.2;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0;
}

.cs-section-head h2 .accent {
  color: var(--brand);
  font-weight: 700
}

.cs-wrap {
  position: relative
}

.cs-viewport {
  overflow: hidden;
  padding: 8px 4px
}

.cs-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.22, .8, .2, 1);
  will-change: transform
}

.cs-slide {
  flex: 0 0 calc((100% - -210px)/3);
  /* 3 visible on desktop, 24px gap × 2 */
  min-width: 0;
}

.cs-card {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

.cs-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.cs-photo {
  position: relative;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  overflow: hidden;
  min-height: 340px
}

.cs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block
}

.cs-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  min-width: 0
}

.cs-quote-icon {
  display: inline-block;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  margin: 0 0 10px;
  font-weight: 700;
}

.cs-heading {
  color: var(--brand-2);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}

.cs-text {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-blue);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: auto;
  align-self: flex-start;
  transition: background .15s ease, color .15s ease;
}

.cs-link:hover {
  background: var(--brand);
  color: #fff
}

.cs-link svg {
  width: 14px;
  height: 14px
}

.cs-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cs-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #cbd5e1
}

.cs-author b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.2
}

.cs-author small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px
}

/* Controls */
.cs-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px
}

.cs-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-2);
  transition: all .15s ease;
  font-family: inherit;
}

.cs-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-sm)
}

.cs-btn:disabled {
  opacity: .4;
  cursor: not-allowed
}

.cs-btn:disabled:hover {
  background: #fff;
  color: var(--ink-2);
  border-color: var(--line)
}

.cs-btn svg {
  width: 18px;
  height: 18px
}

.cs-dots {
  display: flex;
  gap: 8px
}

.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--brand-2);
  cursor: pointer;
  padding: 0;
  transition: all .15s ease;
}

.cs-dot.active {
  background: var(--brand-2);
  transform: scale(1.15)
}

.cs-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
  min-width: 60px;
  text-align: center
}

/* Featured testimonial band (dark navy strip below carousel — matches the home-page bottom row) */
.cs-feature {
  margin-top: 48px;
  background: linear-gradient(180deg, #1F578F 0%, #0C4C75 100%);
  color: #fff;
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 200px at 50% 0%, rgba(255, 255, 255, .08), transparent 60%);
}

.cs-feature .q-icon {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1;
  color: #9bd0ff;
  flex-shrink: 0;
  position: relative
}

.cs-feature blockquote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: #fff;
  position: relative;
}



@media (max-width:992px) {
  .cs-track {
    gap: 16px
  }

  .cs-slide {
    flex-basis: 100%
  }

  .cs-card {
    grid-template-columns: 1fr
  }

  .cs-photo {
    min-height: 220px;
    aspect-ratio: 16/10
  }

  .cs-body {
    padding: 22px 20px 20px
  }

  .cs-text {
    -webkit-line-clamp: 6
  }

  .cs-feature {
    padding: 28px 22px;
    flex-direction: column;
    gap: 10px
  }
}

@media (max-width:420px) {
  .cs-controls {
    gap: 10px
  }

  .cs-btn {
    width: 42px;
    height: 42px
  }
}

/* ============== STICKY CTA (only colored element besides banner) ============== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: linear-gradient(180deg, #0c4c75, #0a3d62);
  color: #fff;
  padding: 14px 0;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 -8px 30px rgba(7, 31, 58, .18);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.sticky-cta.visible {
  transform: translateY(0)
}

.sticky-cta .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.sticky-cta .copy {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 240px
}

.sticky-cta .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #9bd0ff;
}

.sticky-cta b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3
}

.sticky-cta small {
  display: block;
  font-size: 13px;
  color: #cdd9ea;
  margin-top: 2px
}

.sticky-cta .ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.sticky-cta .btn {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px
}

.sticky-cta .btn-primary {
  background: #fff;
  color: var(--brand);
  border: 1px solid #fff
}

.sticky-cta .btn-primary:hover {
  background: #eaf1fb;
  color: var(--brand)
}

.sticky-cta .btn-ghost:hover {
  box-shadow: 0px 4px 14px #B1DDFF !important;

}

.btn-ghost:hover {
  box-shadow: 0px 4px 14px #B1DDFF !important;

}

.sticky-cta .btn-ghost:hover {
   box-shadow: 0px 4px 14px #B1DDFF !important;

}

.sticky-cta .close {
  background: transparent;
  border: none;
  color: #cdd9ea;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.sticky-cta .close:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff
}

@media (max-width:600px) {
  .sticky-cta {
    padding: 10px 0
  }

  .sticky-cta small {
    display: none
  }

  .sticky-cta .ic {
    width: 36px;
    height: 36px
  }

  .sticky-cta .btn-primary {
    display: none
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  html {
    scroll-behavior: auto
  }
}

/* Focus states (a11y) */
a:focus-visible,
button:focus-visible,
.tab:focus-visible,
.aud-tab:focus-visible,
.spec:focus-visible,
.faq-q:focus-visible {
  outline: 3px solid var(--brand-3);
  outline-offset: 3px;
  border-radius: 6px
}






/* navbar css start */

        .ecs-nav-root {
            /* display: contents removes this element's own box so the sticky
         child can scroll against the host page, not this wrapper. */
            display: contents;
            --ecs-brand-dark: #0a3d6b;
            --ecs-brand-darker: #0b2f55;
            --ecs-brand-blue: #1a8fe3;
            --ecs-ink: #0f2a44;
            --ecs-muted: #6b7a8c;
            --ecs-line: #e5eaf0;
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            color: var(--ecs-ink);
        }

        /* font/color need to be applied to the sticky wrapper too since
       display:contents elements don't render their own styles. */
        .ecs-nav-sticky {
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            color: var(--ecs-ink);
        }

        .ecs-nav-root *,
        .ecs-nav-root *::before,
        .ecs-nav-root *::after {
            box-sizing: border-box;
        }

        /* ---------- sticky floating wrapper ---------- */
        .ecs-nav-sticky {
            position: sticky;
            top: 16px;
            z-index: 1040;
            padding: 0 12px;
        }

        .ecs-nav-floating {
            /* max-width: 1395px; */
            margin: 0 auto;
            border-radius: 24px;
            background: var(--white, #FFF);
            box-shadow: 0px 0px 40px 1px #FFF;
            border: 1px solid var(--Stroke-1, #E0E0E0);
            position: relative;
            transition: box-shadow .25s ease, border-radius .25s ease;
        }

        .ecs-nav-floating.ecs-is-open {
            box-shadow: 0px 0px 40px 1px #FFF;

            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        /* ---------- top visible bar ---------- */
        .ecs-nav-top {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 22px;
            min-height: 72px;
        }

        /* brand */
        .ecs-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            white-space: nowrap;
        }

        .ecs-brand-badge {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a9fe8 0%, #1a7cc8 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
        }

        .ecs-brand-badge svg {
            width: 18px;
            height: 18px;
        }

        .ecs-brand-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: .2px;
        }

        .ecs-brand-text img {
            width: calc(110px + (200 - 110) * ((100vw - 320px) / (1920 - 320)));
        }

        .ecs-brand-text .ecs-dark {
            color: var(--ecs-brand-dark);
        }

        .ecs-brand-text .ecs-light {
            color: var(--ecs-brand-blue);
            font-weight: 500;
        }

        .ecs-brand-sep {
            width: 1px;
            height: 34px;
            background: #dbe4ee;
            margin: 0 6px;
        }

        /* menu */
        .ecs-nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1 1 auto;
        }

        .ecs-nav-link {
            position: relative;

            padding: 10px 9px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            user-select: none;
            text-decoration: none;
            transition: color .2s ease;

            color: var(--Grey-1, #4F4F4F);
            font-family: Manrope;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 400;
            line-height: 120%;
            /* 21.6px */
        }

        .ecs-nav-link .ecs-caret {
            font-size: 14px;
            color: #4F4F4F;
            transition: transform .25s ease;
        }

        .ecs-nav-link:hover,
        .ecs-nav-link.ecs-is-active {
            color: #4F4F4F;
            font-family: Manrope;
            font-weight: 600;
            line-height: 120%;
            /* 21.6px */
        }

        .ecs-nav-link.ecs-is-active .ecs-caret {
            transform: rotate(180deg);

            color: #4F4F4F;
            font-family: Manrope;
            font-weight: 700;
            line-height: 120%;
            /* 21.6px */
        }

        /* action buttons */
        .ecs-nav-actions {
            display: inline-flex;
            gap: 10px;
            align-items: center;
            margin-left: auto;
        }

        .ecs-btn-outline {
           border-radius: 12px;
border: 1.5px solid #1F578F;
            padding: 18px 16px;

          color: #1F578F;

            text-align: center;
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: Manrope;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 600;
            line-height: normal;

            white-space: nowrap;
            text-decoration: none;
        }

        .ecs-btn-outline:hover {
            box-shadow: 0px 4px 14px #B1DDFF !important;
        }

        .ecs-btn-solid {

            white-space: nowrap;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;


          border-radius: 12px;
background: #1F578F;
            padding: 18px 16px;

            color: var(--white, #FFF);
            text-align: center;
            font-feature-settings: 'liga' off, 'clig' off;
            font-family: Manrope;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 600;
            line-height: normal;
        }

        .ecs-btn-solid:hover {
            box-shadow: 0px 4px 14px #B1DDFF !important;
            color: #fff !important;
        }

        .ecs-btn-solid .bi-send-fill {
            transform: rotate(-30deg);
        }

        /* mobile hamburger */
        .ecs-nav-burger {
            display: none;
            width: 44px;
            height: 40px;
            border-radius: 8px;
            background: transparent;
            border: none;
            align-items: center;
            justify-content: center;
            color: var(--ecs-ink);
            margin-left: auto;
            cursor: pointer;
        }

        .ecs-nav-burger i {
            font-size: 24px;
        }

        /* ---------- mega menu (expand area, overlays content below) ---------- */
        .ecs-nav-mega {
            position: absolute;
            top: 100%;
            left: -1px;
            right: -1px;
            background: #ffffff;
            border-left: 1px solid var(--Stroke-1, #E0E0E0);
            border-right: 1px solid var(--Stroke-1, #E0E0E0);
            border-bottom: 1px solid var(--Stroke-1, #E0E0E0);
            border-radius: 0 0 24px 24px;
            margin-top: -1px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 20px 40px rgba(10, 61, 107, 0);
            transition: max-height .35s ease, opacity .25s ease, box-shadow .25s ease;
            z-index: 1;
        }

        .ecs-nav-mega.ecs-is-open {
            max-height: max-content;
            opacity: 1;
            visibility: visible;
            box-shadow: 0px 0px 40px 1px #FFF;

        }

        .ecs-mega-inner {
            padding: 24px 26px 28px;
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 28px;
            padding-top: calc(24px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
        }

        .ecs-mega-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
            row-gap: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
        }

        .ecs-mega-item {
            display: flex;
            gap: 14px;
            text-decoration: none;
            color: inherit;
            padding: 4px;
            border-radius: 8px;
            transition: background .2s ease;
            height: max-content;
                        padding: 10px;

        }

        .ecs-mega-item:hover {
            background: #eef2f7;
            height: max-content;
            padding: 10px;
        }

        .ecs-mega-icon {
            flex: 0 0 36px;
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #eaf4fc;
            border-radius: 8px;
            color: var(--ecs-brand-blue);
        }

        .ecs-mega-icon i {
            font-size: 18px;
        }

        .ecs-mega-item .heading6 {
            margin: 0 0 4px;
            color: #1F578F;
            font-family: Manrope;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 600;
            line-height: 150%;
            /* 27px */
        }

        .ecs-mega-item p {
            margin: 0;
            color: var(--Grey-1, #4F4F4F);
            font-family: Manrope;
            font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
        }

        /* aside blog card */
        .ecs-mega-aside {
            border-left: 1px solid var(--ecs-line);
            padding-left: 26px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ecs-mega-thumb {
            width: 100%;
            height: 120px;
            border-radius: 10px;
            background: url('../images/blog-navbar.png') center/cover no-repeat;
        }

        .ecs-blog-link {

            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;

            color: #1F578F;
            font-family: Manrope;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 600;
            line-height: 150%;
            /* 27px */
        }

        .ecs-blog-link:hover {
            text-decoration: underline;
            color: var(--ecs-brand-dark);
        }

        .ecs-mega-aside p {
            margin: 0;
            color: var(--Grey-1, #4F4F4F);
            font-family: Manrope;
            font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            /* 24px */
        }

        /* ---------- offcanvas (mobile) ---------- */
        .ecs-offcanvas {
            background: #ffffff;
            width: 100% !important;
        }

        .ecs-offcanvas .offcanvas-header {
            padding: 18px 22px;
            border-bottom: 1px solid transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ecs-offcanvas .offcanvas-body {
            padding: 8px 22px 24px;
        }

        .ecs-close {
            background: transparent;
            border: none;
            font-size: 24px;
            color: var(--ecs-brand-dark);
            line-height: 1;
            padding: 0;
        }

        .ecs-acc-item {
            border-bottom: 1px solid var(--ecs-line);
        }

        .ecs-acc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 2px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--ecs-ink);
            user-select: none;
        }

        .ecs-acc-item.ecs-is-open>.ecs-acc-header {
            color: var(--ecs-brand-dark);
        }

        .ecs-acc-icon {
            font-size: 22px;
            color: #8a99ab;
            line-height: 1;
            transition: transform .2s ease;
        }

        .ecs-acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
        }

        .ecs-acc-item.ecs-is-open>.ecs-acc-body {
            max-height: 600px;
        }

        .ecs-acc-body ul {
            list-style: none;
            margin: 0;
            padding: 4px 0 16px 22px;
        }

        .ecs-acc-body ul li a {
            display: block;
            padding: 8px 0;
            color: var(--Grey-1, #4F4F4F);
            font-family: Manrope;
            font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            text-decoration: none;
        }

        .ecs-acc-body ul li a:hover {
            color: var(--ecs-brand-dark);
        }

        /* ---------- responsive ---------- */
        @media (max-width: 1199.98px) {
            .ecs-nav-link {
                padding: 10px 10px;
                font-size: 14.5px;
            }

            .ecs-nav-top {
                gap: 6px;
            }
        }

        @media (max-width: 991.98px) {
            .ecs-nav-sticky {
                top: 10px;
                padding: 0 10px;
            }


            .ecs-nav-top {
                padding: 10px 14px;
                min-height: 60px;
            }

            .ecs-nav-menu,
            .ecs-nav-actions,
            .ecs-brand-sep {
                display: none !important;
            }

            .ecs-nav-burger {
                display: inline-flex;
            }

            .ecs-nav-mega {
                display: none !important;
            }
        }

        @media (max-width: 575.98px) {
            .ecs-brand-text {
                font-size: 20px;
            }
        }


        @media (max-width:1400px) {
            .ecs-btn-outline {
                display: none !important;
            }
        }

        @media (max-width:1200px) and (min-width:992.98px) {
            .ecs-nav-link{
                gap: 5px;
            }

            .ecs-nav-top {
    
    padding: 20px 0px;
}
        }


        .ecs-nav-link > span {
  display: inline-block;
  position: relative;
}
.ecs-nav-link > span::after {
  content: attr(data-text);
  display: block;
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}


.ecs-acc-header a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}


/* footer css start here */


html {
    overflow-y: scroll;

}

::-webkit-scrollbar {
    width: 1.9px !important;
}



*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #3c3b3b;
    letter-spacing: 0;
    font-family: "proxima-nova", sans-serif;
    /* font-family: 'Raleway', sans-serif; */
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

a,
button,
input {
    outline: 0 !important;
}


.btn,
.btn.focus,
.btn:focus,
button {
    box-shadow: none !important;
}

ol,
ul {
    margin: 0;
}

dd,
dl,
dt,
li,
ol,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #1F578F;
}

/* a:hover {
    color: #222;
} */

a img {
    border: none;
}

/* img {
    max-width: 100%;
} */

iframe {
    border: none !important;
}

/* h1>span:not(.nocolor):not(.badge),
h2>span:not(.nocolor):not(.badge),
h3>span:not(.nocolor):not(.badge),
h4>span:not(.nocolor):not(.badge),
h5>span:not(.nocolor):not(.badge),
h6>span:not(.nocolor):not(.badge) {
    color: var(--Primary-1, #0C4C75);
} */

address,
blockquote,
dd,
dl,
fieldset,
form,
ol,
p,
pre,
table,
ul {
    margin-bottom: 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px !important;
    }
}



@media (min-width: 768px) {
    .container {
        max-width: 720px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

@media screen and (min-width: 1366px) {
    .container {
        max-width: 1440px !important;
    }

    /* .container{
        max-width: 1600px !important;
    } */
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* body .commonSection {
      padding: 90px 0;
   } */
@media (max-width: 1599px) {
    body body {
        padding-top: 75px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    body body {
        padding-top: 68px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    body body {
        padding-top: 57px;
    }
}

@media (max-width: 767.98px) {
    body body {
        font-size: 14px;
        padding-top: 52px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (min-width: 1366px) {
    .container {
        max-width: 1280px;
    }
}

/* .commonSection {
    padding: 90px 0;
} */

/* .commonSection_header {
    margin-bottom: 50px;
} */

.commonSection_header p {
    color: #4d5156;
    line-height: 24px;
}

.commonSection_header p:last-child {
    margin-bottom: 0;
}



@media (max-width: 1199.98px) {

    .commonSection_header {
        margin-bottom: 30px;
    }



}




@media (max-width:767.98px) {
    .banner-section {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .commonSection {
        padding: 25px 0;
    }

    .commonSection_header {
        margin-bottom: 20px;
    }

    .commonSection_header p {
        line-height: 23px;
        margin-bottom: 20px;
    }
}




@media only screen and (min-width: 1600px) {
    .technology-container {
        max-width: 1440px !important;
        /* padding: 0 116px !important; */
    }
}

/* @media only screen and (min-width: 1440px) {
    .technology-container {
        max-width: 1503px !important;
        padding: 0 130px !important;
    }
}
@media only screen and (min-width: 1280px) {
    .technology-container {
        max-width: 1280px !important;
        padding: 0 55px !important;
    }
}
@media only screen and (min-width: 1024px) {
    .technology-container {
        max-width: 1224px !important;
        padding: 0 27px !important;
    }
}
@media only screen and (min-width: 768px) {
    .technology-container {
        max-width: 1001px !important;
        padding: 0 16px !important;
        width: 100% !important;
    }
} */





/* 
.blog-text {
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    background-color: #2879c9;
    color: #fff;
    transition: all 0.4s linear;
    border-left: 1px solid #eee;
}

.blog-text:hover {
    color: #fff;
    background-color: #b0cb1f;
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    background-color: #2879c9;
    color: #fff;
    transition: all 0.4s linear;
    border-left: 3px solid #ffffff;
}

.contact-text:hover {
    color: #fff;
    background-color: #b0cb1f;
} */
/* 
@media (max-width: 767.98px) {
    .top-social .hover-patch {
        transition: none;
    }

    .top-social .hover-patch:hover {
        width: 0px;
        transition: none;
        cursor: text;
    }

    .top-social .hover-patch {
        width: 30px;
    }
}

@media (max-width: 767.98px) {

    #top-bar,
    #top-social {
        display: none;
    }


} */

/* Nav Bar Top Sectioin CSS End Here */
/* page title start here css */
#page-title {
    position: relative;
    padding: 1px 0;
    background: #2c71b7 !important;
    background: -moz-linear-gradient(-45deg,
            #2c71b7 0,
            #1cadd9 33%,
            #22c764 65%,
            #b0cb1f 100%);
    background: -webkit-linear-gradient(-45deg,
            #2c71b7 0,
            #1cadd9 33%,
            #22c764 65%,
            #b0cb1f 100%);
    background: linear-gradient(135deg,
            #2c71b7 0,
            #9bb6be 33%,
            #22c764 65%,
            #b0cb1f 100%);
}

/* page title start End css */
/* ============ Header Section CSS start here ================ */
/* -------------- Hamnurger Section css start here --------------- */
header.sticky .hamburger-inner,
header.sticky .hamburger-inner::after,
header.sticky .hamburger-inner::before,
header.sticky .hamburger.is-active .hamburger-inner,
header.sticky .hamburger.is-active .hamburger-inner::after,
header.sticky .hamburger.is-active .hamburger-inner::before {
    background-color: #2879c9 !important;
}

.caret.company-dropdown.show::after,
a.caret.active::after,
li.dropdown.mega-dropdown.caret.has-submenu.show::after {
    content: " " !important;
    width: 11px;
    border-bottom: 2px solid #2879c9 !important;
    top: 20px !important;
}

header.sticky .hamburger.is-active .hamburger-inner {
    background-color: transparent !important;
}

/* Hamburgers */
.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #0C4C75 !important;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
    margin-top: 8px;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: #0C4C75;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
        transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* -------------- Hamnurger Section css start here --------------- */
/*
   .main-header {
      background: #fff!important;
      box-shadow: none;
      -khtml-box-shadow: none;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      -ms-box-shadow: none;
      -o-box-shadow: none;
      position: absolute;
      width: 100%
   } */
.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown:hover>.dropdown-menu1 {
    display: block !important;
}

.dropdown:hover>.dropdown-menu2 {
    display: block !important;
}

.dropdown:hover>.dropdown-menu3 {
    display: block !important;
}

nav.navbar .hamburger {
    padding: 0 !important;
}

.hamburger.is-active:hover,
.hamburger:hover {
    opacity: 1;
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.menu-open .navbar-brand img,
header.sticky .navbar-brand img {
    filter: none;
}

header {
    position: relative;
    padding: 0;
    z-index: 1000;

    /* -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1); */
}




.Bg-navbar-blue {
    background: #EBF0F6 !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding-top: 20px;
    /* padding-bottom: 20px; */

}
.Bg-navbar-blue-new-sec{
    background: #ffffff !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding-top: 20px;
    padding-bottom: 20px;

}

.staticBanner {
    padding-top: calc(100px + (140 - 100) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320))) !important;
}

.commonSectionnew{
    padding-top: calc(40px + (90 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(40px + (90 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-left: 0;
    padding-right: 0;

}


@media (max-width:1199px) and (min-width:768px) {
    .navbar-menu-list .collapsed-menu-list {
        margin-top: 40px;
    }
}

@media (max-width:767px) and (min-width:200px) {
    .navbar-menu-list .collapsed-menu-list {
        margin-top: 40px;
    }
}

/* @media (max-width:767px) and (min-width:200px) {
    .collapsed-logo {
        margin-top: 30px;
    }
} */





/* navbar collapsed blog image */

.navbar-blog-img .navbar-blog-heading {
    color: var(--Primary-1, #0C4C75);
    font-family: Manrope !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 27px */
}

.navbar-blog-img p {
    color: var(--Grey-1, #4F4F4F);
    font-family: Manrope !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}



/* .collapsed-downscroller {
    margin-top: 40px !important;
} */


.banner-section .get-free-quote button:hover {
    box-shadow: 0 4px 14px #b1ddff !important;
}




.main-container {
    border-radius: 24px;
    background: var(--white, #FFF);
    box-shadow: 0px 0px 40px 1px #FFF;
}


.navbar-border {
    border: 1px solid var(--Stroke-1, #E0E0E0);

}

#navbar-border {
    padding-top: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
    /* padding-right: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320))) !important; */
    padding-bottom: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
    /* padding-left: calc(5px + (15 - 5) * ((100vw - 320px) / (1920 - 320))) !important; */

}

header a:hover {
    text-decoration: none;
}

.header nav.navbar ul li a.dropdown-item {
    line-height: 45px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    background-color: #0C4C75 !important;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0 !important;
}

header nav.navbar ul li a {
    font-size: 16px;
    line-height: 70px;
    color: var(--Grey-1, #4F4F4F);
    font-family: Manrope !important;
    font-weight: 400;

    /* text-transform: uppercase; */
    /* letter-spacing: .2px; */
    /* white-space: nowrap; */
    cursor: pointer !important;
    /* display: inline-block!important; */
}

header nav.navbar ul li a.btn {
    line-height: normal;
    padding: 10px 18px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 400;
    background: #b0c21f;
    position: relative;
    border-radius: 0;
}

header nav.navbar ul li a.btn img {
    max-width: 40px;
}

header .btn-theme {
    line-height: normal !important;
    text-transform: capitalize !important;
    font-size: 15px;
    background-color: #fff;
    color: #000 !important;
}

.navbar-toggler-icon {
    /* background-image: url(../img/menu.png); */
    background-size: 30px;
}

/* a.service-drop::before,
   header nav.navbar ul li a.nav-item:before {
      position: absolute;
      left: 50%;
      bottom: 10px;
      height: 2px;
      width: 0%;
      content: "";
      -webkit-transform: scale(-1);
      -moz-transform: scale(-1);
      -ms-transform: scale(-1);
      -o-transform: scale(-1);
      transform: scale(-1);
      background: #2878c9;
      -webkit-transition: all .3s ease;
      -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
   } */
header nav.navbar ul li:hover a.nav-item:before {
    width: 100%;
    left: 0;
}

/* .mega-dropdown a:before {
    display: none;
} */

.mega-dropdown a.dropdown-toggle:before {
    display: inline-block;
}

li.mega-dropdown:hover a.dropdown-toggle:before {
    display: inline-block;
    width: 70px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

header .dropdown .dropdown-menu a::before,
header nav.navbar ul li a.btn::before {
    display: none;
}



header nav.navbar ul li a.btn i {
    font-weight: 700;
    margin-right: 5px;
}

header nav.navbar ul li {
    position: relative;
    margin-left: 25px;

}

header nav.navbar ul li a {
    color: var(--Grey-1, #4F4F4F);
}

.menu-show .navbar-nav li a {
    color: #444 !important;
}

/* .company-dropdown .dropdown-menu {
    font-size: 15px !important;
} */

header .dropdown .dropdown-menu {
    min-width: 270px;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    border-top: 0;
    /* margin: 5px auto !important; */
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #fff;
}

/* 
.bdr-bottom {
    border-bottom: 1px solid #e5e5e5;
} */

header .dropdown-toggle::after {
    display: none;
}

header .dropdown .dropdown-menu a {
    color: #444;
    text-transform: capitalize;
    font-size: 16px;
    font-family: Raleway, sans-serif;
    padding: 4px 15px 4px;
    line-height: 45px;
    /* font-weight: 500; */
    width: 100%;
    /* display: initial */
    margin-top: 15px;
    margin-bottom: 15px;
}



header .dropdown .dropdown-menu h5:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;

    background-color: #edeff3;
    /* background: #444; */
    left: 6px;
    bottom: 0;
    margin: 0 auto;
}

header .dropdown .dropdown-menu a:hover {
    color: #b0c21f;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #fff;
}

header .dropdown .dropdown-menu a::first-child {
    border-top: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a.caret::after {
    position: absolute;
    right: 6px;
    top: 0;
    content: "+";
    color: #444;
    font-family: FontAwesome;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
    font-weight: 600;
    font-size: 20px;
    display: inline-block !important;
    border: 0;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

.hamburger--spring.is-active .hamburger-inner {
    z-index: 1;
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    /* -webkit-box-shadow: 0 0 10px 0 rgba(242, 229, 229, 0.5); */
    /* box-shadow: 0 0 10px 0 rgba(242, 229, 229, 0.5); */
    /* background-color: #fff !important; */
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        opacity: 0.9;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0.9;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header.sticky nav.navbar {
    padding: 2px !important;
    /* box-shadow: rgb(0 0 0 / 10%) -10px 10px 10px -10px; */
}

@media (max-width:577px) {
    header.sticky nav.navbar {
        padding: 0 15px !important;
        /* box-shadow: rgb(0 0 0 / 10%) -10px 10px 10px -10px; */
    }


}

header.sticky nav.navbar ul li a {
    color: #4F4F4F !important;
    font-size: 18px;
}



/* header.sticky .navbar-toggler-icon {
      background-image: url(../img/bb.png)
   } */
header.sticky nav.navbar ul li a.btn-theme {
    background-color: #0C4C75;
    color: #fff !important;
}

header.sticky nav.navbar ul li a.btn-theme:hover {
    background-color: #444;
}

.navbar .mega-dropdown {
    position: static !important;
    padding: 0px 15px 0px;
}

.navbar .mega {
    position: static !important;
    padding: 0px 15px 0px;
}

.mega-menu {
    /* min-width: 90%!important; */
    margin: auto;
    width: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    top: 75px;
    /* height: 80vh */
}

.column {
    width: 1280px;
    margin: 0 auto;
}

.mega-menu {
    min-width: 50% !important;
    margin: auto;
    width: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    top: 75 px;
}

.navHead {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(107, 107, 107);
    margin-top: 10px;
}

/* .card-nav-title a {
    font-size: 1rem !important;
    margin-bottom: 1rem;
    font-weight: 700 !important;
}

.card-nav-title a span {
    text-transform: lowercase !important;
}

.card-nav-title a:hover {
    color: #b0c21f !important;
} */

.nav-dropdown-list>li {
    font-size: 1.4rem;
    line-height: 2.2rem;
}

/* .mega-menu li {
      vertical-align: top;
      width: 24%;
      padding-left: 10px;
      padding-right: 10px;
      display: inline-block;
      margin-left: 0!important
   } */
.mega-menu li {
    vertical-align: top;
    width: 100%;
    /* padding-left: 10px; */
    padding-right: 10px;
    display: inline-block;
    margin-left: 0 !important;
}

.mega-menu li ul li {
    width: 100%;
}

.dropdown-menu a,
.mega-menu a {
    font-size: 15px !important;
    border-top: 0 !important;
    line-height: 40px !important;
    color: #444 !important;
}


.mega-menu li ul li {
    position: relative;
}

/* .mega-menu li ul li::before {
      content: "";
      position: absolute;
      height: 8px;
      width: 8px;
      border-radius: 50%;
      background: #b0cb1f;
      left: 0;
      top: 12px;
   } */
.mega-menu li ul li:first-child {
    border-top: 0;
}

.mega-menu li h5 a {
    font-size: 15 !important;
    text-transform: capitalize !important;
    font-weight: 600;
    font-family: Raleway, sans-serif;
    font-weight: 600 !important;
    color: #444444 !important;
}

header.sticky .hamburger-inner,
header.sticky .hamburger-inner::after,
header.sticky .hamburger-inner::before,
header.sticky .hamburger.is-active .hamburger-inner,
header.sticky .hamburger.is-active .hamburger-inner::after,
header.sticky .hamburger.is-active .hamburger-inner::before {
    background-color: #0C4C75 !important;
}

.caret.company-dropdown.show::after,
a.caret.active::after,
li.dropdown.mega-dropdown.caret.has-submenu.show::after {
    content: " " !important;
    width: 11px;
    border-bottom: 2px solid #444 !important;
    top: 16px !important;
}

header.sticky .hamburger.is-active .hamburger-inner {
    background-color: transparent !important;
}

.sub-menu {
    margin-bottom: 0.5rem;
    margin-top: 0.8rem;
}

.sub-menu a {
    line-height: 25px !important;
    padding: 0 0 0 5px !important;
}

.sub-menus {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.myheader .getquote-btn a {
    background: var(--Primary-1, #0C4C75) !important;
    border: 1.5px solid var(--Primary-1, #0C4C75);

    color: #fff !important;
    font-size: 12px !important;
    /* margin: 5px; */
    padding: 8px 12px;
    font-size: 14px;

    border-radius: 5px;
}

/* .getquote-btn a:hover {
    text-decoration: none;
    
    cursor: pointer;
    transition: all 0.5s ease;
    
    border-color: #2979c9;
} */

@media (min-width: 1200px) {

    /* services drop-down */
    .navbar-expand-xl .navbar-nav .services-dropdown-menu {
        background: #ffffff00;
        right: 0;
        left: 15px;
        /* width: 652px; */
        /* border-top: 5px solid #ffffff00;
        border-radius: 0 0 30px 30px; */
        border-color: #ffff0000;
        padding: 21px 14px;
        position: fixed;
    }

    .navbar-expand-xl .navbar-nav .services-dropdown-menu::before {
        content: "";
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        width: 20px;
        height: 13px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .services-mega-menu {
        min-width: 50% !important;
        margin: auto;
        width: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        top: 80px;
    }

    /* industries drop-down */
    .navbar-expand-xl .navbar-nav .industries-dropdown-menu {
        background: #ffffff00;
        /* box-shadow: 0px 0px 40px 1px #FFF; */
        right: 0;
        left: 15px;
        /* width: 652px; */
        /* border-top: 5px solid #fff;
        border-radius: 0 0 30px 30px; */
        border-color: #ffffff00;
        padding: 21px 14px;
        /* height: 200px !important; */
        position: fixed;

    }


    .navbar-expand-xl .navbar-nav .industries-dropdown-menu::before {
        content: "";
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        width: 20px;
        height: 13px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        right: 0;
        left: 0px;
        margin: 0 auto;
    }

    .industries-mega-menu {
        min-width: 78% !important;
        margin: auto;
        width: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        top: 75 px;
    }

    /* technologies drop-down */
    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu {
        background: #ffffff00;
        right: 0;
        left: 15px;
        /* width: 652px; */
        /* border-top: 5px solid #fff;
        box-shadow: 0px 0px 40px 1px #FFF;
         */
        border-color: rgba(255, 255, 255, 0);
        padding: 21px 14px;
        border-radius: 0 0 30px 30px;
        position: fixed;
    }

    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu::before {
        content: "";
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        width: 20px;
        height: 13px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        right: 0;
        left: 0px;
        margin: 0 auto;
    }

    .technologies-mega-menu {
        min-width: 70% !important;
        margin: auto;
        width: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        top: 75 px;
    }

    /* ourwork drop-down */
    .navbar-expand-xl .navbar-nav .ourwork-dropdown-menu {
        background: #ffffff;
        right: 0;
        left: 525px;
        /* width: 652px; */
        border-top: 5px solid #fff;
        border-radius: 0 0 30px 30px;
        padding: 21px 14px;
    }

    .navbar-expand-xl .navbar-nav .ourwork-dropdown-menu::before {
        content: "";
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        width: 20px;
        height: 13px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        right: 0;
        left: 150px;
        margin: 0 auto;
    }

    .ourwork-mega-menu {
        min-width: 50% !important;
        margin: auto;
        width: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        top: 75 px;
    }

    /* company drop-down */
    /* .navbar-expand-xl .navbar-nav .company-dropdown-menu {
        background: #ffffff;
        right: 0;
        left: 625px;
        border-top: 5px solid #fff;
        border-radius: 0 0 30px 30px;
        padding: 21px 14px;
    }

    .navbar-expand-xl .navbar-nav .company-dropdown-menu::before {
        content: "";
        clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
        width: 20px;
        height: 13px;
        background-color: #fff;
        position: absolute;
        top: -5px;
        right: 0;
        left: 300px;
        margin: 0 auto;
    }

    .company-mega-menu {
        min-width: 50% !important;
        margin: auto;
        width: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        top: 75 px;
    } */

    /* navbar scroll contact button */
    .contact-button {
        display: flex;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        background: #1F578F;
        color: #FFF !important;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Manrope;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;

        cursor: pointer;

    }

    .Bookdemobtn {
        display: flex;
        padding: 12px 24px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        border-radius: 12px;
        border: 1.5px solid #1F578F;
        color: #1F578F;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: Manrope;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;

    }

    .Bookdemobtn:hover {
        box-shadow: 0 4px 14px #b1ddff !important;
    }

    .contact-button:hover {
        box-shadow: 0 4px 14px #b1ddff !important;
    }


    .navbar .mega-dropdown {
        position: static !important;
        padding: 0px 15px 0px;
        border-bottom: 3px solid #fff;
    }

    .navbar .mega {
        position: static !important;
        padding: 0px 15px 0px;
        border-bottom: 3px solid #fff;
    }

    /* .navbar .mega-dropdown:hover {
        border-bottom: 3px solid #2878c8;
        
    } */



}

.drop-logo {
    position: absolute;
    /* background: #f2f8ff; */
    padding: 0;
    border-radius: 50%;
    width: 34px;
    text-align: center;
    left: 10px;
    /* top: 40px; */
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-list .drop-menu-text {
    text-transform: none;
    color: #666d7a;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    padding-top: 5px;
    line-height: 22px;
    margin-left: 15px;
    font-weight: 500;
}


.nav-dropdown-list .drop-menu-text p {
    font-family: Raleway, sans-serif;
    font-weight: 500;
}

.drop-menu-text p {
    hyphens: none;
}

.nav-dropdown-list .sub-menu-link {
    margin-left: 15px;
}

.nav-dropdown-list li {
    padding: 0px 10px 0px 50px;
}

.nav-dropdown-list li:hover {
    background-color: #eef2f7;
}

.sub-line-height {
    line-height: 25px !important;
    font-weight: 600 !important;
}

.sub-drop-logo {
    /* top: 18px; */
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
}

.hire-button span {
    border-radius: 5px;
    padding: 12px 22px;
}

.sub-nav-dropdown-list {
    margin-left: 70px;
}

/* ============ Header Section CSS END here ================ */
/* ============  Responsive css start here ================ */
@media (min-width: 768px) {}

@media screen and (min-width: 991px) {}

@media only screen and (max-width: 1199.98px) {
    header nav.navbar ul .chevron-down {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    header nav.navbar ul .chevron-down {
        height: 12px;
        margin-left: 0px;
        transition: transform 0.4s ease-in-out;
        display: inline-block;
    }

    header nav.navbar ul :hover .chevron-down {
        transform: rotateX(180deg);
    }
}



/* @media only screen and (min-width: 1299px) and (max-width: 1366px) {
    .navbar-expand-xl .navbar-nav .services-dropdown-menu {
        left: -375px !important;
    }

    .navbar-expand-xl .navbar-nav .industries-dropdown-menu {
        left: -100px !important;
    }

    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu {
        left: 200px !important;
    }

    .navbar-expand-xl .navbar-nav .ourwork-dropdown-menu {
        left: 375px !important;
    }

    .navbar-expand-xl .navbar-nav .company-dropdown-menu {
        left: 475px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .navbar-expand-xl .navbar-nav .services-dropdown-menu {
        left: -50px !important;
    }

    .navbar-expand-xl .navbar-nav .industries-dropdown-menu {
        left: 150px !important;
    }

    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu {
        left: 350px !important;
    }

    .navbar-expand-xl .navbar-nav .ourwork-dropdown-menu {
        left: 475px !important;
    }

    .navbar-expand-xl .navbar-nav .company-dropdown-menu {
        left: 550px !important;
    }

    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu::before {
        left: 50px !important;
    }
} */

/* @media only screen and (min-width: 1300px) {
    header nav.navbar ul li {
      margin-left: 60px;
    }
   } */
/* navbar padding changes */
@media only screen and (min-width: 1200px) and (max-width: 1368px) {
    header nav.navbar ul li {
        margin-left: 0px;
    }

    header nav.navbar ul .nav-item {
        margin-left: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        font-family: Raleway, sans-serif;
    }



    header nav.navbar ul .last-nav-item {
        padding: 20px 15px !important;
        margin-left: 10px !important;
    }
}

@media only screen and (min-width: 1300px) {
    header nav.navbar ul li {
        margin-left: 0px;
    }

    header nav.navbar ul .nav-item {
        margin-left: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }



    header nav.navbar ul .last-nav-item {
        padding: 20px 15px !important;
        margin-left: 10px !important;
    }
}



@media screen and (min-width: 1400px) {}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {}

@media only screen and (min-width: 991px) and (max-width: 1300px) {}

@media only screen and (min-width: 991px) and (max-width: 1200px) {}

@media (max-width: 1199.98px) {
    .column {
        width: 100%;
    }

    /* .card-nav-title a {
        margin-bottom: 0;
    }

    .card-nav-title a {
        margin-bottom: 0;
    } */

    .sub-menu {
        margin-bottom: 0;
    }

    .drop-logo,
    .sub-drop-logo,
    .navbar-expand-xl .navbar-nav .services-dropdown-menu::before,
    .navbar-expand-xl .navbar-nav .industries-dropdown-menu::before,
    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu::before,

    .nav-dropdown-list .drop-menu-text {
        display: none;
    }

    .navbar-expand-xl .navbar-nav .industries-dropdown-menu,
    .navbar-expand-xl .navbar-nav .services-dropdown-menu,
    .navbar-expand-xl .navbar-nav .technologies-dropdown-menu {
        border-top: none;
    }

    .nav-dropdown-list li {
        padding: 0;
    }

    .sub-menu {
        margin-top: 0;
    }

    .nav-dropdown-list .sub-menu-link {
        margin-left: 0px;
        /* font-weight: 700; */
    }

    .mega-dropdown {
        font-weight: 700;
    }

    .nav-dropdown-list .sub-points {
        font-weight: 500 !important;
    }

    header .dropdown .dropdown-menu a {
        margin-top: 0px;
    }
}

/* @media (min-width: 767.98px) {
    .career-list {
      display: none;
    }
   } */

@media screen and (min-width: 576px) {}

@media screen and (min-width: 576px) and (max-width: 768px) {}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1368px) {}

@media screen and (max-width: 1279px) {}

@media screen and (max-width: 1199.98px) {
    header nav.navbar ul li a.btn-green {
        line-height: 1.5 !important;
        display: inline-block !important;
    }

    .mega-menu li {
        width: 100%;
    }

    /* header nav.navbar ul li a::before,
    li.mega-dropdown:hover a.dropdown-toggle:before {
        display: none;
    } */

    header nav.navbar ul li a {
        font-size: 15px;
    }

    .sub-nav-dropdown-list {
        margin-left: 0.5rem;
    }

    .sub-line-height {
        font-weight: 500 !important;
    }

    #navbarNav.navbar-collapse {
        background-color: #fff;
        position: fixed !important;
        min-height: 2vh;
        top: 0;
        padding: 0 20px;
        height: 100%;
        left: -100%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        display: block;
    }

    #navbarNav.navbar-collapse.menu-show {
        left: 0;
        opacity: 1;
        visibility: visible;
    }




    header .caret {
        position: relative;
    }

    header .caret::after {
        position: absolute;
        content: "+";
        top: 12px;
        right: 2px;
        color: #022a5e;
        font-family: FontAwesome;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        z-index: 2;
        font-weight: 700;
        font-size: 15px;
        pointer-events: none;
    }


    header .caret1::after {
        display: none;
    }

    /* new css for healthcare button and dropdown */
    header .healthcare-button::after {
        right: 15px !important;
    }

    header nav.navbar ul li {
        margin-left: 0;
    }

    .dropdown:hover>.dropdown-menu {
        display: none;
    }

    .menu-show .navbar-nav li a.dropdown-toggle.active+div.dropdown-menu {
        display: block;
    }

    .company-dropdown.show .dropdown-menu,
    .mega-menu li ul li {
        display: block;
    }

    .dropdown .dropdown-toggle:active {
        pointer-events: auto !important;
    }

    header nav.navbar ul li a {
        display: block !important;
    }

    .navbar .mega-dropdown {
        position: relative !important;
    }

    header .dropdown .dropdown-menu {
        min-width: 100% !important;
        border: 0;
        height: auto;
    }

    /* .company-dropdown a,
    .sub-menu a {
        line-height: 35px !important;
        font-size: 14px !important;
    } */

    header nav.navbar ul li a {
        line-height: 50px;
    }

    .dropdown-menu.border-top {
        border-top: 0 !important;
    }

    .page-ul li {
        width: 100%;
    }

    /* .company-dropdown .dropdown-item {
        position: relative;
    }

    .company-dropdown .dropdown-item::after {
        position: absolute;
        top: 3px;
        left: 0;
        font-size: 7px;
        color: #b0c21f;
        font-family: FontAwesome;
        content: "\f111";
        font-weight: 600;
    } */

    .mega-menu li ul li::before {
        top: 12px;
    }

    header .dropdown .dropdown-menu a:last-child {
        margin-bottom: 0;
    }
}

@media (max-width:1200px) {
    .remove-hero-btn {
        display: none !important;
    }

}



@media screen and (max-width: 1024px) {}

@media screen and (max-width: 991px) {
    .menu-open {
        overflow-y: hidden;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 400px) {}

/* ============  Responsive css start END ================ */



/* modal section Start CSS Start Here */
.modal-body {
    position: relative;
    padding: 0px;
}

.modal .modal-content {
    border-radius: 0px;
    border: 4px solid #2879c9;
    background-clip: initial;
}

.modal .modal-content .close {
    margin: 0;
    padding: 6px 8px;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    background: #2879c9;
    opacity: 1;
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
}

.close:not(:disabled):not(.disabled):hover {
    opacity: 1 !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }

    .modal-content {
        border-radius: 16px !important;
    }




    /* navbar menu list style */



    /* Navbar dropdown navigation */
    /* .nav-arrow {
        display: inline-block;
        width: 7px;
        height: 7px;
        margin-left: 6px;
        margin-bottom: 2px;
        border-right: 2px solid #444;
        border-bottom: 2px solid #444;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
    }

    .dropdown:hover .nav-arrow {
        transform: rotate(222.5deg);
        transition: .5s;
        -webkit-transform: rotate(222.5deg);
        -webkit-transition: .5s;
        -moz-transform: rotate(222.5deg);
        -moz-transition: .5s;
    } */
}

/* 
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
} */

/* .icon-play {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2879c9;
    z-index: 10;
    top: 50%;
    left: 50%;
    margin-top: -36px;
    margin-left: -36px;
    transition: 0.4s cubic-bezier(0, 0, 0.2, 1);
    z-index: 2;
}

.icon-play:before {
    display: none;
}

.icon-play:after {
    display: block;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    z-index: 10;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -6px;
} */

@media (max-width: 1199.98px) {
    .modal .modal-lg {
        max-width: 800px;
        margin-top: 30px;
    }
}

/* modal section Start CSS Start Here */
/* comman button css start here */
.link-button {
    background: 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0px;
    border: 2px solid #fff;
    line-height: 26px;
    line-height: 26px;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    margin-top: 30px;
    margin-bottom: 30px;
}

.link-button:hover {
    background: #fff;
    color: #2879c9 !important;
}

.yel-button:hover {
    text-decoration: none;
    background: #1F578F;
    cursor: pointer;
    transition: all 0.5s ease;
    color: #fff !important;
    border-color: #2979c9;
}

.yel-button {
    display: flex;
    padding: 18px 24px;
    justify-content: center;
    width: 240px;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    border: 1.5px solid var(--Primary-1, #0C4C75);
    color: var(--Primary-1, #0C4C75);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.5s ease;
}



/* .banner_btn {
    margin-top: 10px;
}

.btn-circle {
    background-color: blue;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    outline: 0px !important;
}

.banner_btn_play {
    width: 56px;
    height: 56px;
    display: inline-block;
    text-align: center;
    line-height: 55px;
    color: #fff;
    background-color: #2879c9;
    font-size: 18px;
    box-shadow: inset 0px 0px 0px 10px #2879c9;
}

.banner_btn_play .icon-play-button:before {
    content: "\e703";
}

.banner_btn_play .icon-play-button :hover {
    color: #ffffff !important;
}

.banner_btn a+span {
    margin-left: 25px;
}

.btn-info-text {
    color: #444;
    padding: 15px 0;
    background-size: 200% auto;
    border: none;
}

@media (max-width: 991.98px) {
    .banner_btn {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .btn-info-text {
        font-size: 14px;
    }

    .banner_btn a+span {
        margin-left: 15px;
    }
} */

/* comman button css End here */




/* --------------------------Go to Top ----------------------- */

#gotoTop {
    display: inline-block;
    background-color: #4d5156;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 160px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: #ffffff7d 1px 1px 5px 1px;
}

#gotoTop::before {
    font-size: 20px;
    line-height: 39px;
    color: #fff;
}

#gotoTop:hover {
    cursor: pointer;
    background-color: #0C4C75 !important;
}

#gotoTop:active {
    background-color: #2879c9 !important;
}

#gotoTop.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 500px) {
    #button {
        margin: 30px;
    }
}


/* navbar element font weight issue start fixing */


/* .navbar .mega-dropdown:hover .dropdown-toggle {
    color: #0C4C75 !important;
    font-weight: 600;
} */




@media (min-width:1200px) {
    .navbar .mega-dropdown:hover .dropdown-toggle {
        -webkit-text-stroke: 0.4px #0C4C75;
        color: #0C4C75 !important;
    }


    .navbar .non-drop:hover a {
        -webkit-text-stroke: 0.4px #0C4C75 !important;
        color: #0C4C75 !important;
    }

}




/* navbar element font weight issue end fixing */



@media (max-width:1199.98px) {
    .navbar .mega-dropdown .dropdown-toggle {
        color: #4F4F4F !important;
        font-weight: 600 !important;
    }

}

@media (max-width:1199.98px) {
    .non-drop a {
        color: #4F4F4F !important;
        font-weight: 600 !important;

    }

}




header nav.navbar ul .chevron-down {
    color: #0C4C75;
    /* font-weight: 600; */
}

.navbar .contact-cta:hover {
    border-bottom: 3px solid #fff;
}



/* Sticky Button CSS Start Here */
@media (min-width: 599px) {
    .sticky-contact-button {
        display: none;
    }
}

@media (max-width: 1200px) {
    .sticky-contact-button {
        position: fixed;
        bottom: 0px;
        padding: 10px 15px;
        color: #fff;
        border: none;
        cursor: pointer;
        -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, .3), 0 1px 4px rgba(60, 64, 67, .25);
        box-shadow: 0 1px 2px rgba(60, 64, 67, .3), 0 1px 4px rgba(60, 64, 67, .25);
        display: unset;
        width: 100%;
        z-index: 5;
        -webkit-transition: translate .35s ease;
        transition: translate .35s ease;
        background-color: #fff;
        justify-content: center;
        display: flex;
        gap: 12px;
    }

    .sticky-button {
        width: 100% !important;
    }

    .book-a-demo {
        width: 100% !important;
    }

    .sticky-button button {
        /* padding-top: 12px;
        padding-bottom: 12x; */
        padding-right: 24px;
        padding-left: 24px;
        background-color: #1F578F;
        color: #fff;
        border: none;
        width: 100% !important;
        border-radius: 8px;
        border: 1px solid var(--glue-blue-600);
        height: 48px;
        min-width: 96px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;

    }

    @media (max-width:440px) {
        .sticky-button button {

            width: calc(140px + (710 - 140)*((120vw - 320px) /(1920 - 320))) !important;

        }

    }


    .book-a-demo a {
        display: flex;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 20px;
        padding-left: 20px;

        justify-content: center;
        align-items: center;
        /* gap: 8px; */
        align-self: stretch;

        border-radius: 8px;
        border: 1.5px solid #1F578F;
        background: var(--Neutral-White, #FFF);

        color: #1F578F;
        font-family: Manrope !important;
        font-size: 16px;
        height: 48px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 27px */
        width: 100% !important;
    }


    .book-a-demo1 a {
        display: flex;
        padding: 10px;

        justify-content: center;
        align-items: center;
        /* gap: 8px; */
        align-self: stretch;

        border-radius: 8px;
        border: 1.5px solid #0C4C75;
        background: var(--Neutral-White, #FFF);

        color: var(--Text-Color-Text--P1, #0C4C75);
        font-family: Manrope !important;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 27px */
        width: 200px !important;
    }

    @media (min-width: 575.98px) {
        .book-a-demo1 {
            display: flex;
        }
    }

    @media (max-width: 576.98px) {
        .book-a-demo1 {
            display: none;
        }
    }

    /* @media (max-width: 575.98px) {
        .book-a-demo {
            display: none;
        }
    } */

    .sticky-button:hover {
        background-color: #267E5E;
    }
}



@media (max-width: 424.98px) {
    .logo-desktop {
        display: none;
    }

    /* .navbar-brand {
        padding-bottom: 0px !important;
    } */
}

@media (min-width: 425px) {
    .logo-mobile {
        display: none;
    }
}

/* Sticky Button CSS Ends Here */



@media (max-width:1200px) {
    .navbar-logo-display {

        height: 55px;
    }

}

@media (max-width:299px) {
    .navbar-logo-display {

        height: 25px;
    }

}




@media (max-width:420px) {
    .navbar-logo-display1 {

        display: block !important;
    }

}

/* .collapsed-logo {
    height: 32px !important;
} */


@media (max-width:1199.98px) {
    #navbar-border {
        height: 70px;
    }

}

@media (max-width:420px) {
    .navbar-hide-logo {

        display: none;
    }

}

@media (max-width:448px) {
    .navbar-logo-display {

        height: calc(49px + (52 - 49) * ((100vw - 320px) / (1920 - 320))) !important;
    }

}



/* common css start  */



/* FAQ page css */
.faq-sizing {
    padding: 0;
}

.FAQ-Section {
    padding-top: calc(40px + (80 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(40px + (80 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-left: 0;
    padding-right: 0;

}

.FAQ-Section .FAQ-Head-BG {

    display: flex;

    padding-top: calc(40px + (100 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(40px + (100 - 40) * ((100vw - 320px) / (1920 - 320))) !important;
    /* padding-left: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320))) !important;

    padding-right: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320))) !important; */


    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    background: linear-gradient(180deg, #0C4C75 38.5%, #FFF 94.35%);
}

.FAQ-Section .FAQ-Head-BG .faq-heading-size {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

}

.FAQ-Section .FAQ-Head-BG .faq-heading-size h3 {
    display: flex;
    flex-direction: row;
    color: var(--white, #FFF);
    text-align: center;
    font-family: Manrope !important;
    font-size: calc(28px + (80 - 28) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 120px */
    letter-spacing: -3.2px;
}

.FAQ-Section .FAQ-Head-BG .faq-heading-size h3 span {
    text-align: center;
    text-shadow: 0px 0px 7px rgba(164, 207, 234, 0.40);
    font-family: Manrope !important;
    font-size: calc(28px + (80 - 28) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 120px */
    letter-spacing: -3.2px;
    background: linear-gradient(98deg, #C8E3F5 4.77%, #30A1E8 43.3%, #C8E3F5 67.39%, #30A1E8 94.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.FAQ-Section .FAQ-Head-BG .faq-heading-size p {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Manrope !important;
    font-size: calc(12px + (28 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 42px */

}

.FAQ-Section .FAQ-Head-BG .faq-heading-size p span {
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: calc(14px + (32 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}


.FAQ-Section .FAQ-Head-BG .FAQ-Head-Btn button {

    display: flex;
    width: 265px;
    padding: 18px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    background: var(--Primary-1, #0C4C75);
    box-shadow: 0px 0px 20px 0px #FFF;
    color: var(--white, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Manrope !important;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: #0C4C75;
}

.FAQ-Section .FAQ-Head-BG .FAQ-Head-Btn button:hover {

    box-shadow: 0 4px 14px #ffffff !important;

}

.FAQ-Section .FAQ-Head-Btn button {
    text-decoration: none;
    color: #FFF;
}

.FAQ-Section .FAQ-Secound-Section {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    align-self: stretch;
    padding-bottom: 80px;

}


.FAQ-Section .FAQ-Secound-Section .accordion-section {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 152px;
}


.FAQ-Section .FAQ-Secound-Section .FAQ-Main-Head-Section {

    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    align-self: stretch;


}

.FAQ-Section .FAQ-Secound-Section .FAQ-Main-Head-Section .FAQ-heading h2 {
    color: #175089;

    /* Section Heading */
    font-family: Manrope !important;
    font-size: calc(28px + (48 - 28) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    /* 96px */


}

.FAQ-Section .FAQ-Secound-Section .FAQ-Main-Head-Section .FAQ-heading h2 span {
    color: #175089;

    /* Section Heading */
    font-family: Manrope !important;
    font-size: calc(28px + (48 - 28) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
    /* 96px */


}


.FAQ-Section .FAQ-Secound-Section .FAQ-Main-Head-Section .FAQ-heading p {
    color: var(--Text-Black-Text--P2, #666);
    font-family: Manrope;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 24px */


}

.FAQ-Section .FAQ-Secound-Section .FAQ-Accrodion-Section {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;

}

@media (min-width:992px) {
    .FAQ-Section .FAQ-Secound-Section .faq-cont-size {
        padding: 0 160px;


        padding-top: 0;
        padding-bottom: 0;
        
    }

}



.FAQ-Section .FAQ-Secound-Section .FAQ-Accrodion-Section .accordion-section-items {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    /* border: 1px solid var(--Stroke-1, #E0E0E0);
    background: var(--Card-bg, #F0F0F0); */
    /* width: 100%; */
}



.accordion-flush>.accordion-item>.accordion-header .accordion-button,
.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    background: #F7FBFD;
}

/* .accordion-flush>.accordion-item:last-child {
    background-color: #F0F0F0 !important;

} */


.accordion-flush>.accordion-item {
    background: #F7FBFD;

}

.accordion-flush>.accordion-item:first-child {
    border-radius: 8px;
    border: 1px solid var(--Stroke-1, #e0e0e000) !important;
    background: var(--Card-bg, #F7FBFD);
}

.accordion-button:not(.collapsed) {
    background: var(--Card-bg, #F7FBFD) !important;

}

.accordion-item:not(:first-of-type) {
    border-radius: 8px;
    border: 1px solid var(--Stroke-1, #e0e0e000) !important;
    background: var(--Card-bg, #F7FBFD);
}


.FAQ-Section .FAQ-Secound-Section .FAQ-Accrodion-Section .accordion-body {
    color: #2A2A2A;
    padding-top: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-right: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-bottom: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    padding-left: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320))) !important;

}


.FAQ-Section .FAQ-Secound-Section .FAQ-Accrodion-Section .accordion-section-items-div h3 {
    color: #393F44;

    font-family: Manrope !important;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    /* 30px */
    flex: 1 0 0;
    padding: 0;
}


.FAQ-Section .FAQ-Secound-Section .Faq-ul {

    display: flex;
    flex-direction: column;
    gap: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) !important;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320))) !important;


}

.accordion-body p {
    color: #2A2A2A;
    font-family: Manrope;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    line-height: 28px;
}

/* question color changes on expand  */

.accordion-button:not(.collapsed) {
    color: #175089 !important;
    transition: all 0.2s ease;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;

    font-weight: 600 !important;
}



.accordion-button.collapsed {
    color: var(--Text-Black-Text--P1, #393F44) !important;
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
    transition: all 0.1s ease;

    font-weight: 400 !important;
}



/* question color changes on expand  */



/* FAQ page css end */



/* Footer Section Start  */


.Footer-Section {
    display: flex;
    width: 100%;
    padding: 40px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-center;
    gap: calc(24px + (36 - 24) * ((100vw - 320px) / (1920 - 320))) !important;
    background: linear-gradient(90deg, #1F578F 0%, #091929 100%);
}

.Footer-Section1 {
    display: flex;

    flex-direction: column;
    justify-content: center !important;
    align-items: flex-center;
    gap: calc(24px + (36 - 24) * ((100vw - 320px) / (1920 - 320))) !important;
}

.Footer-Section .FAQ-Foot-Content1 p {
    align-self: stretch;
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: calc(18px + (32 - 18) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    /* 38.4px */
}

.footer-gap {
    margin-bottom: calc(21px + (32 - 21) * ((100vw - 320px) / (1920 - 320))) !important;

}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.Footer-Section .FAQ-Footer-Company-Logo {
    display: flex;
    /* width: 382px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

}


.Footer-Section .FAQ-Footer-Company-Logo p {
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    /* 133.333% */
}



.Footer-Section .FAQ-Address-Sec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px !important;
}


.Footer-Section .FAQ-Address-Sec .Footer-Address-USA {
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: 16px !important;

    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    /* 133.333% */
    letter-spacing: -0.1px;

}

.hover-copyright {
    text-decoration: none;
    color: white !important;
}

.hover-copyright :hover {
    text-decoration: underline;
    color: white !important;
}

.Footer-Section .FAQ-Address-Sec .Footer-Address-USA-line {

    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    /* 133.333% */
    letter-spacing: -0.1px;
}


.Footer-Section .cell-email-sec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px !important;
}

.Footer-Section .cell-email-sec .Footer-Cell-Number {
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: 15px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: -0.1px;

}

.Footer-Section .cell-email-sec .Footer-Email {
    color: var(--white, #FFF);
    font-family: Manrope !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    /* 133.333% */
    letter-spacing: -0.1px;

}

.Footer-Section .Footer-Copyright p {
    color: var(--white, #FFF);

    /* Text L/Regular */
    font-family: Manrope !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    /* line-height: 1.2; */
    /* 150% */
    letter-spacing: -0.1px;
}


.Footer-Section .Footer-Social-Media-Icon {

    gap: 32px;
}

.Footer-Section .Footer-Social-Media-Icon img:hover {

    filter: drop-shadow(0 7px 18px #bcf2fc);


}

.privacyclass a {

    color: #ffff !important;
    font-size: 16px !important;

}

.privacyclass {
    /* display: flex;
    justify-content: center; */
    color: #ffff !important;
    font-size: 16px !important;
}



@media (max-width:767px) {
    .social-media-class {
        display: flex;
        flex: auto;
        gap: 16px;

    }


}

@media (min-width:992px) and (max-width:1200px) {
    .Footer-Section .Footer-Social-Media-Icon {
        width: max-content;

    }


}
.hover-copyright :hover{

    text-decoration: underline !important;
    color: #ffff;
}



/* Footer Section End  */



/* Page Not Found css start */

.pageNotfound {
    padding-top: calc(120px + (120 - 80)*((120vw - 320px) /(1920 - 320))) !important;
    padding-bottom: calc(40px + (80 - 40)*((100vw - 320px) /(1920 - 320)));
}

/* Page Not Found css end */

.modal-backdrop {
    z-index: 10000 !important;
}

.modal-content {
    margin: 2px auto;
    z-index: 1000 !important;
}





/* Speciality section css start */
:root {

    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}



.speciality-section {
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: 35px;
    width: 100%;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: #FFFF;

    padding-top: calc(60px + (120 - 60) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: calc(60px + (120 - 60) * ((100vw - 320px) / (1920 - 320)));
    padding-right: 0;
    padding-left: 0;
}


.speciality-section .speciality-section-headings h2 {

    color: #1F578F;
    font-family: Manrope;
    font-size: calc(22px + (42 - 22) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 50.4px */

}

.speciality-section .speciality-section-headings p {
    color: var(--Text-Black-Text--P2, #666);
    font-family: Manrope;
    font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320))) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 24px */

}


.speciality-image-heading {
    display: flex;
    padding: 24px 82px;
    padding-top: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320)));
    padding-right: calc(42px + (62 - 42) * ((100vw - 320px) / (1920 - 320)));
    padding-left: calc(42px + (62 - 42) * ((100vw - 320px) / (1920 - 320)));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.speciality-image-heading p {
    color: #666;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);

}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    min-width: 100%;
    animation: scroll-x 150s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}

/* Element styles */
.marquee svg {
    display: grid;
    place-items: center;
    width: calc(150px + (200 - 150) * ((100vw - 320px) / (1920 - 320)));
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding-top: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-right: calc(12px + (36 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-left: calc(12px + (36 - 12) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0.5rem;
}

.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
    margin: auto;
    max-width: 100vw;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

/* Toggle direction button */
.toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--color-bg-accent);
    z-index: 1;
}

.toggle:focus-visible {
    box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-50%);
    animation: fade 400ms 4s ease-out forwards;
    user-select: none;
}

.toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0)5%,
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)95%);
}




/* Speciality section css end */

@media (min-width:1430px) {
    #navbar-border {
    padding-top: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
    /* padding-right: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320))) !important; */
    padding-bottom: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
    /* padding-left: calc(5px + (15 - 5) * ((100vw - 320px) / (1920 - 320))) !important; */
    width: 100% !important;
    max-width: 1412px !important;
}
}

 @media (max-width:767.98px) {
    .diary .row {
    display: grid;
    grid-template-columns: 40px 1fr 80px;
    }
  }



  @media (max-width:992.98px) {
    .spec-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    /* overflow-x: scroll; */
    /* width: 501px; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 30px;
    scroll-snap-type: x mandatory;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    scrollbar-width: auto;
    scrollbar-color: #d9d9d9;
    padding: 25px 20px 12px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cecccc #fff;
}

.spec{
  padding: 18px 40px;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  margin: 0 auto 28px;
  max-width: 1080px;
 
  display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        gap: 30px;
        scroll-snap-type: x mandatory;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        scrollbar-width: auto;
        scrollbar-color: #d9d9d9;
        padding: 25px 20px 12px;
        overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cecccc #fff;
}



.tab {
    flex: none;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    color: var(--ink-2);
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid transparent;
    background: transparent;
    font-family: inherit;
    transition: background .15s ease;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cecccc #fff;
}
  }


  @media (max-width:575.98px) {
    .proven .num {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
  }