:root {
  --navy: #0d2242;
  --blue: #356f9f;
  --light-blue: #dfeaf4;
  --text: #3f4650;
  --line: #d9dee4;
  --page-gutter: clamp(24px, 5.4vw, 86px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.page-shell {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.site-header {
  position: relative;
  z-index: 1000;
}

.brand-logo {
  width: 320px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 1rem .25rem !important;
  color: #07142f;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .25rem;
  right: .25rem;
  bottom: .55rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-primary {
  --bs-btn-bg: #3e78a8;
  --bs-btn-border-color: #3e78a8;
  --bs-btn-hover-bg: #2e648f;
  --bs-btn-hover-border-color: #2e648f;
  --bs-btn-active-bg: #285a81;
  --bs-btn-active-border-color: #285a81;
}

.contact-button,
.hero-button {
  border-radius: 4px;
  padding: .82rem 1.8rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-section {
  min-height: 438px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 28%, rgba(255,255,255,.93) 37%, rgba(255,255,255,.15) 65%),
    #edf3f8;
  overflow: hidden;
}

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

.display-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.3rem, 4.25vw, 5rem);
  line-height: .99;
  font-weight: 800;
  letter-spacing: -.035em;
}

.section-rule {
  display: flex;
  align-items: center;
  width: min(365px, 100%);
  gap: 10px;
  margin: 20px 0 18px;
}

.section-rule span {
  display: block;
  height: 2px;
  flex: 1;
  background: #2f6c9d;
}

.section-rule i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f6c9d;
}

.hero-text {
  max-width: 390px;
  margin-bottom: 22px;
  font-size: .94rem;
  line-height: 1.55;
}

.hero-image {
  min-height: 438px;
  margin-left: -10%;
  width: 68%;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.72) 9%, rgba(255,255,255,.08) 34%, rgba(255,255,255,0) 100%),
    url("hero-globe.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.capabilities-strip {
  background: #fff;
  border-top: 1px solid #eff1f3;
  border-bottom: 1px solid #eff1f3;
}

.capability-item {
  display: flex;
  gap: 18px;
  min-height: 158px;
  padding: 34px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.capability-item + .capability-item {
  padding-left: 38px;
}

.capability-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #e8eef4;
  font-size: 2rem;
}

.capability-item h2 {
  margin: 3px 0 7px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capability-item p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.55;
}

.about-section {
  padding: 30px 0 42px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #3d739e;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-title {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.1vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
}

.about-text {
  max-width: 560px;
  font-size: .94rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #3b719c;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-image {
  width: 100%;
  min-height: 230px;
  border-radius: 8px;
  object-fit: cover;
}

.placeholder-section {
  padding: 80px 0;
}

.placeholder-section h2 {
  color: var(--navy);
  font-weight: 800;
}

.contact-section {
  padding: 60px 0;
  color: white;
  background: var(--navy);
}

.contact-section h2 {
  margin: 0;
  font-weight: 800;
}
.footer{

    background:#ffffff;
    padding:80px 0 0;
    border-top:1px solid #e9edf2;

}

.footer-logo{

    max-width:240px;

}

.footer-heading{

    color:#10294b;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:20px;

}

.footer-text{

    color:#6b7280;
    line-height:1.8;
    max-width:340px;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#6b7280;
    text-decoration:none;
    transition:.25s;

}

.footer-links a:hover{

    color:#2d6fa2;

}

.footer-social a{

    width:42px;
    height:42px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-right:10px;

    border-radius:50%;
    background:#edf3f8;

    color:#1f3d63;

    text-decoration:none;

    transition:.25s;

}

.footer-social a:hover{

    background:#4f82b0;
    color:white;

}

.footer-bottom{

    margin-top:70px;
    padding:25px 0;

    border-top:1px solid #e6ebef;

    background:#f7f9fb;

    color:#7a8593;

    font-size:.9rem;

}

.footer-bottom a{

    color:#7a8593;
    text-decoration:none;

}

.footer-bottom a:hover{

    color:#2d6fa2;

}

@media (max-width: 1199.98px) {
  .capability-item {
    border-bottom: 1px solid var(--line);
  }

  .capability-item:nth-child(2) {
    border-right: 0;
  }

  .capability-item:nth-child(3),
  .capability-item:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .contact-button {
    margin-top: .75rem;
  }

  .hero-section {
    background: #fff;
  }

  .hero-image {
    width: 100%;
    min-height: 380px;
    margin-left: 0;
    background-position: center;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 250px;
    max-width: 70vw;
  }

  .display-title {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .capability-item,
  .capability-item + .capability-item {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .about-section {
    padding: 52px 0;
  }
}