/* ABOUT + LEADERSHIP PAGE */
.about-hero {
  height:300px;
  position:relative;
  overflow:hidden;
  background:#000a16;
}
.about-hero-image {
  position:absolute;
  inset:0;
  background:url('../img/about_hero.jpg') center 46%/cover no-repeat;
}
.about-hero-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,10,22,.70),rgba(0,10,22,.42) 45%,rgba(0,10,22,.12));
}
.about-hero-content {
  height:100%;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}
.about-hero .section-kicker {
  color:#68b2ff;
  margin-bottom:10px;
}
.about-hero h1 {
  margin:0 0 10px;
  font-size:46px;
  line-height:1;
  letter-spacing:-1.3px;
  font-weight:800;
}
.about-breadcrumb {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  color:#dbe7f5;
}
.about-breadcrumb a:hover {
  color:#fff;
}
.about-breadcrumb strong {
  color:#fff;
  font-weight:600;
}
.about-intro-section {
  padding:0 0 14px;
  background:#fff;
}
.about-intro-box {
  max-width: 930px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 0 27px;
  position: relative;
  z-index: 2;
  border-left: 0;
  border-right: 0;
}
.about-intro-box p {
  margin:0;
  color:#66717e;
  font-size:16px;
  line-height:1.85;
}
.about-values-band {
  background:#00132b;
  color:#fff;
  padding:29px 0 27px;
  position:relative;
  overflow:hidden;
}
.about-values-band:after {
  content:'';
  position:absolute;
  right:-100px;
  top:-100px;
  width:420px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,146,255,.12),transparent 65%);
}
.about-values-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}
.about-value {
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:0 42px;
  border-right:1px solid rgba(255,255,255,.18);
  position:relative;
  z-index:1;
}
.about-value:first-child {
  padding-left:50px;
}
.about-value:last-child {
  border-right:0;
}
.about-value>i {
  font-size:35px;
  color:#68b2ff;
  margin-top:2px;
}
.about-value span {
  display:block;
  color:#168fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  margin-bottom:7px;
}
.about-value p {
  margin:0;
  color:#e3ebf5;
  font-size:13px;
  line-height:1.5;
}
.about-leadership {
  padding:28px 0 70px;
  background:#fff;
}
.leadership-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}
.leadership-copy {
  padding-left:8px;
}
.leadership-copy .section-kicker {
  color:#2874d2;
  margin:0 0 10px;
  font-size:12px;
  font-weight:800;
}
.leadership-copy h2 {
  margin:0 0 7px;
  color:#071f4f;
  font-size:32px;
  line-height:1.1;
  font-weight:800;
}
.leadership-copy h3 {
  margin:0 0 17px;
  color:#2874d2;
  font-size:15px;
  font-weight:700;
}
.leadership-copy p {
  margin:0 0 17px;
  color:#697585;
  font-size:14px;
  line-height:1.65;
}
.leadership-copy p:first-of-type {
  font-style:normal;
}
.leadership-image {
  position:relative;
  max-width:540px;
  margin-left:auto;
}
.leadership-image:after {
  content:'';
  position:absolute;
  right:-9px;
  bottom:-9px;
  width:92%;
  height:86%;
  border:8px solid #2874d2;
  z-index:0;
}
.leadership-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(.9);
}
/* =========================================================
   About Introduction Heading
   ========================================================= */
.about-intro-title {
  margin: 0 0 14px;
  color: #02245B;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.about-intro-box p {
  margin-bottom: 0;
}
@media(max-width:991px) {
  .about-hero {
    height:270px;
  }
  .about-intro-box {
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
  }
  .about-value,.about-value:first-child {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.16);
    padding:18px 20px;
  }
  .about-value:last-child {
    border-bottom:0;
  }
  .leadership-grid {
    gap:30px;
  }
  .leadership-image img {
    height:380px;
  }
}
@media(max-width:767px) {
  .about-hero {
    height:250px;
  }
  .about-hero h1 {
    font-size:39px;
  }
  .about-intro-box {
    padding:22px 20px;
    border-left-width:5px;
    border-right-width:5px;
  }
  .about-intro-box p {
    font-size:13px;
  }
  .about-values-band {
    padding:18px 0;
  }
  .about-value,.about-value:first-child {
    padding:18px 5px;
  }
  .leadership-grid {
    grid-template-columns:1fr;
    gap:28px;
  }
  .leadership-copy {
    padding-left:0;
  }
  .leadership-copy h2 {
    font-size:29px;
  }
  .leadership-image {
    max-width:100%;
    margin:0;
  }
  .leadership-image img {
    height:430px;
  }
}
@media(max-width:575px) {
  .about-hero {
    height:230px;
  }
  .about-hero h1 {
    font-size:35px;
  }
  .about-intro-box {
    width:calc(100% - 20px);
  }
  .about-value>i {
    font-size:28px;
  }
  .leadership-image img {
    height:360px;
  }
}
.leadership-image::before,
.leadership-image::after {
  display: none !important;
}
/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 767px) {
  .about-intro-title {
    font-size: 25px;
    margin-bottom: 12px;
  }
}
/* =========================================================
   Vision / Mission / Values
   ========================================================= */
.about-vmm {
  background: #010f29;
  padding: 30px 0;
}
.about-vmm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.about-vmm-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 38px;
  box-sizing: border-box;
}
.about-vmm-item + .about-vmm-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.about-vmm-icon {
  flex: 0 0 46px;
  width: 46px;
  color: #4b9cff;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  padding-top: 2px;
}
.about-vmm-item h3 {
  margin: 0 0 10px;
  color: #2874d2;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-vmm-item p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .about-vmm-item {
    gap: 12px;
    padding: 0 20px;
  }
  .about-vmm-icon {
    flex-basis: 40px;
    width: 40px;
    font-size: 32px;
  }
  .about-vmm-item p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .about-vmm {
    padding: 25px 0;
  }
  .about-vmm-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-vmm-item {
    padding: 0;
  }
  .about-vmm-item + .about-vmm-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 22px;
  }
}
/* =========================================================
   Leadership image — preserve full image
   ========================================================= */
.leadership-image img {
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}
@media (max-width: 991px) {
  .leadership-image img {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .leadership-image img {
    height: auto !important;
  }
}
@media (max-width: 575px) {
  .leadership-image img {
    height: auto !important;
  }
}
