
:root {
  --a-dark:  #04091a;
  --a-navy:  #0a1628;
  --a-blue:  #1a5fc8;
  --a-blue2: #2979ff;
  --a-cyan:  #00b4d8;
  --a-cyan2: #48cae4;
  --a-gold:  #f59e0b;
  --a-white: #ffffff;
  --a-off:   #f0f6ff;
  --a-off2:  #f8fafc;
  --a-txt:   #0f172a;
  --a-mid:   #334155;
  --a-mute:  #64748b;
  --a-bd:    #e2e8f0;
}

/* ════════════════════
   HERO
════════════════════ */
.abt-hero {
  position: relative;
  width: 100%; min-height: 92vh;
  display: flex; align-items: flex-start;
  overflow: hidden; background: var(--a-dark);
}
.abt-hero-img {
  position: absolute; inset: 0;
}
.abt-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.abt-hero-ovl {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to right, transparent 0%, transparent 45%, rgba(4,9,26,.55) 100%);
}
.abt-hero-ctn {
  position: relative; z-index: 2;
  padding: 220px 0 64px;
}
.abt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,.15);
  border: 1px solid rgba(0,180,216,.30);
  color: var(--a-cyan2); padding: 10px 26px;
  border-radius: 40px; font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}

.abt-hero h2 {
  font-size: clamp(1.2rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 16px;
}
.abt-hero h2 span { color: var(--a-cyan); }
.abt-hero-sub {
  font-size: 1.25rem; color: rgba(255,255,255,.68);
  line-height: 1.8; max-width: 520px; margin-bottom: 28px;
}
.abt-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .80rem; color: rgba(255,255,255,.45);
}
.abt-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.abt-breadcrumb a:hover { color: var(--a-cyan); }
.abt-breadcrumb i { font-size: .60rem; }

/* ════════════════════
   SECTION TAGS (reuse)
════════════════════ */
.as-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,95,200,.08);
  border: 1px solid rgba(26,95,200,.18);
  color: var(--a-blue); padding: 4px 14px;
  border-radius: 30px; font-size: .75rem;
  font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 12px;
}
.as-tag.light {
  background: rgba(0,180,216,.15);
  border-color: rgba(0,180,216,.30);
  color: var(--a-cyan2);
}
.as-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--a-blue), var(--a-cyan));
  border-radius: 2px; margin-bottom: 18px;
}
.as-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800; color: var(--a-txt);
  line-height: 1.2; margin-bottom: 0;
}
.as-title span { color: var(--a-blue); }
.as-title.wh { color: #fff; }
.as-title.wh span { color: var(--a-cyan); }
.as-sub {
  font-size: .96rem; color: var(--a-mute);
  line-height: 1.85;
}
.as-sub.wh { color: rgba(255,255,255,.65); }

/* ════════════════════
   WHO WE ARE (2-col)
════════════════════ */
.abt-img-main {
  position: relative; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.abt-img-main img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
}
.abt-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(4,9,26,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,180,216,.25);
  padding: 14px 20px; border-radius: 14px;
  color: #fff;
}
.abt-img-badge .num {
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg,#fff,var(--a-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.abt-img-badge .lbl { font-size: .75rem; color: rgba(255,255,255,.60); margin-top: 2px; }

.abt-quote {
  border-left: 3px solid var(--a-cyan);
  padding: 14px 20px;
  background: var(--a-off);
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-size: .96rem; color: var(--a-mid);
  font-style: italic; line-height: 1.75;
}
.abt-quote strong { color: var(--a-blue); font-style: normal; }

/* ════════════════════
   VISION + MISSION SPLIT
════════════════════ */
.vm-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
@media(max-width:991px) {
  .abt-hero-img img { object-position: center; }
  .abt-hero-ctn { padding-top: 360px; }
  .abt-hero-ctn .col-lg-5 { max-width: 78%; flex: 0 0 78%; margin-left: auto; }
  .abt-hero-ovl { background: linear-gradient(180deg, rgba(4,9,26,0) 0%, rgba(4,9,26,.62) 100%); }

}
@media(max-width:768px) {
  .vm-split { grid-template-columns: 1fr; }
  .abt-hero { min-height: 70vh; align-items: center; }

  .abt-hero-ctn { padding: 110px 0 48px; 
    padding-top: 260px;
  }
  .abt-hero-ctn .row { justify-content: center !important; }
  .abt-hero-ctn .col-lg-5 { max-width: 100%; flex: 0 0 100%; padding-left:20px !important; }

  .abt-hero-img img { object-position: center; }
  .abt-hero h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .abt-hero-sub { font-size: 1rem; max-width: 100%; }
}

@media(max-width:400px) {
  .abt-hero { min-height: 55vh;height: 300px }
  .abt-hero-ctn { padding-top: 260px; }
/*  .abt-hero-img img {  }*/
}
.vm-block {
  position: relative; padding: 72px 56px;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
.vm-block.vision { background: var(--a-navy); }
.vm-block.mission { background: var(--a-blue); }
.vm-block::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  right: -60px; bottom: -60px;
}
.vm-block::after {
  content: ''; position: absolute;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  right: 60px; top: -40px;
}
.vm-ico {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.vm-block h3 {
  color: rgba(255,255,255,.55);
  font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.vm-block p {
  color: #fff; font-size: 1.15rem;
  font-weight: 600; line-height: 1.65;
  position: relative; z-index: 1; margin: 0;
}

/* ════════════════════
   3 BUSINESS ENGINES
════════════════════ */
.eng-card {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--a-bd);
  padding: 0; overflow: hidden; height: 100%;
  transition: transform .35s, box-shadow .35s;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.eng-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26,95,200,.14);
  border-color: rgba(26,95,200,.20);
}
.eng-img {
  position: relative; height: 200px; overflow: hidden;
}
.eng-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.eng-card:hover .eng-img img { transform: scale(1.06); }
.eng-img-ovl {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 40%, rgba(4,9,26,.60) 100%);
}
.eng-num {
  position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.30);
  color: #fff; font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.eng-body { padding: 28px 28px 32px; }
.eng-icon {
  width: 48px; height: 48px;
  background: rgba(26,95,200,.08);
  border: 1px solid rgba(26,95,200,.15);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  color: var(--a-blue); font-size: 1.2rem;
  margin-bottom: 16px;
}
.eng-body h4 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--a-txt); margin-bottom: 8px;
}
.eng-body p {
  font-size: .86rem; color: var(--a-mute);
  line-height: 1.72; margin-bottom: 16px;
}
.eng-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.eng-tag {
  background: var(--a-off); border: 1px solid var(--a-bd);
  color: var(--a-mid); font-size: .73rem;
  font-weight: 600; padding: 3px 10px;
  border-radius: 20px;
}

/* ════════════════════
   ISD CORE VALUES
════════════════════ */
.isd-card {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--a-bd);
  padding: 40px 36px; height: 100%;
  position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.isd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(26,95,200,.12);
  border-color: rgba(26,95,200,.20);
}
.isd-card::before {
  content: attr(data-letter);
  position: absolute; right: 20px; top: 10px;
  font-size: 7rem; font-weight: 900;
  color: rgba(26,95,200,.05); line-height: 1;
  pointer-events: none;
}
.isd-letter {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--a-blue), var(--a-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.isd-card h4 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--a-txt); margin-bottom: 10px;
}
.isd-card p {
  font-size: .88rem; color: var(--a-mute);
  line-height: 1.78; margin-bottom: 0;
}
.isd-list {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.isd-list li {
  font-size: .82rem; color: var(--a-mid);
  padding: 5px 0;
  border-bottom: 1px dashed var(--a-bd);
  display: flex; align-items: flex-start; gap: 8px;
}
.isd-list li:last-child { border-bottom: none; }
.isd-list li i { color: var(--a-cyan); font-size: .75rem; margin-top: 3px; flex-shrink: 0; }

/* ════════════════════
   STATS BAND
════════════════════ */
.abt-stats {
  background: var(--a-navy); padding: 72px 0;
  position: relative; overflow: hidden;
}
.abt-stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%,
    rgba(41,121,255,.12) 0%, transparent 65%);
}
.abt-stat-box { text-align: center; position: relative; z-index: 1; }
.abt-stat-box .num {
  font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg,#fff,var(--a-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.abt-stat-box .lbl { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: 8px; font-weight: 600; }
.abt-stat-box .sub { color: rgba(255,255,255,.38); font-size: .78rem; margin-top: 3px; }
.abt-stat-div { border-left: 1px solid rgba(255,255,255,.10); }

/* ════════════════════
   OFFICE GALLERY
════════════════════ */
.abt-gallery { display: grid; gap: 14px; }
.abt-gallery.g4 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; }
.abt-gallery.g4 .g-main { grid-row: 1 / 3; }
.abt-gimg {
  border-radius: 16px; overflow: hidden;
  position: relative;
}
.abt-gimg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.abt-gimg:hover img { transform: scale(1.06); }
.abt-gimg-ovl {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(4,9,26,.45) 100%);
  opacity: 0; transition: opacity .3s;
}
.abt-gimg:hover .abt-gimg-ovl { opacity: 1; }
@media(max-width:768px) {
  .abt-gallery.g4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .abt-gallery.g4 .g-main { grid-row: auto; }
}

/* ════════════════════
   TIMELINE
════════════════════ */
.abt-timeline { position: relative; padding-left: 32px; }
.abt-timeline::before {
  content: ''; position: absolute; left: 10px;
  top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--a-blue), var(--a-cyan));
  border-radius: 2px;
}
.abt-titem {
  position: relative; margin-bottom: 36px;
}
.abt-titem:last-child { margin-bottom: 0; }
.abt-titem::before {
  content: ''; position: absolute;
  left: -26px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--a-blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(26,95,200,.20);
}
.abt-tyear {
  font-size: .76rem; font-weight: 800;
  color: var(--a-blue); letter-spacing: 1px;
  margin-bottom: 4px;
}
.abt-titem h6 {
  font-size: .92rem; font-weight: 700;
  color: var(--a-txt); margin-bottom: 3px;
}
.abt-titem p {
  font-size: .82rem; color: var(--a-mute);
  line-height: 1.65; margin: 0;
}

/* ════════════════════
   CTA
════════════════════ */
.abt-cta {
  background: var(--a-off2);
  border-top: 1px solid var(--a-bd);
  padding: 96px 0;
}
.abt-cta h2 {
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 800; color: var(--a-txt);
  margin-bottom: 14px;
}
.abt-cta h2 span { color: var(--a-blue); }
.abt-cta p { color: var(--a-mute); font-size: .98rem; line-height: 1.8; margin-bottom: 32px; }

/* ════════════════════
   BTN HELPERS
════════════════════ */
.abtn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--a-blue); color: #fff;
  padding: 13px 28px; border-radius: 10px;
  font-size: .92rem; font-weight: 700;
  text-decoration: none; border: 2px solid var(--a-blue);
  transition: all .3s;
}
.abtn-primary:hover {
  background: var(--a-blue2); border-color: var(--a-blue2);
  color: #fff; transform: translateY(-2px);
}
.abtn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--a-blue);
  padding: 13px 28px; border-radius: 10px;
  font-size: .92rem; font-weight: 700;
  text-decoration: none; border: 2px solid rgba(26,95,200,.25);
  transition: all .3s;
}
.abtn-outline:hover {
  border-color: var(--a-blue);
  background: rgba(26,95,200,.06);
  color: var(--a-blue); transform: translateY(-2px);
}

/* ════════════════════
   PRODUCTS → SOLUTIONS (3-COL SPLIT)
════════════════════ */
.pts-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  min-height: 540px;
}
.pts-img { position: relative; overflow: hidden; }
.pts-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pts-text {
  background: #1b2d52;
  padding: 72px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.pts-eyebrow {
  font-size: .72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--a-cyan2); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.pts-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(0,180,216,.30);
}
.pts-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 22px;
}
.pts-text p {
  font-size: .88rem; color: rgba(255,255,255,.65);
  line-height: 1.88; margin-bottom: 12px;
}
.pts-features {
  background: #111e3a;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.pts-feat {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
}
.pts-feat:nth-child(even) { border-right: none; }
.pts-feat:nth-child(3), .pts-feat:nth-child(4) { border-bottom: none; }
.pts-feat-ico {
  width: 44px; height: 44px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  color: var(--a-cyan); font-size: 1.1rem;
  margin-bottom: 14px;
}
.pts-feat h6 {
  font-size: .88rem; font-weight: 800;
  color: #fff; margin-bottom: 6px;
}
.pts-feat p {
  font-size: .78rem; color: rgba(255,255,255,.50);
  line-height: 1.7; margin: 0;
}
@media(max-width:992px) {
  .pts-section { grid-template-columns: 1fr; }
  .pts-img { height: 280px; }
  .pts-features { grid-template-columns: 1fr 1fr; }
  .pts-text, .pts-features { padding: 48px 28px; }
}

/* ════════════════════
   VISION FULL-BLEED SPLIT (BSA-style)
════════════════════ */
.vis-split {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 480px;
}
.vis-text {
  background: #fff;
  padding: 88px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.vis-rule {
  width: 60px; height: 2px;
  background: var(--a-blue);
  margin-bottom: 32px;
}
.vis-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--a-txt);
  margin-bottom: 24px; line-height: 1.15;
}
.vis-text h2 span { color: var(--a-blue); }
.vis-text p {
  font-size: .96rem; color: var(--a-mute);
  line-height: 1.95; max-width: 460px; margin-bottom: 0;
}
.vis-mission-label {
  font-size: .76rem; color: var(--a-mute);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 32px; margin-bottom: 10px;
}
.vis-img { position: relative; overflow: hidden; align-self: stretch; }
.vis-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vis-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  /*background: linear-gradient(to right,
    var(--a-navy) 0%,
    rgba(10,22,40,.55) 18%,
    rgba(10,22,40,.15) 38%,
    transparent 58%);*/
}
@media(max-width:768px) {
  .vis-split { grid-template-columns: 1fr; }
  .vis-img { height: 300px; order: -1; }
  .vis-text { padding: 56px 32px; }
}

/* ════════════════════
   REVEAL ANIMATION
════════════════════ */
.arv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.arv.on { opacity: 1; transform: translateY(0); }
.arv-l { opacity: 0; transform: translateX(-24px); transition: opacity .7s ease, transform .7s ease; }
.arv-l.on { opacity: 1; transform: translateX(0); }
.arv-r { opacity: 0; transform: translateX(24px); transition: opacity .7s ease, transform .7s ease; }
.arv-r.on { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
