/* ═══════════════════════════════════════════════════════════
   OPS.CSS — Operations & Logistics Wing
   NDMA Pakistan | Bootstrap 5.3.x companion stylesheet
═══════════════════════════════════════════════════════════ */

:root {
  --ops-green:        #026902;
  --ops-green-dark:   #014f01;
  --ops-green-light:  #038a03;
  --ops-accent:       #f5a623;
  --ops-white:        #ffffff;
  --ops-bg:           #0d1a0d;
  --ops-card-bg:      rgba(255,255,255,.04);
  --ops-border:       rgba(255,255,255,.09);
  --ops-text:         rgba(255,255,255,.88);
  --ops-text-muted:   rgba(255,255,255,.5);
  --ops-radius:       12px;
  --ops-shadow:       0 8px 32px rgba(0,0,0,.35);
}

/* ── PAGE BASE ───────────────────────────────────────────── */
.ops-page {
  background: var(--ops-bg);
  color: var(--ops-text);
  overflow-x: hidden;
}

/* ── HERO TITLE ──────────────────────────────────────────── */
.ops-hero__title {
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.4px;
  margin-bottom: 18px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.ops-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 7px;
  transition: all .22s;
  cursor: pointer;
  border: none;
}
.ops-btn--primary {
  background: var(--ops-green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(2,105,2,.35);
}
.ops-btn--primary:hover {
  background: var(--ops-green-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,105,2,.45);
}
.ops-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.ops-btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   OVERVIEW SECTION
══════════════════════════════════════════════════════════ */
.ops-about {
  background:
    linear-gradient(rgba(15,31,15,.93), rgba(15,31,15,.93)),
    url('../img/hero.png') center/cover fixed;
}

.ops-about__img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.ops-about__img-wrap img {
  width: 100%;
  border-radius: var(--ops-radius);
  object-fit: contain;
  max-height: 440px;
}

.ops-about__badge {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: var(--ops-green);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--ops-shadow);
}
.ops-about__badge i { font-size: 18px; color: var(--ops-accent); }

.ops-about__title {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}

.ops-about__intro {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ── PILLARS ─────────────────────────────────────────────── */
.ops-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px;
  border-radius: var(--ops-radius);
  border: 1px solid rgba(255,255,255,.07);
  background: var(--ops-card-bg);
  margin-bottom: 12px;
  transition: border-color .2s, background .2s;
}
.ops-pillar:hover {
  border-color: rgba(2,105,2,.4);
  background: rgba(2,105,2,.08);
}

.ops-pillar__icon {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: rgba(2,105,2,.25);
  border: 1px solid rgba(2,105,2,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: #5ccc5c;
  flex-shrink: 0;
}

.ops-pillar__name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.ops-pillar__desc {
  font-size: 13px;
  color: var(--ops-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════════════════════════ */
.ops-strip {
  background: linear-gradient(rgb(0 30 4), rgb(0 0 0 / 88%)), url(../img/hero.png) center / cover no-repeat;
  padding: 0;
  border-top: 3px solid var(--ops-green);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ops-strip__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.ops-strip__item:last-child { border-right: none; }
.ops-strip__item:hover { background: rgba(255,255,255,.04); }

.ops-strip__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(2,105,2,.35);
  border: 2px solid rgba(2,105,2,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #a8e6a8;
  margin-bottom: 14px;
  transition: background .2s, transform .2s;
}
.ops-strip__item:hover .ops-strip__icon {
  background: rgba(2,105,2,.55);
  transform: scale(1.07);
}

.ops-strip__name {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ops-strip__desc {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .ops-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    align-items: center;
    text-align: center;
  }
  .ops-strip__item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════════════
   CORE FUNCTIONS
══════════════════════════════════════════════════════════ */
.ops-functions {
  background:
    linear-gradient(rgba(10,21,10,.94), rgba(10,21,10,.94)),
    url('../img/hero.png') center/cover fixed;
}

.ops-section-title {
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: 12px;
}

.ops-section-sub {
  font-size: 15px;
  color: var(--ops-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.ops-func-card {
  padding: 26px 22px;
  border-radius: var(--ops-radius);
  background: var(--ops-card-bg);
  border: 1px solid rgba(255,255,255,.08);
  height: 100%;
  transition: border-color .25s, background .25s, transform .25s;
}
.ops-func-card:hover {
  border-color: rgba(2,105,2,.45);
  background: rgba(2,105,2,.1);
  transform: translateY(-4px);
}

.ops-func-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(2,105,2,.25);
  border: 1px solid rgba(2,105,2,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #7de67d;
  margin-bottom: 16px;
  transition: background .2s, transform .2s;
}
.ops-func-card:hover .ops-func-card__icon {
  background: rgba(2,105,2,.45);
  transform: scale(1.08);
}

.ops-func-card__title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.ops-func-card__desc {
  font-size: 13px;
  color: var(--ops-text-muted);
  line-height: 1.65;
  margin: 0;
}
