:root{
  --navy:#0b2f57;
  --navy2:#0a2546;
  --blue:#1677d9;
  --blue2:#0f67c0;
  --text:#243244;
  --muted:#6b7a90;
  --bg:#ffffff;
  --soft:#f3f7fc;
  --card:#ffffff;
  --border:#e6edf6;
  --shadow: 0 10px 30px rgba(10, 37, 70, 0.08);
  --radius:18px;
  --radius2:24px;
  --max:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), 92%); margin:0 auto; }

/* Header / Nav */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11, 47, 87, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:600;
}
.brand__logo{
  width:38px;
  height:38px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  display:grid;
  place-items:center;
  font-weight:700;
  letter-spacing:0.5px;
}
.brand__text{ font-size:18px; white-space:nowrap; }

.nav__links{
  display:flex;
  align-items:center;
  gap:26px;
  color:rgba(255,255,255,0.9);
  font-weight:500;
}
.nav__links a:hover{ color:#fff; }
.nav__links a.is-active{
  color:#fff;
  position:relative;
}
.nav__links a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:2px;
  background:rgba(255,255,255,0.8);
  border-radius:999px;
}
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.14);
}
.nav__cta:hover{ background:rgba(255,255,255,0.2); }

/* Mobile */
.nav__toggle{
  display:none;
  width:42px;
  height:42px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:12px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px;
  width:18px;
  background:#fff;
  margin:5px auto;
  transition:0.2s;
}
.nav__toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ opacity:0; }
.nav__toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobileMenu{
  display:none;
  flex-direction:column;
  padding:12px 0 18px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.mobileMenu a{
  padding:12px 4%;
  color:rgba(255,255,255,0.92);
}
.mobileMenu a:hover{ color:#fff; background:rgba(255,255,255,0.06); }
.mobileMenu.is-open{ display:flex; }
.mobileMenu a.is-active{ color:#fff; font-weight:700; }

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
  background:var(--navy);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,47,87,0.92) 0%, rgba(11,47,87,0.72) 52%, rgba(11,47,87,0.55) 100%),
    url("https://images.unsplash.com/photo-1586528116493-da5c8adf0b7b?auto=format&fit=crop&w=1800&q=70");
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero__content{
  position:relative;
  padding:70px 0;
  max-width: 860px;
}
.eyebrow{
  margin:0 0 14px;
  font-weight:600;
  letter-spacing:0.14em;
  color:rgba(255,255,255,0.85);
}
.hero__title{
  font-family:"Playfair Display", serif;
  font-size: clamp(42px, 4.8vw, 80px);
  line-height:1.03;
  margin:0 0 18px;
}
.hero__desc{
  margin:0 0 14px;
  font-size: clamp(16px, 1.6vw, 20px);
  color:rgba(255,255,255,0.9);
  max-width: 760px;
}
.hero__tagline{ margin:0 0 26px; color:rgba(255,255,255,0.85); }
.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* Page header (non-home top banner) */
.pageHero{
  background: linear-gradient(90deg, rgba(11,47,87,0.98), rgba(11,47,87,0.75)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=70");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:64px 0;
}
.pageHero h1{
  font-family:"Playfair Display", serif;
  margin:0 0 8px;
  font-size: clamp(34px, 3.6vw, 56px);
}
.pageHero p{
  margin:0;
  color:rgba(255,255,255,0.85);
  max-width: 780px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
  user-select:none;
}
.btn--primary{ background:var(--blue); border-color:var(--blue); color:#fff; }
.btn--primary:hover{ background:var(--blue2); border-color:var(--blue2); }
.btn--outline{
  background:transparent;
  border-color:rgba(255,255,255,0.38);
  color:#fff;
}
.btn--outline:hover{ border-color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.06); }
.btn--dark{ background:var(--navy2); border-color:var(--navy2); color:#fff; width:fit-content; }
.btn--dark:hover{ filter:brightness(1.1); }
.btn--full{ width:100%; padding:14px 18px; border-radius:14px; }

/* Sections */
.section{ padding:78px 0; }
.section--muted{ background:var(--soft); }
.section__kicker{
  margin:0 0 12px;
  font-weight:700;
  letter-spacing:0.18em;
  color:var(--blue);
  font-size:13px;
}
.section__title{
  font-family:"Playfair Display", serif;
  margin:0 0 12px;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height:1.12;
}
.subtext{ margin:0 auto; max-width: 780px; color:var(--muted); font-size:16px; }
.centerHead{ text-align:center; margin-bottom:34px; }
.text{ color:var(--muted); margin:0 0 16px; font-size:16px; }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:44px;
  align-items:center;
}

/* About media */
.aboutMedia{
  position:relative;
  border-radius:var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.aboutMedia__img{
  width:100%;
  height: 520px;
  object-fit:cover;
}
.badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background:var(--navy2);
  color:#fff;
  padding:16px 18px;
  border-radius:16px;
  width: 180px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.badge__num{ font-size:40px; font-weight:800; line-height:1; }
.badge__label{ margin-top:6px; color:rgba(255,255,255,0.88); font-size:14px; }

/* Mini cards */
.miniGrid{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.miniCard{
  display:flex;
  gap:12px;
  padding:16px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow: 0 8px 24px rgba(10,37,70,0.06);
}
.miniIcon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(22,119,217,0.10);
  color:var(--blue);
  font-weight:900;
}
.miniCard h4{ margin:0; font-size:14px; }
.miniCard p{ margin:4px 0 0; color:var(--muted); font-size:13px; }

/* CEO */
.ceo{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:44px;
  align-items:start;
}
.ceo__left{ text-align:center; }
.ceo__photoWrap{
  width:220px;
  height:220px;
  margin:0 auto 16px;
  border-radius:999px;
  padding:8px;
  background:linear-gradient(180deg, rgba(22,119,217,0.25), rgba(22,119,217,0));
}
.ceo__photo{
  width:100%; height:100%;
  border-radius:999px;
  object-fit:cover;
  border:6px solid #fff;
}
.ceo__name{ font-family:"Playfair Display", serif; font-size:26px; margin-top:6px; }
.ceo__role{ color:var(--blue); font-weight:700; margin-top:4px; }
.ceo__org{ color:var(--muted); margin-top:4px; }
.quote{
  margin:20px 0 0;
  padding-left:18px;
  border-left:4px solid var(--blue);
  color:var(--navy2);
  font-family:"Playfair Display", serif;
  font-size:22px;
}

/* Grids */
.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow: 0 8px 24px rgba(10,37,70,0.06);
}
.card__icon{
  width:46px; height:46px;
  border-radius:14px;
  background:rgba(22,119,217,0.10);
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--blue);
  margin-bottom:14px;
}
.card h3{ margin:0 0 8px; font-family:"Playfair Display", serif; font-size:22px; }
.card p{ margin:0; color:var(--muted); }

/* Industry image cards */
.imgCard{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height: 270px;
  background-image: var(--bg);
  background-size:cover;
  background-position:center;
  box-shadow: var(--shadow);
}
.imgCard__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(11,47,87,0.78), rgba(11,47,87,0.35));
}
.imgCard__content{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  color:#fff;
}
.imgCard__content h3{ margin:0 0 6px; font-family:"Playfair Display", serif; font-size:22px; }
.imgCard__content p{ margin:0; color:rgba(255,255,255,0.9); }

/* Tabs */
.tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:24px;
}
.tab{
  border:1px solid var(--border);
  background:var(--soft);
  color:var(--navy2);
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}
.tab.is-active{ background:var(--blue); border-color:var(--blue); color:#fff; }

/* Jobs */
.job__salary{ font-weight:700; color:var(--blue); margin:10px 0 2px; }
.job__meta{ margin:0 0 16px; color:var(--muted); }

/* Why (can be used on Home, or separate page if you add one later) */
.why{
  padding:86px 0;
  background: #08294e;
  color:#fff;
}
.centerHead--dark{ margin-bottom:36px; }
.section__kicker--dark{ color: rgba(255,255,255,0.65); }
.section__title--dark{ color:#fff; }
.subtext--dark{ color: rgba(255,255,255,0.75); }

.whyGrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:16px;
  margin-top:34px;
}
.whyCard{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:22px 18px;
  text-align:center;
}
.whyCard__icon{
  width:54px; height:54px;
  border-radius:999px;
  background: rgba(22,119,217,0.20);
  display:grid;
  place-items:center;
  margin:0 auto 14px;
  font-size:20px;
}
.whyCard h3{ margin:0 0 10px; font-family:"Playfair Display", serif; font-size:18px; }
.whyCard p{ margin:0; color: rgba(255,255,255,0.78); font-size:14px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:22px;
  align-items:start;
}
.infoCard{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:18px;
  margin-bottom:12px;
}
.infoCard__icon{
  width:44px; height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(22,119,217,0.12);
  color:var(--blue);
  font-weight:900;
}
.infoCard h4{ margin:0 0 6px; font-size:16px; }
.infoCard p{ margin:0; color:var(--muted); }

.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow: 0 8px 24px rgba(10,37,70,0.06);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.input{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  outline:none;
  font:inherit;
  background:#fff;
}
.input:focus{
  border-color: rgba(22,119,217,0.6);
  box-shadow: 0 0 0 4px rgba(22,119,217,0.12);
}
textarea.input{ resize:vertical; margin-bottom:14px; }

/* Footer */
.footer{
  background: #071f3a;
  color:#fff;
  padding:34px 0 16px;
  margin-top:40px;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.footer__brand{ font-weight:800; font-size:18px; }
.footer__text{ margin:8px 0 0; color: rgba(255,255,255,0.75); }
.footer__links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color: rgba(255,255,255,0.85);
}
.footer__links a:hover{ color:#fff; }
.footer__bottom{
  padding-top:14px;
  color: rgba(255,255,255,0.65);
  font-size:14px;
}

/* Responsive */
@media (max-width: 1024px){
  .whyGrid{ grid-template-columns: repeat(2, 1fr); }
  .grid3{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .ceo{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .aboutMedia__img{ height:420px; }
}
@media (max-width: 780px){
  .nav__links{ display:none; }
  .nav__toggle{ display:block; }
  .miniGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .hero__content{ padding:54px 0; }
}