body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}


:root {
    --navy: #082b62;
    --navy2: #041b47;
    --green: #2f7d45;
    --green2: #3b6f3d;
    --gold: #c8a84b;
    --light: #f4f7fc;
    --white: #ffffff;
    --text: #1a2340;
    --muted: #5a6a85;
    --border: rgba(8, 43, 98, .10);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

/* ── INNER PAGE HERO ── */
.about-hero {
    position: relative;
    padding: 50px 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy2);
}




.about-hero .green-stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: var(--green);
}

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 70px 60px 56px;
    display: flex;
    align-items: flex-end;
    gap: 48px;
}

.about-hero .breadcrumb {
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-hero .breadcrumb span {
    color: var(--gold);
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 1px;
}

.about-hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.about-hero .hero-sub {
    margin-top: 14px;
    font-size: 16px;
    color: #ffffffe6;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero .sebi-pill {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 18px 26px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(6px);
}

.about-hero .sebi-pill small {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.824);
    margin-bottom: 6px;
}

.about-hero .sebi-pill strong {
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--gold);
}

/* ── MAIN CONTENT AREA ── */
.about-body {

    margin: 0 auto;
    padding: 0 60px;
}

/* ── SECTION: BIO + PHOTO ── */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    padding: 72px 0 64px;
    border-bottom: 1px solid var(--border);
}

.bio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}

.bio-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--green);
}

.bio-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 28px;
}

.bio-section h2 span {
    color: var(--green);
}

.bio-text p {
    font-size: 20px;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 20px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Photo card */
.bio-photo {
    position: relative;
}

.bio-photo .photo-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(8, 43, 98, .18);
}

.bio-photo img {
    width: 100%;
    height:auto;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.bio-photo .photo-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--navy);
    color: #fff;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-photo .photo-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* corner accent */
.bio-photo::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--green);
    border-right: 3px solid var(--green);
    border-radius: 0 14px 0 0;
}

.bio-photo::after {
    content: '';
    position: absolute;
      top: 323px;
    left: -24px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--navy);
    border-left: 3px solid var(--navy);
    border-radius: 0 0 0 14px;
}




/* ── SECTION: EXPERTISE ── */
.expertise-section {
    padding: 0 0 72px;
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expertise-card {
    background: var(--light);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform .22s, box-shadow .22s, border-color .22s;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--navy));
    opacity: 0;
    transition: opacity .22s;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(8, 43, 98, .10);
    border-color: rgba(47, 124, 69, .25);
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), #1d4fa0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── SECTION: PHILOSOPHY / QUOTE ── */
.philosophy-section {
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.philosophy-left .quote-mark {
    font-family: 'Cinzel', serif;
    font-size: 120px;
    line-height: .6;
    color: var(--green);
    opacity: .18;
    margin-bottom: -20px;
    display: block;
}

.philosophy-left blockquote {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    border-left: 4px solid var(--green);
    padding-left: 28px;
    margin-bottom: 20px;
}

.philosophy-left .quote-author {
    font-size: 14px;
    color: var(--muted);
    padding-left: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.philosophy-right h2 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 20px;
}

.philosophy-right p {
    font-size: 15px;
    color: #374151;
    line-height: 1.85;
    margin-bottom: 16px;
}

.philosophy-right p:last-child {
    margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .about-body {
        padding: 0 36px;
    }

    .about-hero .hero-inner {
        padding: 60px 36px 48px;
    }

    .bio-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-section .bio-photo {
        max-width: 420px;
    }

    .bio-photo img {
        height: 360px;
    }


    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }


}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 48px 24px 40px;
    }

    .about-hero .sebi-pill {
        width: 100%;
    }

    .about-body {
        padding: 0 20px;
    }

    .bio-section {
        padding: 48px 0 44px;
    }

    .bio-section h2 {
        font-size: 28px;
    }

    .bio-text p {
        font-size: 15px;
    }

    .bio-photo img {
        height: 300px;
    }


    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-section {
        padding-bottom: 48px;
    }

    .philosophy-section {
        padding: 48px 0;
    }

    .philosophy-left blockquote {
        font-size: 19px;
    }

    .philosophy-right h2 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 26px;
    }


}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }


    .bio-photo::before,
    .bio-photo::after {
        display: none;
    }
}

.philosophy-right img{
    width: 100%;
}
.philosophy-left p{
    padding-bottom: 20px;
    font-size: 25px;
}

@media (min-width: 1900px) and (max-width: 3000px){
    .about-hero .sebi-pill small {
    font-size: 15px;
}
.about-hero .breadcrumb {
    font-size: 20px;
}
.bio-eyebrow {
    font-size: 18px;
}
.bio-section h2 {
    font-size: 45px;
}
.bio-text p {
    font-size: 24px;
}
.expertise-card h3 {
    font-size: 25px;
}
.section-header h2 {
    font-size: 50px;
}
.philosophy-left p {
    font-size: 30px;
}


}