/* ─── ABOUT PAGE ─────────────────────────────────────
   All layout via Bootstrap (container / row / col-*)
   This file = brand-specific styles only             */

/* ══════════════════════════════════════════════════
   1. HERO — "Who we are"
══════════════════════════════════════════════════ */
.ab-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%),
    linear-gradient(135deg, #0b1e4e 0%, #163883 50%, #1a4db7 100%);
  padding-top: 80px; /* fixed nav */
}

/* ── About hero background image ──
   Scoped to this page only — the shared .ab-hero base above is
   still used plain on Services/Research/Products.             */
.ab-hero.ab-hero--about {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 100%),
    linear-gradient(135deg, rgba(11,30,78,.55) 0%, rgba(22,56,131,.4) 50%, rgba(26,77,183,.5) 100%),
    url('../../../images/drone-development.jpg') center / cover no-repeat;
}
.ab-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  pointer-events: none;
}
.ab-hero-inner {
  position: relative; z-index: 2;
  padding-bottom: clamp(48px, 9vh, 88px);
}
.ab-hero h1 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4.6vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.ab-hero p {
  color: rgba(255,255,255,.72);
  font-size: var(--tx-lg);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.ab-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: var(--tx-sm); font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.ab-btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ══════════════════════════════════════════════════
   2. HOW IT ALL STARTED
══════════════════════════════════════════════════ */
.ab-origin {
  position: relative;
  background: #080c14;
  padding: clamp(64px, 11vh, 120px) 0;
  overflow: hidden;
}
.ab-origin-glow {
  position: absolute;
  right: -180px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,56,131,.35) 0%, transparent 68%);
  pointer-events: none;
}
.ab-origin h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.ab-origin p {
  color: rgba(255,255,255,.55);
  font-size: var(--tx-base);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}
.ab-origin-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,.2);
  margin-bottom: 28px;
}
.ab-link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font);
  font-size: var(--tx-sm); font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s, gap .2s;
}
.ab-link-arrow:hover { color: #fff; border-color: rgba(255,255,255,.6); gap: 14px; }

/* ══════════════════════════════════════════════════
   3. FAST FACTS
══════════════════════════════════════════════════ */
.ab-facts-section {
  background: #fff;
  padding: clamp(52px, 8vh, 88px) 0;
}
.ab-section-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -.4px;
  margin-bottom: 36px;
}
.ab-fact-card {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 28px 26px;
  height: 100%;
  transition: box-shadow .25s;
}
.ab-fact-card:hover { box-shadow: var(--sh-sm); }
.ab-fact-icon {
  font-size: 1.5rem;
  color: var(--c-primary);
  margin-bottom: 16px;
}
.ab-fact-label {
  font-size: var(--tx-xs);
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ab-fact-num {
  font-family: var(--font);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.ab-fact-plus { font-size: .7em; font-weight: 700; }
.ab-fact-sub  { font-size: var(--tx-sm); color: var(--c-muted); }
.ab-fact-offices {
  font-size: var(--tx-base);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.65;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   4. WHAT DRIVES US
══════════════════════════════════════════════════ */
.ab-drives-section {
  background: #fff;
  padding-top: clamp(52px, 8vh, 88px);
  padding-bottom: 0;
}
.ab-drives-tabs {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 0;
  padding-bottom: clamp(32px, 5vh, 52px);
}
.ab-tab {
  padding: 10px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line);
  background: transparent;
  font-family: var(--font);
  font-size: var(--tx-sm); font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  transition: all .2s;
}
.ab-tab.active  { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.ab-tab:hover:not(.active) { border-color: var(--c-ink); color: var(--c-ink); }

/* Panel visibility */
.ab-drives-panel        { display: none; }
.ab-drives-panel.active { display: block; }

/* Full-bleed visual */
.ab-drives-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b1e4e 0%, #163883 55%, #1a4db7 100%);
  overflow: hidden;
}
.ab-drives-visual--mission {
  min-height: 550px;
}

/* Mission / Vision panel background photos — scoped per panel */
.ab-drives-visual--pic-mission {
  background:
    linear-gradient(135deg, rgba(11,30,78,.6) 0%, rgba(22,56,131,.4) 100%),
    url('../../../images/mission.png') center / cover no-repeat;
}
.ab-drives-visual--pic-vision {
  background:
    linear-gradient(135deg, rgba(11,30,78,.6) 0%, rgba(22,56,131,.4) 100%),
    url('../../../images/vision.jpg') center / cover no-repeat;
}

.ab-drives-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
  pointer-events: none;
}
.ab-drives-content {
  position: relative; z-index: 2;
  padding-top: 56px;
  padding-bottom: 56px;
}
.ab-mission-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-style: italic;
  max-width: 580px;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   5. FOUNDER QUOTE
══════════════════════════════════════════════════ */
.ab-quote-section {
  background: #fff;
  padding: clamp(64px, 10vh, 110px) 0;
}
.ab-quote {
  font-family: var(--font);
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.7;
  border: none;
  padding: 0;
  margin: 0;
}
.ab-quote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: var(--tx-sm);
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════
   6. MILESTONES
══════════════════════════════════════════════════ */
.ab-milestones {
  background: #080c14;
  padding: clamp(56px, 8vh, 88px) 0;
}
.ab-ms-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.4px;
  margin: 0;
}
.ab-ms-ctrl-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all .2s;
}
.ab-ms-ctrl-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff; }

/* Mobile-only dots below milestone card */
.ab-ms-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .ab-ms-dots { display: flex; }
}
.ab-ms-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: width .3s var(--ease), border-radius .3s var(--ease), background .3s;
  flex-shrink: 0;
}
.ab-ms-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
.ab-ms-dot:hover:not(.active) { background: rgba(255,255,255,.5); }

/* Milestone card */
.ab-ms-cards { margin-top: 36px; }
.ab-ms-card  { display: none; }
.ab-ms-card.active { display: block; }

.ab-ms-card-img {
  height: 100%;
  background: linear-gradient(135deg, #0d2050 0%, #163883 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
}
.ab-ms-card-img i { font-size: 3.5rem; color: rgba(255,255,255,.22); }
.ab-ms-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-ms-card > .row {
  background: #131825;
  border-radius: 14px;
  overflow: hidden;
}
.ab-ms-card-body { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; height: 100%; }
.ab-ms-year {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 12px;
}
.ab-ms-card-body h3 {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}
.ab-ms-card-body p {
  font-size: var(--tx-sm);
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   7. AWARDS & RECOGNITIONS
══════════════════════════════════════════════════ */
.ab-awards {
  background: #f3f5fb;
  padding: clamp(56px, 8vh, 88px) 0;
}
.ab-aw-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ab-aw-scroll::-webkit-scrollbar { display: none; }
.ab-aw-track {
  display: flex;
  gap: 18px;
  padding-bottom: 4px;
  width: max-content;
}
.ab-aw-card {
  width: 210px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  padding: 28px 20px;
  flex-shrink: 0;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.ab-aw-card:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); }
.ab-aw-logo {
  font-size: 2.2rem;
  color: var(--c-primary);
  margin-bottom: 14px;
  line-height: 1;
}
.ab-aw-org  { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 8px; }
.ab-aw-name { font-size: var(--tx-sm); font-weight: 600; color: var(--c-ink); line-height: 1.45; margin-bottom: 10px; }
.ab-aw-year { font-size: var(--tx-xs); color: var(--c-faint); font-weight: 500; }
.ab-aw-ctrl-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  background: transparent;
  color: var(--c-ink2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all .2s;
}
.ab-aw-ctrl-btn:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

/* ══════════════════════════════════════════════════
   8. CONTACT US & BLOG
══════════════════════════════════════════════════ */
.ab-cb-section {
  background: #fff;
  padding: clamp(56px, 8vh, 88px) 0;
}
.ab-cb-card {
  display: block;
      height: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  color: inherit;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.ab-cb-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); color: inherit; }

.ab-cb-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.ab-cb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.ab-cb-card:hover .ab-cb-img img { transform: scale(1.05); }
.ab-cb-body { padding: 24px 22px 26px; }
.ab-cb-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.ab-cb-body h4 {
  font-family: var(--font);
  font-size: var(--tx-xl); font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.ab-cb-body p {
  font-size: var(--tx-sm);
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.ab-cb-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--tx-sm); font-weight: 600;
  color: var(--c-primary);
  transition: gap .2s, color .2s;
}
.ab-cb-card:hover .ab-cb-link { gap: 12px; color: var(--c-accent-h); }

/* ══════════════════════════════════════════════════
   8. WHY CHOOSE US
══════════════════════════════════════════════════ */
.ab-usp-section {
  background: #fff;
  padding: clamp(56px, 9vh, 100px) 0;
}
.ab-usp-sub {
  font-size: var(--tx-base);
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.ab-usp-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ab-usp-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.ab-usp-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(22,56,131,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--c-primary);
  margin-bottom: 20px;
  transition: background .25s, color .25s;
}
.ab-usp-card:hover .ab-usp-icon {
  background: var(--c-primary);
  color: #fff;
}
.ab-usp-card h4 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.ab-usp-card p {
  font-size: var(--tx-sm);
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   9. OUR TEAM
══════════════════════════════════════════════════ */
.ab-team-section {
  background: #f3f5fb;
  padding: clamp(56px, 9vh, 100px) 0;
}
.ab-team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(22,56,131,.07);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ab-team-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}
.ab-team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.ab-team-img--1 {
  background: linear-gradient(135deg, #163883 0%, #1a4db7 50%, #0d2460 100%);
  background-image: url('https://picsum.photos/seed/tm01/400/400');
}
.ab-team-img--2 {
  background: linear-gradient(135deg, #1a4db7 0%, #163883 60%, #0b1e4e 100%);
  background-image: url('https://picsum.photos/seed/tm02/400/400');
}
.ab-team-img--3 {
  background: linear-gradient(135deg, #0b1e4e 0%, #163883 40%, #1a4db7 100%);
  background-image: url('https://picsum.photos/seed/tm03/400/400');
}
.ab-team-img--4 {
  background: linear-gradient(135deg, #0d2460 0%, #1a4db7 55%, #163883 100%);
  background-image: url('https://picsum.photos/seed/tm04/400/400');
}
.ab-team-body {
  padding: 22px 20px 20px;
  text-align: center;
}
.ab-team-body h5 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.ab-team-body span {
  font-size: var(--tx-sm);
  color: var(--c-muted);
}
.ab-team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.ab-team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink2);
  font-size: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.ab-team-social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .ab-ms-card-img { border-radius: 14px 14px 0 0; aspect-ratio: 16 / 9; height: auto; }
  .ab-ms-card > .row > .col-md-5,
  .ab-ms-card > .row > .col-md-7 { width: 100%; }
}
@media (max-width: 768px) {
  .ab-hero { min-height: 60vh; }
  .ab-tl-dot { font-size: 9px; }
  .ab-drives-visual { min-height: 360px; }
  .ab-drives-visual--mission { min-height: 400px; }
}
@media (max-width: 480px) {
  .ab-hero h1 { letter-spacing: -1.5px; }
}
