/* ============================================================
   ADVANCED CSS3 ULTRA-MODERN ABOUT US PAGE STYLESHEET
   Features: Glassmorphism, Animated Aurora Backgrounds, 3D Tilt,
   Shimmer Rays, Pulsing Beacons, Timeline Glow & Premium Typography
   ============================================================ */

:root {
    --abt-primary: #00d084;
    --abt-primary-hover: #00e693;
    --abt-dark-deep: #06192e;
    --abt-dark: #0a2540;
    --abt-bg-light: #f7f7f4;
    --abt-text-dark: #0e2038;
    --abt-text-muted: #5e6d82;
    --abt-border: #e2e8f0;
    --abt-ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --abt-glow-primary: 0 15px 45px rgba(0, 208, 132, 0.2);
}

.about-page {
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--abt-text-dark);
}

/* ==========================================
   1. HERO SECTION WITH AURORA MESH & GLASS (HIGH SPECIFICITY FIX)
   ========================================== */
main.cp-main.about-redesign .about-hero,
.about-page .about-hero,
.about-hero {
    background: linear-gradient(135deg, #06192e 0%, #0a2540 55%, #08281e 100%) !important;
    color: #ffffff !important;
    padding: 120px 0 90px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* CSS3 Aurora Mesh Background Spheres */
.about-hero::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.25) 0%, rgba(0, 208, 132, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatAbtAurora 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, rgba(0, 163, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatAbtAurora 15s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes floatAbtAurora {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.12); }
    100% { transform: translate(-25px, 25px) scale(0.95); }
}

.about-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero .cp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 24px;
}

.about-hero .cp-breadcrumb a {
    color: #ffffff !important;
    text-decoration: none;
}

.about-hero .cp-breadcrumb .current {
    color: #00d084 !important;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(0, 208, 132, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 208, 132, 0.35);
    color: var(--abt-primary) !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

main.cp-main.about-redesign .about-hero-copy h1,
.about-hero-copy h1,
#about-title {
    font-size: clamp(38px, 4.5vw, 58px) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    color: #ffffff !important;
    margin-bottom: 22px !important;
}

main.cp-main.about-redesign .about-hero-copy p,
.about-hero-copy p {
    font-size: 18px !important;
    line-height: 1.68 !important;
    color: #cbd5e1 !important;
    margin-bottom: 34px !important;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero .about-actions .cp-btn--primary,
.about-actions .cp-btn--primary {
    background: linear-gradient(135deg, #00d084 0%, #00b371 100%) !important;
    color: #06192e !important;
    font-weight: 800 !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.35) !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.about-hero .about-actions .cp-btn--primary:hover,
.about-actions .cp-btn--primary:hover {
    background: linear-gradient(135deg, #00e693 0%, #00ffaa 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 208, 132, 0.5) !important;
    color: #06192e !important;
}

.about-hero .about-actions .cp-btn--ghost,
.about-actions .cp-btn--ghost {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.about-hero .about-actions .cp-btn--ghost:hover,
.about-actions .cp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* Glass Dashboard Panel */
.about-hero-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
}

.about-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.about-live-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.about-orbit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
}

.about-orbit img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 208, 132, 0.25));
    transition: transform 0.4s var(--abt-ease-apple);
}

.about-hero-panel:hover .about-orbit img {
    transform: scale(1.05);
}

.about-orbit-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-orbit-card--one {
    top: 20px;
    left: 0;
}

.about-orbit-card--two {
    bottom: 20px;
    right: 0;
}

.about-orbit-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--abt-primary);
}

.about-orbit-card span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.about-signal-grid div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 10px;
    border-radius: 14px;
    text-align: center;
    color: #ffffff;
}

.about-signal-grid i {
    font-size: 20px;
    color: var(--abt-primary);
    display: block;
    margin-bottom: 4px;
}

.about-signal-grid strong {
    display: block;
    font-size: 13px;
}

.about-signal-grid span {
    font-size: 11px;
    color: #94a3b8;
}

/* ==========================================
   2. PROOF BAR WITH GLASSMORPHISM
   ========================================== */
.about-proof {
    background: var(--abt-dark-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 0;
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-proof-grid div {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 16px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.about-proof-grid div:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 132, 0.4);
}

.about-proof-grid i {
    font-size: 32px;
    color: var(--abt-primary);
}

.about-proof-grid strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.about-proof-grid small {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   3. WHO WE ARE & CAPABILITY CARDS (CSS3 SUPERCHARGED)
   ========================================== */
.abt-whoweare {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.abt-wwa-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

/* Left Visual 3D Frame */
.abt-wwa-visual {
    position: relative;
    perspective: 1200px;
}

.abt-wwa-perspective {
    position: relative;
    transform-style: preserve-3d;
}

.abt-wwa-layer--glow {
    position: absolute;
    inset: -25px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.22) 0%, rgba(0, 208, 132, 0) 70%);
    border-radius: 40px;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.abt-wwa-img-card {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.16);
    border: 1px solid #cbd5e1;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s var(--abt-ease-apple), box-shadow 0.5s var(--abt-ease-apple);
    background: #ffffff;
}

.abt-wwa-visual:hover .abt-wwa-img-card {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 208, 132, 0.22);
}

.abt-wwa-img-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s var(--abt-ease-apple);
}

.abt-wwa-visual:hover .abt-wwa-img-card img {
    transform: scale(1.04);
}

/* Floating Badges */
.abt-wwa-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s var(--abt-ease-apple);
}

.abt-wwa-badge--top {
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #00d084 0%, #00b371 100%);
    color: #06192e;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.abt-wwa-badge--top i {
    font-size: 18px;
    color: #fbbf24; /* Golden check icon */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.abt-wwa-badge--bottom {
    bottom: 50px;
    left: -20px;
    background: rgba(10, 37, 64, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.abt-wwa-badge--bottom i.spinning-globe {
    font-size: 18px;
    color: var(--abt-primary);
    animation: spinGlobe 14s linear infinite;
}

@keyframes spinGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.abt-wwa-visual:hover .abt-wwa-badge--top {
    transform: translateY(-4px) scale(1.05);
}

.abt-wwa-visual:hover .abt-wwa-badge--bottom {
    transform: translateY(4px) scale(1.05);
}

/* Floating Note Banner */
.abt-wwa-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--abt-primary);
    padding: 16px 22px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
    font-size: 14px;
    font-weight: 700;
    color: var(--abt-text-dark);
    transition: transform 0.3s ease;
}

.abt-wwa-note:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    border-left-color: var(--abt-primary);
}

.abt-wwa-note-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #e6f9f2;
    color: var(--abt-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Right Content */
.abt-wwa-content h2 {
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 800;
    color: var(--abt-text-dark);
    margin: 14px 0 20px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.abt-highlight-text {
    background: linear-gradient(135deg, #00d084 0%, #00b371 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-highlight-text-alt {
    color: #0a2540;
    position: relative;
    display: inline-block;
}

.abt-highlight-text-alt::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 208, 132, 0.4);
    border-radius: 2px;
}

.abt-wwa-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--abt-text-muted);
    margin-bottom: 16px;
}

.abt-wwa-content p.lead-p {
    font-size: 17px;
    color: #334155;
}

/* 3D Glass Capability Cards Grid */
.abt-wwa-caps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.abt-wwa-cap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--abt-text-dark);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.03);
    transition: all 0.35s var(--abt-ease-apple);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.abt-wwa-cap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, rgba(0, 208, 132, 0.12) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.abt-wwa-cap:hover::before {
    transform: translateX(100%);
}

.abt-wwa-cap:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 12px 30px rgba(0, 208, 132, 0.2);
    border-color: var(--abt-primary);
}

.abt-wwa-cap-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.16) 0%, rgba(0, 208, 132, 0.05) 100%);
    border: 1px solid rgba(0, 208, 132, 0.28);
    color: #008a57;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.35s var(--abt-ease-apple), background 0.35s ease, color 0.35s ease;
}

.abt-wwa-cap:hover .abt-wwa-cap-icon {
    background: var(--abt-primary);
    color: #06192e;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--abt-primary);
}

.abt-wwa-cap span {
    flex-grow: 1;
    line-height: 1.35;
}

.abt-cap-arrow {
    font-size: 16px;
    color: var(--abt-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.abt-wwa-cap:hover .abt-cap-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   4. MISSION & VISION (PERFECT ALIGNMENT & GLASS DESIGN)
   ========================================== */
.abt-mission-vision {
    padding: 100px 0;
    background: var(--abt-bg-light);
}

.abt-section-head--center {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 820px !important;
    margin: 0 auto 52px !important;
    width: 100% !important;
}

.abt-section-head--center .about-kicker {
    margin-inline: auto !important;
    justify-content: center !important;
}

.abt-section-head--center h2 {
    text-align: center !important;
    margin: 12px 0 0 !important;
    font-size: clamp(30px, 3.4vw, 42px) !important;
    font-weight: 800 !important;
    color: var(--abt-text-dark) !important;
    line-height: 1.2 !important;
}

.abt-mv-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.abt-mv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.04);
    transition: all 0.35s var(--abt-ease-apple);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.abt-mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00d084 0%, #00b371 100%);
}

.abt-mv-card--vision::before {
    background: linear-gradient(90deg, #0a2540 0%, #2563eb 100%);
}

.abt-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 208, 132, 0.18);
    border-color: #cbd5e1;
}

.abt-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(0, 208, 132, 0.05) 100%);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #008a57;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 24px;
    transition: transform 0.35s ease;
}

.abt-mv-card--vision .abt-mv-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-color: rgba(37, 99, 235, 0.3);
    color: #1d4ed8;
}

.abt-mv-card:hover .abt-mv-icon {
    transform: scale(1.08) rotate(4deg);
}

.abt-mv-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 16px;
}

.abt-mv-card p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--abt-text-muted);
}

.abt-mv-card p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--abt-text-muted);
}

/* ==========================================
   5. WHAT WE DO — SERVICES GRID
   ========================================== */
.about-pillars {
    padding: 100px 0;
    background: #ffffff;
}

.abt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.abt-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.35s var(--abt-ease-apple);
}

.abt-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.15);
    border-color: var(--abt-primary);
}

.abt-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f1f5f9;
    color: var(--abt-primary);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.abt-service-card:hover .abt-service-icon {
    background: var(--abt-primary);
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
}

.abt-service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 12px;
}

.abt-service-card p {
    font-size: 15px;
    line-height: 1.68;
    color: var(--abt-text-muted);
}

/* ==========================================
   6. WHY CHOOSE US (LIGHT CREAM BACKDROP)
   ========================================== */
.abt-why-us {
    padding: 95px 0;
    background: var(--abt-bg-light);
}

.abt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.abt-why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s var(--abt-ease-apple);
}

.abt-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    border-color: #cbd5e1;
}

.abt-why-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 28px;
    font-weight: 800;
    color: #cbd5e1;
}

.abt-why-card i {
    font-size: 34px;
    color: var(--abt-primary);
    display: block;
    margin-bottom: 18px;
}

.abt-why-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 10px;
}

.abt-why-card p {
    font-size: 15px;
    line-height: 1.68;
    color: var(--abt-text-muted);
}

/* ==========================================
   7. JOURNEY TIMELINE (LIGHT CREAM BACKDROP)
   ========================================== */
.about-journey {
    padding: 100px 0;
    background: var(--abt-bg-light) !important;
}

.about-journey-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.about-timeline article {
    display: flex;
    gap: 20px;
    background: var(--abt-bg-light);
    border: 1px solid #e2e8f0;
    padding: 24px 28px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.about-timeline article:hover {
    background: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.12);
    border-color: var(--abt-primary);
}

.about-timeline-marker {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--abt-primary);
    color: var(--abt-dark-deep);
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-timeline-content span {
    font-size: 13px;
    font-weight: 800;
    color: var(--abt-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-timeline-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin: 4px 0 8px;
}

.about-timeline-content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--abt-text-muted);
}

/* ==========================================
   8. CORE VALUES GRID
   ========================================== */
.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.abt-value-card {
    background: var(--abt-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    transition: all 0.3s ease;
}

.abt-value-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
    border-color: #cbd5e1;
}

.abt-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--abt-primary);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.abt-value-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 8px;
}

.abt-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--abt-text-muted);
}

/* ==========================================
   9. DIRECTOR EXECUTIVE HERO CARD
   ========================================== */
.abt-director {
    padding: 100px 0;
    background: #ffffff;
}

.abt-dir-hero {
    background: linear-gradient(135deg, var(--abt-dark-deep) 0%, var(--abt-dark) 100%);
    border-radius: 32px;
    padding: 56px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.15);
}

.abt-dir-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.abt-dir-hero-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 14px 0 18px;
    line-height: 1.2;
}

.abt-dir-hero-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.abt-dir-stats {
    display: flex;
    gap: 36px;
}

.abt-dir-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--abt-primary);
    line-height: 1.1;
}

.abt-dir-stat span {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Director Right Profile Card */
.abt-dir-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.abt-dir-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d084 0%, #00e693 100%);
    color: var(--abt-dark-deep);
    font-size: 32px;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.35);
}

.abt-dir-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.abt-dir-title {
    font-size: 14px;
    color: var(--abt-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
}

.abt-dir-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.abt-dir-tags span {
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: #e2e8f0;
}

.abt-dir-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--abt-primary);
    color: var(--abt-dark-deep);
    font-weight: 800;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.abt-dir-connect:hover {
    background: #00e693;
    transform: translateY(-2px);
    color: var(--abt-dark-deep);
}

/* Quote & Philosophy Section */
.abt-dir-lower {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
}

.abt-dir-quote {
    background: var(--abt-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    position: relative;

}

.abt-dir-quote p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--abt-text-dark);
    font-style: italic;
    margin-bottom: 24px;
}

.abt-dir-quote-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.abt-dir-quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--abt-primary);
    color: var(--abt-dark-deep);
    font-weight: 800;
    display: grid;
    place-items: center;
}

.abt-dir-quote-footer strong {
    display: block;
    font-size: 16px;
    color: var(--abt-text-dark);
}

.abt-dir-quote-footer span {
    font-size: 13px;
    color: var(--abt-text-muted);
}

.abt-dir-expertise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.abt-dir-expertise-pills span {
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: var(--abt-text-dark);
    font-weight: 600;
}

.abt-philosophy-section {
    margin-top: 60px;
}

.abt-philosophy-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 28px;
    text-align: center;
}

.abt-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.abt-philosophy-card {
    background: var(--abt-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.abt-philosophy-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.abt-philosophy-card i {
    font-size: 28px;
    color: var(--abt-primary);
    display: block;
    margin-bottom: 12px;
}

.abt-philosophy-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--abt-text-dark);
    margin-bottom: 8px;
}

.abt-philosophy-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--abt-text-muted);
}

/* ==========================================
   10. FINAL CTA BANNER (CLEAN ISOLATED SPACING)
   ========================================== */
.about-cta {
    background: #ffffff !important;
    padding: 90px 0 80px !important;
    position: relative !important;
    z-index: 2 !important;
}

.about-cta-inner {
    background: linear-gradient(135deg, #06192e 0%, #0a2540 60%, #08281e 100%) !important;
    border-radius: 32px !important;
    padding: 60px 52px !important;
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.about-cta-inner h2 {
    font-size: clamp(30px, 3.5vw, 44px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 12px 0 0 !important;
}

.abt-cta-buttons {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.about-cta .cp-btn--light {
    background: linear-gradient(135deg, #00d084 0%, #00b371 100%) !important;
    color: #06192e !important;
    font-weight: 800 !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.35) !important;
    border: none !important;
}

.about-cta .cp-btn--light:hover {
    background: linear-gradient(135deg, #00e693 0%, #00ffaa 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 208, 132, 0.5) !important;
}

.about-cta .abt-cta-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.about-cta .abt-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* ==========================================
   RESPONSIVE QUERIES
   ========================================== */
@media (max-width: 992px) {
    .about-hero-grid,
    .abt-wwa-grid,
    .about-journey-grid,
    .abt-dir-hero-grid,
    .abt-dir-lower {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-services-grid,
    .abt-why-grid,
    .abt-philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .abt-services-grid,
    .abt-why-grid,
    .abt-philosophy-grid,
    .abt-values-grid,
    .about-proof-grid,
    .abt-mv-grid,
    .abt-wwa-caps {
        grid-template-columns: 1fr;
    }

    .abt-dir-hero {
        padding: 30px 20px;
    }
}
