/*
 *   @copyright   Copyright (C) 2026 Dynamowebs Private Limited. All rights reserved.
 *   @license     Proprietary and Confidential. Unauthorized copying, distribution, or modification
 *                via any medium is strictly prohibited.
 *   @author      Faisal mehmood awan <faisal.aqurz@gmail.com> | Imran Khan <imran@dynamowebs.com>
 *   @file        site-page-about-us-v2.css
 *   @modified    2026
 *   @package     Dynamowebs
 *
 */
  /* ── TOKENS ──────────────────────────────────────────────────── */
  :root {
    --navy:      #0D2240;
    --blue:      #1B75BC;
    --cyan:      #00AEEF;
    --light-bg:  #F5F8FC;
    --white:     #FFFFFF;
    --grey:      #555E68;
    --border:    #D9E3EC;
    --text:      #0D2240;
    --muted:     #6B7A8D;
    --font:      'Inter', system-ui, sans-serif;
  }

  /* ── BASE ────────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: var(--font); color: var(--text); background: var(--white); }
  img  { max-width: 100%; }
  a    { text-decoration: none; color: inherit; }

  /* ── HERO ────────────────────────────────────────────────────── */
  .au-hero {
    background: var(--navy);
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .au-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 60%, rgba(0,174,239,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .au-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,174,239,0.12); border: 1px solid rgba(0,174,239,0.25);
    border-radius: 100px; padding: 5px 16px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 24px;
  }
  .au-hero h1 {
    font-size: clamp(32px, 5.5vw, 54px); font-weight: 800; line-height: 1.08;
    letter-spacing: -0.03em; color: #fff; text-wrap: balance; margin-bottom: 18px;
  }
  .au-hero h1 em { font-style: normal; color: var(--cyan); }
  .au-hero-sub {
    font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.62);
    line-height: 1.65; max-width: 560px; margin: 0 auto;
  }

  /* ── STATS BAR ───────────────────────────────────────────────── */
  .au-stats-bar {
    background: var(--blue);
    padding: 0 40px;
  }
  .au-stats-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .au-stat {
    padding: 26px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .au-stat:last-child { border-right: none; }
  .au-stat-num {
    font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.02em;
    line-height: 1; margin-bottom: 4px;
  }
  .au-stat-num span { color: var(--cyan); }
  .au-stat-label {
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em; text-transform: uppercase;
  }

  /* ── SECTION WRAPPER ─────────────────────────────────────────── */
  .au-section { padding: 72px 40px; }
  .au-section-alt { background: var(--light-bg); }
  .au-section-dark { background: var(--navy); }
  .au-inner { max-width: 900px; margin: 0 auto; }

  .au-section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 10px;
  }
  .au-section-title {
    font-size: clamp(24px, 4vw, 36px); font-weight: 800; letter-spacing: -0.025em;
    color: var(--navy); line-height: 1.15; text-wrap: balance; margin-bottom: 16px;
  }
  .au-section-dark .au-section-title { color: #fff; }
  .au-section-body {
    font-size: 15px; font-weight: 500; color: var(--muted); line-height: 1.7;
    max-width: 620px;
  }
  .au-section-dark .au-section-body { color: rgba(255,255,255,0.62); }

  /* ── STORY / TIMELINE ────────────────────────────────────────── */
  .au-story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px 64px;
    align-items: start; margin-top: 48px;
  }
  .au-story-text p { font-size: 15px; font-weight: 500; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
  .au-story-text p:last-child { margin-bottom: 0; }

  /* Timeline */
  .au-timeline { display: flex; flex-direction: column; gap: 0; }
  .au-tl-item { display: flex; gap: 20px; align-items: flex-start; }
  .au-tl-line {
    display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
    width: 36px;
  }
  .au-tl-dot {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--blue); color: #fff;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .au-tl-dot.au-cyan { background: var(--cyan); color: var(--navy); }
  .au-tl-connector {
    width: 2px; flex: 1; min-height: 36px;
    background: var(--border); margin: 4px 0;
  }
  .au-tl-content { padding-bottom: 32px; padding-top: 6px; }
  .au-tl-item:last-child .au-tl-content { padding-bottom: 0; }
  .au-tl-date { font-size: 11px; font-weight: 700; color: var(--cyan); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 5px; }
  .au-tl-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
  .au-tl-desc  { font-size: 13px; font-weight: 500; color: var(--muted); line-height: 1.65; }

  /* ── SERVICES GRID ───────────────────────────────────────────── */
  .au-services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
  }
  .au-svc-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 22px 20px; transition: box-shadow 0.2s, border-color 0.2s;
  }
  .au-svc-card:hover { box-shadow: 0 4px 20px rgba(27,117,188,0.10); border-color: rgba(27,117,188,0.3); }
  .au-svc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(0,174,239,0.10); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
  }
  .au-svc-icon svg { width: 20px; height: 20px; }
  .au-svc-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
  .au-svc-desc  { font-size: 12px; font-weight: 500; color: var(--muted); line-height: 1.6; }

  /* ── WHY US ──────────────────────────────────────────────────── */
  .au-why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px;
  }
  .au-why-item { display: flex; gap: 16px; align-items: flex-start; }
  .au-why-tick {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(0,174,239,0.12); color: var(--cyan);
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .au-why-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 4px; }
  .au-why-desc  { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* ── TEAM ────────────────────────────────────────────────────── */
  .au-team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
  }
  .au-team-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 24px 16px; text-align: center;
    transition: box-shadow 0.2s;
  }
  .au-team-card:hover { box-shadow: 0 4px 24px rgba(27,117,188,0.10); }
  .au-team-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--navy); color: #fff;
    font-size: 22px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .au-team-avatar.au-cyan { background: var(--cyan); color: var(--navy); }
  .au-team-avatar.au-blue { background: var(--blue); color: #fff; }
  .au-team-name  { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
  .au-team-role  { font-size: 11px; font-weight: 600; color: var(--cyan); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
  .au-team-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--light-bg); border: 1px solid var(--border);
    border-radius: 100px; padding: 3px 10px;
    font-size: 10px; font-weight: 700; color: var(--muted);
  }
  .au-team-more {
    background: var(--light-bg); border: 2px dashed var(--border);
    border-radius: 14px; padding: 24px 16px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
  }
  .au-team-more-num { font-size: 26px; font-weight: 800; color: var(--blue); }
  .au-team-more-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

  /* ── LOCATION ────────────────────────────────────────────────── */
  .au-location-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px;
  }
  .au-location-detail { display: flex; flex-direction: column; gap: 20px; }
  .au-loc-item { display: flex; gap: 14px; align-items: flex-start; }
  .au-loc-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(27,117,188,0.10); color: var(--blue);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .au-loc-icon svg { width: 18px; height: 18px; }
  .au-loc-label { font-size: 11px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .au-loc-value { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.5; }
  .au-loc-value a { color: var(--blue); border-bottom: 1px solid var(--border); }
  .au-loc-value a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

  /* ── MAP (real-time lazy-loaded iframe, same style as /get-in-touch) ── */
  .au-map-embed {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--light-bg);
    line-height: 0;
  }
  .au-map-frame { display: block; width: 100%; height: 260px; border: 0; }
  @media (max-width: 860px) { .au-map-embed { max-width: 100%; } }

  /* ── CTA BAND ────────────────────────────────────────────────── */
  .au-cta-band {
    background: var(--blue); padding: 52px 40px; text-align: center;
  }
  .au-cta-band h2 {
    font-size: clamp(22px, 4vw, 32px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; margin-bottom: 10px;
  }
  .au-cta-band p { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.72); margin-bottom: 28px; }
  .au-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .au-btn-primary {
    background: var(--cyan); color: var(--navy);
    padding: 13px 28px; border-radius: 100px;
    font-size: 14px; font-weight: 800;
    border: none; cursor: pointer; transition: opacity 0.15s;
  }
  .au-btn-primary:hover { opacity: 0.88; }
  .au-btn-outline {
    background: transparent; color: #fff;
    padding: 12px 26px; border-radius: 100px;
    font-size: 14px; font-weight: 700;
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer; transition: border-color 0.15s;
  }
  .au-btn-outline:hover { border-color: rgba(255,255,255,0.7); }

  /* ── RESPONSIVE ──────────────────────────────────────────────── */
  @media (max-width: 860px) {
    .au-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .au-stat:nth-child(2) { border-right: none; }
    .au-story-grid, .au-location-grid { grid-template-columns: 1fr; gap: 32px; }
    .au-services-grid { grid-template-columns: repeat(2, 1fr); }
    .au-team-grid { grid-template-columns: repeat(2, 1fr); }
    .au-why-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 540px) {
    .au-section { padding: 52px 20px; }
    .au-hero { padding: 56px 20px 52px; }
    .au-stats-bar { padding: 0 20px; }
    .au-services-grid { grid-template-columns: 1fr; }
    .au-team-grid { grid-template-columns: 1fr 1fr; }
    .au-cta-band { padding: 44px 20px; }
  }
