
    /* ── Page-level overrides ── */
    body { font-family: 'Poppins', sans-serif; }

    /* ── Hero Banner ── */
    .about-hero {
      position: relative;
      /* min-height: 420px; */
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      /* background: #07090d; */
      /* background: linear-gradient(135deg,
    rgba(3, 26, 48, 0.96),
    rgba(46, 65, 112, 0.87),
    rgba(3, 26, 48, 0.96)); */
    background: linear-gradient(135deg, #031a30, #0b1d3a, #031a30);
    }
    .about-hero__bg {
      position: absolute;
      inset: 0;
      /* background: url('assets/img/about-hero.jpg') center/cover no-repeat; */
      filter: brightness(.45) saturate(1.1);
    }
    .about-hero__inner {
      position: relative;
      padding: 80px 0 56px;
    }
    .about-hero h1 {
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin: 0 0 14px;
    }
    .about-hero p {
      color: rgba(255,255,255,.75);
      font-size: 16px;
      max-width: 60ch;
      margin: 0;
    }
    .breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: 13px; }
    .breadcrumb-item.active { color: var(--secondary, #c9a84c); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

    /* ── Stat Strip ── */
    .stat-strip {
      background: #0b1d3a;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .stat-strip__item {
      text-align: center;
      padding: 10px 0;
      border-right: 1px solid rgba(255,255,255,.10);
    }
    .stat-strip__item:last-child { border-right: none; }
    .stat-strip__num {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: #c9a84c;
      line-height: 1;
    }
    .stat-strip__label {
      display: block;
      font-size: 12px;
      color: rgba(255,255,255,.60);
      margin-top: 5px;
    }

    /* ── Section helpers ── */
    .about-kicker {
      color: #c9a84c;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 6px;
      display: block;
    }
    .about-h2 {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      line-height: 1.2;
      margin: 0 0 16px;
    }
    .about-lead {
      font-size: 15px;
      line-height: 1.75;
      color: #555;
    }

    /* ── Content Image ── */
    .content-img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }
    .content-img-sm {
      height: 300px;
    }

    /* ── Feature list ── */
    .feature-list { list-style: none; padding: 0; margin: 0; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 14px;
      color: #c9a84c;
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li i {
      color: #c9a84c;
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* ── Info Card ── */
    .info-card {
      background: #fff;
      border: 1px solid rgba(11,29,58,.09);
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 6px 28px rgba(0,0,0,.06);
      height: 100%;
    }
    .info-card__icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(201,168,76,.12);
      color: #c9a84c;
      display: grid;
      place-items: center;
      font-size: 20px;
      margin-bottom: 16px;
    }
    .info-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin: 0 0 8px;
    }
    .info-card p {
      font-size: 14px;
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    /* ── Dark section ── */
    .section-dark {
      background: linear-gradient(135deg, #031a30, #0b1d3a, #031a30);
      color: #fff;
      padding: 80px 0;
    }
    .section-dark .about-h2 { color: #fff; }
    .section-dark .about-lead { color: rgba(255,255,255,.70); }

    /* ── Light section ── */
    .section-light {
      background: #f8f9fb;
      padding: 80px 0;
    }

    /* ── White section ── */
    .section-white {
      background: #fff;
      padding: 80px 0;
    }

    .reveal img{
        border:2px solid #0b1d3a;
    }

    .reveal h2{
        color: #0b1d3a;
    }

    /* ── ISO Badge ── */
    .iso-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(201,168,76,.12);
      border: 1px solid rgba(201,168,76,.30);
      border-radius: 12px;
      padding: 12px 18px;
      margin-top: 20px;
    }
    .iso-badge i { color: #c9a84c; font-size: 20px; }
    .iso-badge span { font-size: 13px; font-weight: 600; color: #333; }

    /* ── CTA strip ── */
    .cta-strip {
      background: #c9a84c;
      padding: 48px 0;
    }
    .cta-strip h3 {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 700;
      color: #111;
      margin: 0;
    }
    .cta-strip p { color: rgba(0,0,0,.65); margin: 8px 0 0; font-size: 15px; }
    .btn-dark-solid {
      background: #0b1d3a;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      display: inline-block;
      transition: .2s;
    }
    .btn-dark-solid:hover { background: #0d2347; color: #fff; }

    /* ── Responsive tweaks ── */
    @media (max-width: 768px) {
      .content-img, .content-img-sm { height: 240px; border-radius: 12px; }
      .stat-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .stat-strip__item:last-child { border-bottom: none; }
      .section-dark, .section-light, .section-white { padding: 52px 0; }
      .info-card { margin-bottom: 16px; }
      .about-hero { min-height: 180px; }
    }

    @media (max-width: 480px) {
      .content-img, .content-img-sm { height: 200px; }
      .about-hero__inner { padding: 60px 0 40px; }
    }





    /* ── Interior Advantages ────────────── */
.interior-advantages {
  margin-top: 24px;
}

.interior-advantages__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1d3a;
  margin-bottom: 4px;
}

.adv-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fb;
  border: 1px solid rgba(11, 29, 58, .09);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  transition: .2s ease;
  height: 100%;
}

.adv-pill:hover {
  background: rgba(201, 168, 76, .08);
  border-color: rgba(201, 168, 76, .35);
  color: #fff;
}

.adv-pill i {
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────── */
@media (max-width: 576px) {
  .adv-pill {
    font-size: 12px;
    padding: 8px 10px;
    gap: 6px;
  }

  .adv-pill i {
    font-size: 12px;
  }

  .interior-advantages__title {
    font-size: 14px;
  }
}