:root {
  --primary: #004e7f;
  --accent: #5bc9e1;
  --text: #1c3344;
  --muted: #637888;
  --border: #dce8ef;
  --bg: #f6fafc;
  --white: #ffffff;
  --heading: #123a56;
  --shadow: 0 12px 30px rgba(18, 58, 86, 0.08);
  --radius: 18px;
  --max: 1180px;
}

.leadership-heart {
  display: inline-block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -3px;
}


html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--max)); margin: 0 auto; }

.topbar {
  border-bottom: 1px solid rgba(18,58,86,0.08);
  background: rgba(255,255,255,0.97);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}
.brand img {
  width: 210px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
.nav a:hover,
.nav a.active { color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  padding: 84px 0 74px;
  background: #f7fbfd;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f5fb;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  color: #004e7f;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero p,
.page-hero p {
  font-size: 1.08rem;
  color: #004e7f;
  margin: 0 0 28px;
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-secondary:hover { background: #eef7fb; }
.hero-image,
.feature-image,
.split-image img,
.service-card img,
.team-photo {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.contact-photo,{
   border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-image { min-height: 460px; }
.page-hero {
  padding: 70px 0 46px;
  background: #f7fbfd;
}
.page-hero .container { max-width: 920px; }

section { padding: 74px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: #004e7f;
}
.section-heading p,
.copy p,
.contact-card p,
.stat p,
.info-card p,
.footer p,
.footer li,
.service-card p,
.quote p,
.checklist li,
.split-copy p {
  color: var(--muted);
}

.cards-4,
.cards-3,
.stats-grid,
.info-grid,
.contact-grid,
.footer-grid,
.services-grid {
  display: grid;
  gap: 24px;
}
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.stat,
.info-card,
.service-card,
.contact-card,
.quote,
.cta-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card,
.stat,
.info-card,
.contact-card,
.quote,
.cta-panel { padding: 28px; }
.service-card { overflow: hidden; }
.service-card .service-copy { padding: 24px; }
.service-card img { height: 240px; }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #e8f5fb;
  color: var(--primary);
  display: block;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  padding: 10px;
}
.icon-badge svg { width: 24px; height: 24px; }
.card h3,
.service-card h3,
.info-card h3,
.contact-card h3,
.stat h3,
.quote h3,
.cta-panel h2 {
  margin: 0 0 10px;
  color: #004e7f;
}
.card p,
.service-card p,
.info-card p,
.contact-card p,
.stat p,
.quote p { margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;s
}
.split3{
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 36px;
  align-items: center;s
}
.split.alt .split-copy { order: 2; }
.split.alt .split-image{ order: 1; margin: auto;}
.split3.alt .split-copy { order: 2; }
.split3.alt .split-image { order: 1; margin: auto;}
.split-copy h2,
.split-copy h3 {
  margin: 0 0 14px;
  color: #004e7f;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  padding-left: 30px;
  position: relative;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.band { background: var(--bg); }
.quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote p {
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.quote strong { color: var(--heading); }

.contact-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fbfd;
  border: 1px solid var(--border);
  color: var(--text);
}

.footer {
  background: #0f2f46;
  color: rgba(255,255,255,0.92);
  padding: 34px 0;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}
.footer-logo {
  width: 180px;
  margin-bottom: 14px;
}
.footer h4 {
  margin: 0 0 12px;
  color: #fff;
}
.footer p, .footer li{
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer a { color: #5bc9e1; }
.footer a:hover { color:#fff}
.subfooter {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.76);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid,
  .services-grid,
  .info-grid,
  .footer-grid,
  .cards-4,
  .cards-3,
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .split.alt .split-copy,
  .split.alt .split-image { order: initial; }
}

@media (max-width: 760px) {
  .topbar-inner { min-height: 78px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    z-index: 49;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 18px 28px;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
  }
  .nav a:hover,
  .nav a.active { background: #f0f8fc; color: var(--accent); }
  .brand img { width: 175px; }
  .cards-4,
  .cards-3,
  .stats-grid,
  .info-grid,
  .services-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero,
  section { padding: 58px 0; }
  .page-hero { padding: 56px 0 34px; }
  .card,
  .stat,
  .info-card,
  .service-card .service-copy,
  .contact-card,
  .quote,
  .cta-panel { padding: 22px; }
  .hero-image,
  .contact-photo { min-height: 300px; }
}

/* Centered contact card */
.contact-center {
  display: flex;
  justify-content: center;
}
.contact-center .contact-card {
  width: 100%;
  max-width: 520px;
}
