﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --navy: #4CAF50;
    --navy-d: #1e2c82;
    --navy-l: #5b72e8;
    --green: #5fa81e;
    --green-l: #7DC832;
    --dark: #0e1422;
    --text: #1c2333;
    --sub: black;
    --muted: #94a3b8;
    --bg: #f2f3f7;
    --white: #fff;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0,0,0,.07),0 1px 4px rgba(0,0,0,.04);
    --shadow-md: 0 10px 40px rgba(0,0,0,.1),0 2px 8px rgba(0,0,0,.05);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

/* ── NAV ── */
nav {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.02em
}

    .logo span {
        color: var(--navy)
    }

.nav-cta {
    padding: .48rem 1.2rem;
    border-radius: 8px;
    border: none;
    background: var(--navy);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

    .nav-cta:hover {
        background: var(--navy-d)
    }

/* ── HERO SECTION ── */
.about-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
}

/* decorative wave/blob background on the left */
.hero-bg-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

    .hero-bg-art svg {
        width: 100%;
        height: 100%
    }

/* left text column */
.hero-left {
    position: relative;
    z-index: 1;
    padding-left:45px;
}

.hero-tag {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sub);
    margin-bottom: 1rem;
}

.hero-italic {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sub);
    line-height: 1.2;
    margin-bottom: .35rem;
}

.hero-bold {
    font-size: clamp(2.3rem,3.5vw,2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: .95rem;
    color: var(--sub);
    line-height: 1.8;
    max-width: 460px;
}

/* right cards column */
.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 80px;
    margin-bottom: 45px;
    padding-left: 15px;
}

/* mission / vision cards */
.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow);
    transition: transform .2s,box-shadow .2s;
}

    .mv-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md)
    }

    .mv-card.vision {
        background: linear-gradient(140deg, #5aab2b 0%, #60ad3a 50%, #4CAF50 100%);
        color: rgba(255,255,255,.85);
    }

.mv-label {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sub) !important;
    margin-bottom: .6rem;
    display: flex;
    align-items: baseline;
    gap: .35rem;
}

    .mv-label .accent {
        font-weight: 800;
        color: var(--navy);
        font-size: 1.2rem;
    }

.mv-card.vision .mv-label {
    color: rgba(255,255,255,.6)
}

    .mv-card.vision .mv-label .accent {
        color: white;
    }

.mv-text {
    font-size: .95rem;
    line-height: 1.8
}

.mv-card.vision .mv-text {
    color: white;
}

/* ── VALUES ROW ── */
.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.val-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.6rem;
    border: 1.5px solid var(--border);
    transition: all .2s;
}

    .val-card:hover {
        border-color: rgba(43,59,171,.2);
        box-shadow: var(--shadow);
        transform: translateY(-2px)
    }

.val-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.val-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .4rem
}

.val-desc {
    font-size: .90rem;
    color: var(--sub);
    line-height: 1.7
}

/* ── STATS ROW ── */
.stats-band {
    margin-top:30px;
    background: linear-gradient(135deg,#4CAF50 0%,#4CAF50 100%);
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

    .stats-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle,rgba(91,114,232,.07) 1px,transparent 1px);
        background-size: 28px 28px;
    }

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 2px solid white;
}

    .stat-item:last-child {
        border-right: none
    }

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-lbl {
    font-size: .9rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em
}

/* ── SECTION HEADING ── */
.section-head {
    text-align: center;
    margin-bottom: 0
}

.section-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--navy);
    margin-bottom: .5rem
}

.section-title {
    font-size: clamp(1.5rem,2.8vw,2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.02em;
    line-height: 1.2
}

    .section-title span {
        background: linear-gradient(90deg,var(--navy),var(--navy));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.section-sub {
    font-size: .9rem;
    color: black;
    margin-top: .6rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75
}

/* ── RESPONSIVE ── */
@media(max-width:860px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
        min-height: auto
    }

    .hero-bg-art {
        width: 100%;
        height: 300px;
        opacity: .35
    }

    .values-grid {
        grid-template-columns: 1fr 1fr
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .stat-item {
        border-right: none;
        padding: .5rem
    }
}

@media(max-width:560px) {
    .values-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr
    }

    .mv-card {
        padding: 1.35rem 1.5rem
    }
}

/* ── OUR DNA SECTION ── */
.dna-section {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 4.5rem 0;
}

.dna-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dna-head {
    margin-bottom: 3rem
}

.dna-title {
    font-size: clamp(1.8rem,3.5vw,2.5rem);
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: .65rem;
}

.dna-accent {
    color: #4CAF50;
    font-weight: 800
}

.dna-sub {
    font-size: .95rem;
    color:black;
    line-height: 1.75;
    max-width: 820px;
}

/* tab+content layout */
.dna-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 1.5rem;
}

/* vertical tab list */
.dna-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

    .dna-tabs::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #e8edf3;
        border-radius: 2px;
    }

.dna-tab {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 0 .7rem 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 500;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: color .18s;
}

.dna-tab-bar {
    display: none;
    position: absolute;
    left: -1.1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.dna-tab.active .dna-tab-bar {
    display: block
}

.dna-tab.active {
    font-weight: 700;
    color: #4CAF50;
}

.dna-tab:hover:not(.active) {
    color: var(--text)
}

/* content panel */
.dna-panel {
    display: none
}

    .dna-panel.active {
        display: block;
        animation: dnaFade .25s ease
    }

@keyframes dnaFade {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dna-body {
    font-size: 1.08rem;
    color: #3a3a3a;
    line-height: 1.85;
    font-weight: 400;
}

.dna-em {
    font-style: italic;
    font-weight: 700;
    color: #4CAF50;
}

@media(max-width:700px) {
    .dna-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem
    }

    .dna-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: .5rem
    }

        .dna-tabs::before {
            display: none
        }

    .dna-tab {
        padding: .4rem .85rem;
        border-radius: 100px;
        border: 1.5px solid #e8edf3
    }

    .dna-tab-bar {
        display: none !important
    }

    .dna-tab.active {
        border-color: #4CAF50;
        background: #4CAF50;
        color: white;
    }

    .dna-tab:hover:not(.active) {
        border-color: var(--border)
    }
}

