:root {
    --primary: #1F2E88;
    --primary-dark: #0284c7;
    --secondary: #0284c7;
    --background: #f0f9ff;
    --foreground: #0c2d4a;
    --card: #ffffff;
    --muted: #222;
    --border: #e2e8f0;
    --radius: 0.5rem;
    --light-bg: #f0f5f7;
    --card-shadow: rgba(0,0,0,0.02) 0px 1px 3px 0px, rgba(27,31,35,0.15) 0px 0px 0px 1px;
    --f-base:  "Poppins", sans-serif;
    --f-second: "Inter", sans-serif;
    --f-third: "Audiowide", sans-serif;
  }


  @font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_28pt-Regular.woff2') format('woff2'),
         url('/assets/fonts/Inter_28pt-Regular.woff') format('woff'),
         url('/assets/fonts/Inter_28pt-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2'),
         url('/assets/fonts/Poppins-Regular.woff') format('woff'),
         url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }

  @font-face {
    font-family: 'Audiowide';
    src: url('/assets/fonts/Audiowide-Regular.woff2') format('woff2'),
         url('/assets/fonts/Audiowide-Regular.woff') format('woff'),
         url('/assets/fonts/Audiowide-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }



  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    /* font-family: 'DM Sans', sans-serif; */
    font-family: var(--f-second);
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
  }

  .a-p-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ── HERO ── */
  .a-p-hero {
    position: relative;
    background: var(--primary);
    overflow: hidden;
    padding: 130px 0 80px;
  }
  .a-p-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(2,132,199,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(2,132,199,0.2) 0%, transparent 60%);
  }
  .a-p-hero::after {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    top: -160px; right: -100px;
  }
  .a-p-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .a-p-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    color: #bfdbfe;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .a-p-hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: #38bdf8; display: inline-block; animation: a-p-pulse 1.8s infinite; }
  @keyframes a-p-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
  .a-p-hero h2 {
    /* font-family: 'Playfair Display', serif; */
    /* font-size: clamp(2.4rem, 5vw, 3.8rem); */
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .a-p-hero h2 em { color: #7dd3fc; font-style: normal; }
  .a-p-hero p {
    color: #bfdbfe;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }
  .a-p-hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .a-p-hero-stat-val {
    /* font-family: 'Playfair Display', serif; */
    font-family: var(--f-second);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .a-p-hero-stat-label { font-size: 0.78rem; color: #93c5fd; margin-top: 0.25rem; letter-spacing: 0.04em; text-transform: uppercase; }

  .a-p-hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
  .a-p-hero-img-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  }
  .a-p-hero-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .a-p-hero-img-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .a-p-hero-img-badge svg { color: var(--secondary); flex-shrink: 0; }
  .a-p-hero-img-badge strong { display: block; font-size: 0.95rem; color: var(--foreground); }
  .a-p-hero-img-badge span { font-size: 0.75rem; color: #64748b; }

  /* ── MISSION ── */
  .a-p-section { padding: 90px 0; }
  .a-p-section-tag {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1rem;
  }
  .a-p-section-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .a-p-section-title span{
    color: var(--primary);
  }



  .a-p-section-sub {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 600px;
  }

  .a-p-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .a-p-mission-image-stack {
    position: relative;
    height: 480px;
  }
  .a-p-mission-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 85%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31,46,136,0.15);
  }
  .a-p-mission-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .a-p-mission-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    border-radius: 1rem;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  .a-p-mission-img-accent img { width: 100%; height: 100%; object-fit: cover; }
  .a-p-mission-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 12px rgba(31,46,136,0.12);
    color: #fff;
    z-index: 10;
  }
  .a-p-values-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
  .a-p-value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .a-p-value-item:hover { box-shadow: 0 8px 24px rgba(31,46,136,0.1); transform: translateY(-2px); }
  .a-p-value-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #eff6ff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
  }
  .a-p-value-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--foreground); }
  .a-p-value-item p { font-size: 0.82rem; color: #64748b; line-height: 1.5; }

  /* ── STATS BAND ── */
  .a-p-stats-band {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }
  .a-p-stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(2,132,199,0.4) 0%, transparent 70%);
  }
  .a-p-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
  }
  .a-p-stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
    transition: background 0.3s;
  }
  .a-p-stat-card:hover { background: rgba(255,255,255,0.12); }
  .a-p-stat-card .a-p-num {
    /* font-family: 'Playfair Display', serif; */
    font-family: var(--f-second);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .a-p-stat-card .a-p-num sup { font-size: 1.2rem; vertical-align: super; }
  .a-p-stat-card .a-p-lbl { font-size: 0.82rem; color: #93c5fd; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }

  /* ── WHY US ── */
  .a-p-why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .a-p-why-card {
    background: var(--card);
    border-radius: 1.1rem;
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  /* .a-p-why-card::before {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.06;
    top: -30px; right: -30px;
    transition: opacity 0.3s, transform 0.4s;
  } */
  .a-p-why-card:hover::before { opacity: 0.12; transform: scale(1.3); }
  .a-p-why-card:hover { box-shadow: 0 12px 36px rgba(31,46,136,0.1); transform: translateY(-3px); }
  .a-p-why-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(31,46,136,0.3);
  }

  .a-p-why-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.6rem; }
  .a-p-why-card p { font-size: 0.85rem; color: #64748b; line-height: 1.65; }

  /* ── TIMELINE ── */
  .a-p-timeline-section { background: var(--light-bg); }
  .a-p-timeline { position: relative; margin-top: 3.5rem; max-width: 800px; margin-left: auto; margin-right: auto; }
  .a-p-timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
  }
  .a-p-tl-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
  }
  .a-p-tl-item:nth-child(odd) { flex-direction: row-reverse; }
  .a-p-tl-item:nth-child(odd) .a-p-tl-content { text-align: right; }
  .a-p-tl-dot {
    position: absolute;
    left: 50%; top: 1rem;
    transform: translate(-50%, 0);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--background);
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
  }
  .a-p-tl-year {
    min-width: 80px;
    /* font-family: 'Playfair Display', serif; */
    font-family: var(--f-second);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 0.65rem;
    text-align: center;
    flex: 1;
  }
  .a-p-tl-content {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--card-shadow);
  }
  .a-p-tl-content h4 { font-size: 0.95rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.3rem; }
  .a-p-tl-content p { font-size: 0.8rem; color: #64748b; line-height: 1.6; }

  /* ── CTA ── */
  .a-p-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4fa0 50%, var(--secondary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .a-p-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .a-p-cta-section h2 {
    /* font-family: 'Playfair Display', serif; */
    font-family: var(--f-second);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
  }
  .a-p-cta-section p { color: #bfdbfe; max-width: 500px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.7; position: relative; }
  .a-p-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
  .a-p-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    border: none;
    /* font-family: 'DM Sans', sans-serif; */
    font-family: var(--f-second);
  }
  .a-p-btn-white { background: #fff; color: var(--primary); }
  .a-p-btn-white:hover { background: #f0f9ff; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  .a-p-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
  .a-p-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

  /* ── ANIMATIONS ── */
  .a-p-reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .a-p-reveal.a-p-visible { opacity: 1; transform: translateY(0); }
  .a-p-reveal-delay-1 { transition-delay: 0.1s; }
  .a-p-reveal-delay-2 { transition-delay: 0.2s; }
  .a-p-reveal-delay-3 { transition-delay: 0.3s; }
  .a-p-reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .a-p-stats-grid { grid-template-columns: repeat(2,1fr); }
    .a-p-why-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 768px) {
    .a-p-hero-inner, .a-p-mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .a-p-hero-image-wrap { justify-content: center; }
    .a-p-hero-img-card { max-width: 100%; }
    .a-p-mission-image-stack { height: 320px; }
    .a-p-timeline::before { left: 20px; }
    .a-p-tl-item, .a-p-tl-item:nth-child(odd) { flex-direction: row; }
    .a-p-tl-item:nth-child(odd) .a-p-tl-content { text-align: left; }
    .a-p-tl-dot { left: 20px; }
    .a-p-tl-year { min-width: 60px; font-size: 1.1rem; padding-left: 2.5rem; }
    .a-p-tl-content { margin-left: 1rem; }
    .a-p-why-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .a-p-stats-grid { grid-template-columns: 1fr 1fr; }
    .a-p-hero-stats { gap: 1.5rem; }
    .a-p-container { padding: 0 1.25rem; }
    .a-p-section { padding: 60px 0; }
  }