@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --navy-900: #0b1b36;
  --navy-800: #132648;
  --navy-600: #1c4b86;
  --teal: #172556;
  --sky: #4cb5ed;
  --strip: #3f9ed6;
  --ink: #17232b;
  --muted: #59666d;
  --line: #d6dde1;
  --soft: #f3f6f7;

  --bs-body-font-family: "Raleway", sans-serif;
  --bs-body-color: var(--ink);
}

.title-color {color:#172556;}


/* ---------- Base ---------- */
body {
  font-family: "Raleway", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.01em; }

h1 { font-size: clamp(30px, 5vw, 52px); line-height: 1.12; }
h2 { font-size: clamp(22px, 3vw, 34px); color: var(--teal); }
h3 { font-size: clamp(19px, 2.2vw, 24px); color: var(--teal); }

p { max-width: 74ch; }

a { color: var(--navy-600); }
a:hover { color: var(--sky); }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-600) 100%);
}

.site-header .navbar { padding: 14px 0; }

.navbar-brand img { height: 52px; width: auto; }

.site-header .navbar-nav .nav-link {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 4px; margin-right:2px
}

.site-header .navbar-nav .nav-link:hover {color: #fff;     background: var(--strip);}

.site-header .navbar-nav .nav-link.active {
color: #fff;     background: var(--strip);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .55);
  padding: 6px 10px;
  color: #fff;
}
.navbar-toggler:focus { box-shadow: none; }

/* White hamburger icon */
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-600) 100%);
  color: #fff;
  padding: 60px 0 52px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 88% 30%, rgba(76, 181, 237, .28), transparent 60%),
    radial-gradient(45% 70% at 8% 90%, rgba(76, 181, 237, .14), transparent 65%);
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 2; }

.hero h1 { color: #fff; margin: 14px 0 18px; }
.hero p { color: rgba(255, 255, 255, .88); font-size: 1.06rem; }

.hero--page { padding: 60px 0 52px; }
.hero--page h1 { font-size: clamp(27px, 4vw, 42px); }

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  border-left: 3px solid var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 16px;
}

/* ---------- Buttons ---------- */
.button,
.btn-brand,
.btn-ghost {
  display: inline-block;
  font-weight: 700;
  border-radius: 4px;
  padding: 12px 22px;
  text-decoration: none;
  margin: 8px 10px 0 0;
  transition: background-color .2s ease, color .2s ease;
}

.button,
.btn-brand {
  background:#fff;
  color: var(--navy-900);
  border: 1px solid #fff;
}
.button:hover,
.btn-brand:hover { background: #3f9ed6; border-color:#3f9ed6; color:#fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

main .button {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
main .button:hover { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }

/* ---------- Sections ---------- */
.section { padding:35px 0; }
.section--soft { background: var(--soft); }

.section-title { position: relative; padding-bottom: 14px; margin-bottom: 8px; }
.section-title span {color:#4c96bd}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  background: var(--sky);
}

.lead-note { color: var(--muted); font-size: 1.02rem; }

/* ---------- Strip (quick facts) ---------- */
.strip { background: var(--strip); color: #fff; }
.strip .strip-item {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  height: 100%;
}
.strip .col-12:last-child .strip-item { border-right: 0; }
.strip strong { display: block; font-size: 1.05rem; font-weight: 800; }
.strip span { color: rgba(255, 255, 255, .9); font-size: .95rem; }

/* ---------- Cards ---------- */
.card-brand {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--sky);
  border-radius: 6px;
  padding: 26px 24px;
  height: 100%;
}
.card-brand > strong { display: block; color: var(--teal); font-size: 1.08rem; font-weight: 800; }
.card-brand p { margin: 10px 0 0; color: var(--muted); }
.card-brand p:last-child { margin-bottom: 0; }
.card-brand ul { padding-left: 20px; margin-bottom: 12px; }
.card-brand ul li { margin-bottom: 6px; }
.card-brand h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 10px; }

.card-plain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  height: 100%;
}
.card-plain strong { color: var(--teal); font-weight: 800; }

.card-num > strong { color: var(--navy-600); }

.list-brand { padding-left: 20px; }
.list-brand li { margin-bottom: 8px; }

.small { font-size: .92rem; color: var(--muted); }

.contact-line { font-size: 1.05rem; font-weight: 600; color: var(--teal); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .78);
  padding: 40px 0;
  text-align: center;
}
.site-footer img { height: 54px; width: auto; margin-bottom: 18px; }
.site-footer p { margin: 0 auto; max-width: 100%; font-size: .94rem; }
.site-footer a { color: var(--sky); text-decoration: none; }
.site-footer a:hover { color: #fff; }


.tab a {background:#4cb5ec!important; color:#fff!important; font-weight:800; font-size: 13px; border-radius: 5px;}
.tab2 a {color:#fff!important; font-weight:800; font-size: 13px; border-radius: 5px;}


.tab a:hover {background:#fff!important; color:#4cb5ec!important;}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 6px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    background: transparent;
  }
  .site-header .navbar-nav { width: 100%; }
  .site-header .navbar-nav .nav-item + .nav-item { border-top: 1px solid rgba(255, 255, 255, .12); }
  .site-header .navbar-nav .nav-link {
    display: block;
    padding: 12px 2px;
    border: 0;
    border-radius: 0;
  }
  .site-header .navbar-nav .nav-link.active { color: var(--sky); }
  .strip .strip-item { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .28); }
}

@media (max-width: 767.98px) {
  .hero { padding: 56px 0 48px; }
  .hero--page { padding: 46px 0 40px; }
  .section { padding:30px 0; }
  .navbar-brand img { height: 42px; }
}

@media (max-width: 575.98px) {
  .button, .btn-brand, .btn-ghost { display: block; width: 100%; margin: 10px 0 0; text-align: center; }
  .card-brand, .card-plain { padding: 20px 18px; }
  .eyebrow { font-size: .74rem; padding: 8px 12px; }
}

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


@media (max-width:480px) {
  .hero { padding:20px 0 20px;}
   .hero--page { padding:20px 0 20px; }


  
}



@media (max-width:414px) {
.tab a {font-size: 12px; padding:5px 8px}
.tab2 a {font-size: 12px; padding:5px 8px}
}


@media (max-width:360px) {
.tab a {font-size: 11px; padding:5px 8px}
.tab2 a {font-size: 11px; padding:5px 8px}
}


 

.hd span {
  color: #4c96bd;
}

