/* about-us.css */
/* v1.0 - February 2026 - matching new About page redesign */

:root {
    --primary: #008EB2;
    --primary-dark: #006B88;
    --primary-light: #00A5D1;
    --light-bg: #F8FAFC;
    --dark-text: #1E293B;
    --muted-text: #64748B;
    --border-radius: 16px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark-text);
}

/* ==============================================
   HERO
============================================== */
.about-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 0 10rem;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 142, 178, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 7.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1.6rem;
}

.hero-content .lead {
    font-size: 2.6rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ==============================================
   OUR STORY + TIMELINE
============================================== */
.section-our-story {
    padding: 12rem 0;
}

.timeline {
    position: relative;
    padding-left: 4.8rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.4rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4.8rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.4rem;
    top: 0.8rem;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.timeline-content {
    font-size: 2.4rem;
    line-height: 1.6;
    color: var(--muted-text);
}

/* ==============================================
   MISSION + CORE VALUES
============================================== */
.section-mission {
    padding: 12rem 0;
}

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3.2rem 2.8rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 142, 178, 0.12);
}

.value-icon {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
    line-height: 1;
}

.value-card h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.value-card p {
    font-size: 2.4rem;
    line-height: 1.6;
    color: var(--muted-text);
}

/* ==============================================
   GLOBAL PRESENCE
============================================== */
.section-global {
    padding: 12rem 0;
}

.location-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 3.2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.country-flag {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
    line-height: 1;
}

.location-card h4 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

/* ==============================================
   INFRASTRUCTURE & SECURITY
============================================== */
.section-infra {
    padding: 12rem 0;
}

.metric-card,
.metric-big {
    font-size: 5.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.metric-label {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.security-list {
    list-style: none;
    padding: 0;
    font-size: 1.9rem;
    line-height: 2.2;
}

.security-list li {
    margin-bottom: 1.6rem;
}

/* ==============================================
   LEADERSHIP
============================================== */
.section-leadership {
    padding: 12rem 0;
}

.leader-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3.2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    background: #E2F0F5;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.6rem; overflow: hidden;
}
.leader-avatar img{height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transform: scaleX(-1);}
.leader-card h5 {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
}

.leader-card small {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1.6rem;
}

/* ==============================================
   TEAM METRICS
============================================== */
.section-metrics {
    padding: 10rem 0;
}

.metric-big {
    font-size: 7.2rem;
}

/* ==============================================
   CULTURE / WHY OUR TEAM STAYS
============================================== */
.section-culture {
    padding: 12rem 0;
    color: white;
}
.section-culture .row>*{margin-bottom: var(--bs-gutter-y);}
.culture-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    padding: 3.2rem;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.culture-card img{margin-bottom: 10px;}
/* ==============================================
   FINAL CTA
============================================== */
.section-final-cta {
    padding: 12rem 0;
}

/* ==============================================
   RESPONSIVE ADJUSTMENTS
============================================== */
@media (max-width: 1199px) {
    .hero-content h1 { font-size: 6rem; }
    .timeline { padding-left: 3.2rem; }
    .timeline::before { left: 1.6rem; }
    .timeline-dot { left: -1.6rem; }
}

@media (max-width: 991px) {
    .about-hero { min-height: 50vh; padding: 10rem 0 8rem; }
    .hero-content h1 { font-size: 5.2rem; }
    .section-our-story,
    .section-mission,
    .section-global,
    .section-infra,
    .section-leadership,
    .section-culture { padding: 8rem 0; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 4.4rem; }
    .hero-content .lead { font-size: 2.2rem; }
    .timeline-year { font-size: 2.8rem; }
    .metric-card,
    .metric-big
    
    /* Hero - match reference dark gradient + large centered text */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 14rem 0 10rem;
    position: relative;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 142, 178, 0.08) 0%, transparent 60%);
}

.hero-content h1 {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.6rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 3.2rem;
    font-weight: 500;
    color: #60a5fa;          /* blue accent like reference */
    opacity: 0.95;
}

/* OUR STORY badge - pink/rose pill */
.our-story-badge {
    background: #ec4899;     /* rose/pink from reference */
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

/* Timeline - RIGHT SIDE, blue line, large years */
.timeline-container {
    padding-left: 6rem;
    position: relative;
    min-height: 800px;       /* stretch to match content height */
}

.timeline-line {
    position: absolute;
    left: 2.4rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ef4444 0%, #3b82f6 100%); /* red-to-blue like ref */
    border-radius: 2px;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
    padding-left: 1.2rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
    font-size: 5.2rem;
    font-weight: 900;
    color: #3b82f6;          /* blue years */
    line-height: 1;
    margin-bottom: 0.8rem;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -3.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 5px solid #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(59,130,246,0.2);
}

.timeline-content {
    font-size: 2.1rem;
    line-height: 1.5;
    color: #475569;
}

/* Fix for mobile - stack vertically */
@media (max-width: 991px) {
    .timeline-container { padding-left: 0; min-height: auto; }
    .timeline-line { left: 2rem; width: 3px; }
    .timeline-year::before { left: -2.8rem; }
    .hero-content h1 { font-size: 5.5rem; }
    .hero-subtitle { font-size: 2.6rem; }
}