
.about-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
}



@keyframes about-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.5);
    }
}

.ah-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.ah-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 36px;
}



.ah-stat {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: 14px 22px;
    backdrop-filter: blur(6px);
    text-align: center;
    min-width: 120px;
}

.ah-stat-val {
    font-family: 'Manrope', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}

.ah-stat-val span {
    color: #60a5fa;
}

.ah-stat-lbl {
    font-size: .73rem;
    color: rgba(255, 255, 255, .6);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* ── 2. MISSION SECTION ──────────────────────────── */
.about-mission {
    padding: 88px 0;
    background: var(--white);
}

.am-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}



.am-left h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.am-left h2 span {
    color: var(--blue);
}

.am-left p {
    font-size: .98rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.am-left p+p {
    margin-top: 0;
}

.am-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Brochure download button — slightly different style */
.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    cursor: pointer;
}

.btn-brochure:hover {
    background: var(--blue-mid);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, .28);
}

.btn-brochure .bi {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Right side visual card */
.am-right {}

.am-card {
    background: var(--blue);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern */
.am-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 22px 22px;
}

.am-card-inner {
    position: relative;
    z-index: 2;
}

.am-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 24px;
}

.am-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.am-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    transition: background .2s;
}

.am-value-item:hover {
    background: rgba(255, 255, 255, .13);
}

.am-value-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.am-value-text strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.am-value-text span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
}

/* ── 3. WHAT WE DO SECTION ───────────────────────── */
.about-pillars {
    padding: 80px 0;
    background: var(--bg);
}





.ap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 30px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.ap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.ap-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.ap-card:hover::before {
    transform: scaleX(1);
}

.ap-num {
    font-family: 'Manrope', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 100px;
    padding: 3px 11px;
    display: inline-block;
    margin-bottom: 20px;
}

.ap-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: background .25s, color .25s;
}

.ap-card:hover .ap-icon {
    background: var(--blue);
    color: #fff;
}

.ap-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.ap-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.ap-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    margin-top: 22px;
    transition: gap .18s;
}

.ap-link:hover {
    gap: 10px;
    color: var(--blue);
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.au-fade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.au-fade.in {
    opacity: 1;
    transform: translateY(0);
}

.au-d1 {
    transition-delay: .1s;
}

.au-d2 {
    transition-delay: .2s;
}

.au-d3 {
    transition-delay: .3s;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .am-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ap-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: auto;
    }

    .about-hero-inner {
        padding: 80px 0 60px;
    }



    .ah-stat {
        min-width: 100px;
        padding: 12px 16px;
    }

    .about-mission {
        padding: 56px 0;
    }

    .about-pillars {
        padding: 56px 0;
    }
}

@media (max-width: 575px) {
    .am-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}








.about-history {
    padding: 88px 0;
    background: var(--white);
}

/* Section header */
.about-history .ah2-header {
    margin-bottom: 52px;
}

/* ── TIMELINE ───────────────────────────────────────── */
.about-history .ah2-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 72px;
    max-width: 860px;
}

.about-history .ah2-item {
    display: grid;
    grid-template-columns: 160px 48px 1fr;
    gap: 0;
    align-items: flex-start;
}

/* Year label column */
.about-history .ah2-year-col {
    padding-top: 2px;
    padding-right: 16px;
    text-align: right;
}

.about-history .ah2-year {
    font-family: 'Manrope', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    border-radius: 100px;
    padding: 4px 12px;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: .02em;
}

/* Centre connector: dot + vertical line */
.about-history .ah2-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.about-history .ah2-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    flex-shrink: 0;
    margin-top: 4px;
    z-index: 1;
    transition: background .2s;
}

/* Active (last) dot is solid filled */
.about-history .ah2-dot-active {
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-light);
}

.about-history .ah2-line {
    width: 2px;
    flex: 1;
    min-height: 48px;
    background: var(--border);
    margin-top: 4px;
}

.about-history .ah2-item:hover .ah2-dot {
    background: var(--blue);
}

/* Content column */
.about-history .ah2-content {
    padding: 0 0 44px 20px;
}

.about-history .ah2-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    margin-top: 1px;
}

.about-history .ah2-content p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* No bottom padding on last item */
.about-history .ah2-item:last-child .ah2-content {
    padding-bottom: 0;
}

/* ── OUTREACH NUMBERS ───────────────────────────────── */
.about-history .ah2-outreach {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
}

.about-history .ah2-outreach-header {
    margin-bottom: 36px;
    text-align: center;
}

.about-history .ah2-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.about-history .ah2-stat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 16px 22px;
    text-align: center;
    transition: box-shadow .22s, transform .22s, border-color .22s;
}

.about-history .ah2-stat:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--blue);
}

.about-history .ah2-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 14px;
    transition: background .22s, color .22s;
}

.about-history .ah2-stat:hover .ah2-stat-icon {
    background: var(--blue);
    color: var(--white);
}

.about-history .ah2-stat-val {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.about-history .ah2-stat-val span {
    color: var(--blue);
    font-size: 1.6rem;
}

.about-history .ah2-stat-lbl {
    font-family: 'Manrope', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
}



/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
    .about-history .ah2-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .about-history {
        padding: 56px 0;
    }

    .about-history .ah2-item {
        grid-template-columns: 0 36px 1fr;
    }

    .about-history .ah2-year-col {
        display: none;
    }

    /* Show year inside content on mobile */
    .about-history .ah2-content::before {
        content: attr(data-year);
        display: inline-block;
        font-family: 'Manrope', sans-serif;
        font-size: .75rem;
        font-weight: 700;
        color: var(--blue);
        background: var(--blue-light);
        border-radius: 100px;
        padding: 3px 11px;
        margin-bottom: 8px;
    }

    .about-history .ah2-outreach {
        padding: 32px 20px;
    }

    .about-history .ah2-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── TIMELINE MOBILE FIX (≤ 762px) ─────────────────── */

@media (max-width: 762px) {

    .about-history .ah2-timeline {
      padding-left: 0;
    }
  
    .about-history .ah2-item {
      grid-template-columns: 36px 1fr;  /* dot column + content only */
      gap: 0;
    }
  
    /* Hide the year column entirely */
    .about-history .ah2-year-col {
      display: none;
    }
  
    /* Connector stays as first column */
    .about-history .ah2-connector {
      grid-column: 1;
    }
  
    /* Content takes second column */
    .about-history .ah2-content {
      grid-column: 2;
      padding-left: 16px;
    }
  
    /* Show year as a pill inside the content box */
    .about-history .ah2-content::before {
      content: attr(data-year);
      display: inline-block;
      font-family: 'Manrope', sans-serif;
      font-size: .73rem;
      font-weight: 700;
      color: var(--blue);
      background: var(--blue-light);
      border-radius: 100px;
      padding: 3px 11px;
      margin-bottom: 8px;
    }
  
  }

@media (max-width: 480px) {
    .about-history .ah2-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-history .ah2-stat-val {
        font-size: 1.8rem;
    }
}