/* ============================================================
   HRL INFOTECHS — about-us.css
   Page-specific styles for about-us
   Extracted from original inline <style> block + shared base from styles.css
   ============================================================ */

/* ── Shared base reset (from styles.css) ── */
*{margin:0;padding:0;box-sizing:border-box}
:root{--navy:#02006e;--mint:#5aeb9d;--dark:#121212;--white:#ffffff}
body{font-family:'Poppins',sans-serif;background:var(--dark);color:var(--white);overflow-x:hidden;min-height:100vh}

/* ── Page-specific styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #02006e;
      --mint: #5aeb9d;
      --dark: #0a0a1a;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.52);
      --font: 'Poppins', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark); color: var(--white);
      font-family: var(--font); -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body::before {
      content: ''; position: fixed; inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(2,0,110,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 75%, rgba(90,235,157,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 50% 110%, rgba(2,0,110,0.3) 0%, transparent 60%);
      pointer-events: none; z-index: 0;
    }
    body::after {
      content: ''; position: fixed; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none; z-index: 0;
    }

    /* ══ HERO ══ */
    .hero {
      position: relative; z-index: 1;
      padding: 130px 40px 90px;
      text-align: center;
      max-width: 820px; margin: 0 auto;
    }
    .hero h1 {
      font-size: clamp(40px, 6.2vw, 80px);
      font-weight: 800; line-height: 1.03;
      letter-spacing: -0.032em; color: var(--white);
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: normal; color: var(--mint); }
    .hero-sub {
      font-size: clamp(15px, 1.8vw, 17px);
      font-weight: 300; color: var(--muted);
      line-height: 1.8; max-width: 560px;
      margin: 0 auto 44px;
    }
    .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-solid {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 50px;
      background: var(--mint); color: var(--navy);
      font-family: var(--font); font-size: 14px; font-weight: 700;
      text-decoration: none; transition: all 0.22s; white-space: nowrap;
    }
    .btn-solid:hover { background: #6fffa8; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(90,235,157,0.28); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 50px;
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.22);
      font-family: var(--font); font-size: 14px; font-weight: 600;
      text-decoration: none; transition: all 0.22s; white-space: nowrap;
    }
    .btn-ghost:hover { border-color: rgba(90,235,157,0.4); color: var(--mint); }

    .hdot {
      position: absolute; border-radius: 50%;
      background: var(--mint); opacity: 0.15;
      animation: hdf 5s ease-in-out infinite;
    }
    .hstar {
      position: absolute; background: var(--mint);
      border-radius: 2px; opacity: 0.18;
      animation: hsf 6s ease-in-out infinite;
    }
    @keyframes hdf  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    @keyframes hsf  { 0%,100%{transform:rotate(45deg)} 50%{transform:rotate(45deg) translateY(-10px)} }

    /* ══ IMPACT STRIP ══ */
    .impact-strip {
      position: relative; z-index: 1;
      padding: 56px 40px;
    }
    .impact-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 16px;
    }
    .impact-card {
      background: rgba(12,12,32,0.7);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px; padding: 28px 24px;
      display: flex; flex-direction: column; gap: 14px;
      transition: border-color 0.22s, transform 0.22s;
      position: relative; overflow: hidden;
    }
    .impact-card::before {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--mint), transparent);
      opacity: 0; transition: opacity 0.22s;
    }
    .impact-card:hover { border-color: rgba(90,235,157,0.2); transform: translateY(-3px); }
    .impact-card:hover::before { opacity: 1; }
    .impact-icon {
      width: 40px; height: 40px; border-radius: 11px;
      background: rgba(2,0,110,0.6);
      border: 1px solid rgba(90,235,157,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .impact-num {
      font-size: clamp(32px, 3.8vw, 52px);
      font-weight: 800; color: var(--white);
      line-height: 1; letter-spacing: -0.03em;
    }
    .impact-num span { color: var(--mint); }
    .impact-lbl {
      font-size: 13px; font-weight: 400;
      color: rgba(255,255,255,0.5); line-height: 1.5;
    }
    .impact-tag {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600;
      color: var(--mint); letter-spacing: 0.05em;
    }
    .impact-tag::before {
      content: ''; width: 5px; height: 5px;
      border-radius: 50%; background: var(--mint);
      flex-shrink: 0;
    }

    /* ══ SHARED ══ */
    .wrap {
      max-width: 1180px; margin: 0 auto;
      padding: 96px 40px; position: relative; z-index: 1;
    }
    .sec-label {
      display: block; font-size: 11px; font-weight: 700;
      color: var(--mint); letter-spacing: 0.14em;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .sec-h {
      font-size: clamp(26px, 3.2vw, 46px);
      font-weight: 800; line-height: 1.08;
      letter-spacing: -0.025em; color: var(--white);
    }
    .sec-h em { font-style: normal; color: var(--mint); }
    .sec-p {
      font-size: 15.5px; font-weight: 300;
      color: rgba(255,255,255,0.62); line-height: 1.85;
    }
    .divider {
      height: 1px; max-width: 1180px; margin: 0 auto;
      background: linear-gradient(90deg, transparent, rgba(90,235,157,0.13), transparent);
      position: relative; z-index: 1;
    }

    /* ══ MISSION & VISION ══ */
    .mv-intro { max-width: 560px; margin-bottom: 52px; }
    .mv-intro .sec-h { margin-bottom: 16px; }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .mv-card {
      background: rgba(12,12,32,0.72);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 24px; padding: 44px 40px;
      position: relative; overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
    }
    .mv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--mint), transparent);
      opacity: 0; transition: opacity 0.25s;
    }
    .mv-card:hover { border-color: rgba(90,235,157,0.22); transform: translateY(-4px); }
    .mv-card:hover::before { opacity: 1; }
    .mv-ico {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(2,0,110,0.6); border: 1px solid rgba(90,235,157,0.22);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 22px;
    }
    .mv-title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -0.018em; }
    .mv-body { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.82; }

    /* ══ VALUES ══ */
    .val-hd { text-align: center; margin-bottom: 56px; }
    .val-hd .sec-label, .val-hd .sec-h { text-align: center; }
    .val-hd .sec-p { margin: 14px auto 0; text-align: center; max-width: 480px; }
    .val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .val-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; padding: 28px 24px;
      transition: all 0.25s;
    }
    .val-card:hover { background: rgba(90,235,157,0.04); border-color: rgba(90,235,157,0.2); transform: translateY(-4px); }
    .val-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(2,0,110,0.55); border: 1px solid rgba(90,235,157,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 21px; margin-bottom: 16px;
    }
    .val-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .val-body { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.75; }

    /* ══ TIMELINE ══ */
    .tl-hd { text-align: center; margin-bottom: 64px; }
    .tl-hd .sec-label { text-align: center; }

    .timeline { position: relative; max-width: 860px; margin: 0 auto; }
    .timeline::before {
      content: ''; position: absolute;
      left: 50%; top: 0; bottom: 0; width: 2px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, transparent 0%, rgba(90,235,157,0.25) 8%, rgba(90,235,157,0.25) 92%, transparent 100%);
    }

    .tl-row {
      display: grid; grid-template-columns: 1fr 44px 1fr;
      margin-bottom: 48px; align-items: start;
    }
    .tl-row:last-child { margin-bottom: 0; }
    .tl-dot-col { display: flex; justify-content: center; padding-top: 24px; }
    .tl-dot {
      width: 16px; height: 16px; border-radius: 50%;
      background: var(--mint); flex-shrink: 0;
      box-shadow: 0 0 0 5px rgba(90,235,157,0.12), 0 0 0 10px rgba(90,235,157,0.05);
    }
    .tl-card {
      background: rgba(12,12,32,0.75);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; padding: 24px 26px;
      transition: border-color 0.22s;
    }
    .tl-card:hover { border-color: rgba(90,235,157,0.22); }
    .tl-left { padding-right: 28px; text-align: right; }
    .tl-right { padding-left: 28px; text-align: left; }
    .tl-empty { /* spacer */ }
    .tl-date { font-size: 11px; font-weight: 700; color: var(--mint); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 7px; }
    .tl-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
    .tl-body { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.52); line-height: 1.72; }
    .tl-badge {
      display: inline-block; margin-top: 12px;
      padding: 4px 13px; border-radius: 50px;
      background: rgba(90,235,157,0.1); border: 1px solid rgba(90,235,157,0.2);
      font-size: 11.5px; font-weight: 600; color: var(--mint);
    }

    /* ══ WHY BAND ══ */
    .why-band {
      background: rgba(2,0,110,0.1);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: relative; z-index: 1;
    }
    .why-inner {
      max-width: 1180px; margin: 0 auto; padding: 96px 40px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    .why-copy .sec-h { margin-bottom: 18px; }
    .why-copy .sec-p { max-width: 100%; }
    .why-list { display: flex; flex-direction: column; gap: 12px; }
    .why-row {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 18px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px; transition: all 0.22s;
    }
    .why-row:hover { border-color: rgba(90,235,157,0.2); background: rgba(90,235,157,0.04); }
    .why-ico {
      width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
      background: rgba(2,0,110,0.6); border: 1px solid rgba(90,235,157,0.2);
      display: flex; align-items: center; justify-content: center; font-size: 16px;
    }
    .why-row-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
    .why-row-desc { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.62; }

    /* ══ BOTTOM CTA ══ */
    .cta-wrap { max-width: 1180px; margin: 0 auto; padding: 80px 40px 100px; position: relative; z-index: 1; }
    .cta-box {
      background: linear-gradient(135deg, rgba(2,0,110,0.55) 0%, rgba(10,10,26,0.7) 100%);
      border: 1px solid rgba(90,235,157,0.18);
      border-radius: 28px; padding: 76px 80px;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: ''; position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(90,235,157,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-h {
      font-size: clamp(28px, 3.8vw, 52px);
      font-weight: 800; color: var(--white);
      letter-spacing: -0.028em; line-height: 1.08;
      margin-bottom: 16px; position: relative; z-index: 1;
    }
    .cta-h em { font-style: normal; color: var(--mint); }
    .cta-sub {
      font-size: 16px; font-weight: 300; color: var(--muted);
      line-height: 1.78; max-width: 460px; margin: 0 auto 36px;
      position: relative; z-index: 1;
    }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .val-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 900px) {
      .hero { padding: 108px 24px 72px; }
      .wrap { padding: 72px 24px; }
      .impact-inner { grid-template-columns: repeat(2,1fr); }
      .impact-strip { padding: 40px 24px; }
      .mv-grid { grid-template-columns: 1fr; }
      /* timeline: single column */
      .timeline::before { left: 20px; transform: none; }
      .tl-row { grid-template-columns: 40px 1fr; }
      .tl-left, .tl-right { text-align: left; padding: 0 0 0 18px; grid-column: 2; grid-row: 1; }
      .tl-dot-col { grid-column: 1; grid-row: 1; justify-content: flex-start; padding-left: 12px; }
      .tl-empty { display: none; }
      .why-inner { grid-template-columns: 1fr; gap: 44px; padding: 72px 24px; }
      .cta-wrap { padding: 60px 24px 80px; }
      .cta-box { padding: 52px 36px; }
    }
    @media (max-width: 600px) {
      .hero { padding: 100px 20px 60px; }
      .wrap { padding: 56px 20px; }
      .impact-strip { padding: 32px 20px; }
      .val-grid { grid-template-columns: 1fr; }
      .why-inner { padding: 56px 20px; }
      .cta-wrap { padding: 48px 20px 64px; }
      .cta-box { padding: 40px 24px; }
      .timeline::before { left: 16px; }
      .tl-dot-col { padding-left: 8px; }
      .tl-left, .tl-right { padding-left: 14px; }
    }
