/* ============================================
   Yogi Liman Executive Portfolio
   Professional CSS with Organized Structure
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --blue: #1250a9;
    --blue-deep: #163F7E;
    --navy: #0E2A50;
    --navy-card: #002855;
    --coral: #FFFFFF;
    --coral-soft: rgba(255, 255, 255, 0.35);
    --paper: #fefefe;
    --ink: #16233A;
    --ink-soft: #FFFFFF;
    --line: rgba(27, 79, 156, 0.14);
    --serif: 'Lora', serif;
    --display: 'Poppins', sans-serif;
    --body: 'Inter', sans-serif;
    --maxw: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

img,
svg {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

@media (max-width:1024px) {
    .wrap {
        max-width: 100%;
        padding: 0 28px;
    }
}

section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width:720px) {
    section {
        padding: 64px 0;
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    margin: 0;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    margin-bottom: 16px;
    display: inline-block;
    background: var(--blue-deep);
    border: 1px solid var(--blue-deep);
    border-radius: 30px;
    padding: 8px 20px;
}

.eyebrow.on-white {
    color: #fff;
    background: var(--blue-deep);
    border: 1px solid var(--blue-deep);
}

p {
    line-height: 1.7;
    color: var(--blue-deep);
    margin: 0 0 16px 0;
}

.on-dark p {
    color: rgba(255, 255, 255, 0.82);
}

a {
    color: inherit;
}

/* ---------- PROFESSIONAL QUOTE STYLES WITH ICONS ---------- */

/* ===== QUOTE STYLE 1: Blue Background Version ===== */
.quote-professional-blue {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 48px;
    background: #1250a9;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(18, 80, 169, 0.25);
    text-align: center;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.quote-professional-blue::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-image: url('../images/quote-open-editor-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    z-index: 2;
}

.quote-professional-blue::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-image: url('../images/quote-close-editor-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    z-index: 2;
}

.quote-professional-blue .quote-content {
    position: relative;
    z-index: 1;
}

.quote-professional-blue .quote-eyebrow {
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.quote-professional-blue .quote-eyebrow::before,
.quote-professional-blue .quote-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

.quote-professional-blue .quote-eyebrow::before {
    left: -35px;
}

.quote-professional-blue .quote-eyebrow::after {
    right: -35px;
}

.quote-professional-blue p {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #FFFFFF;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-professional-blue .quote-author {
    margin-top: 20px;
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== QUOTE STYLE 2: White Background Version ===== */
.quote-professional-white {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 48px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: visible;
    border: 2px solid rgba(18, 80, 169, 0.15);
}

.quote-professional-white::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-image: url('../images/quote-open-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.quote-professional-white::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-image: url('../images/quote-close-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.quote-professional-white .quote-content {
    position: relative;
    z-index: 1;
}

.quote-professional-white .quote-eyebrow {
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    color: #1B4F9C;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27, 79, 156, 0.08);
    border-radius: 20px;
}

.quote-professional-white p {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #1B4F9C;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-professional-white .quote-author {
    margin-top: 20px;
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: #163F7E;
}

/* ===== END PROFESSIONAL QUOTE STYLES ===== */



/* ---------- Hero Quote (with pink closing quotemark) ---------- */
.hero-quote-wrap {
    text-align: center;
    margin-top: 52px;
    padding: 0 20px;
}

.hero-quote {
    position: relative;
    display: block;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 48px;
    text-align: center;
    overflow: visible;
    background: rgba(27, 79, 156, 0.08);
    /* Blue background */
    border-radius: 30px;
    /* Rounded corners */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    /* Shadow */
}

/* Hide the generic ::before watermark for hero-quote */
.hero-quote::before {
    display: none;
}

.hero-quote p {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--blue-deep);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.on-dark .hero-quote p {
    color: #fff;
}



.quote-eyebrow {
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--blue);
    /* Blue text */
    margin-bottom: 24px;
    margin-top: -24px;
    /* Pull it up a bit since padding is huge */
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

/* Horizontal lines on both sides */
.quote-eyebrow::before,
.quote-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

/* White text for quote-eyebrow in dark sections */
.section-navy .quote-eyebrow,
.section-dark .quote-eyebrow {
    color: #FFFFFF;
}

.section-navy .quote-eyebrow::before,
.section-navy .quote-eyebrow::after,
.section-dark .quote-eyebrow::before,
.section-dark .quote-eyebrow::after {
    background: #FFFFFF;
}

.quote-eyebrow::before {
    left: -30px;
}

.quote-eyebrow::after {
    right: -30px;
}

/* Hover effect - lines extend */
.quote-eyebrow:hover::before,
.quote-eyebrow:hover::after {
    width: 50px;
}

@keyframes floatGrid {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) scale(1.015) rotate(0.5deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.node-field {
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
    animation: floatGrid 18s ease-in-out infinite;
    transform-origin: center;
    z-index: 2;
}

/* ---------- NAV ---------- */
header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #1250a9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.nav.scrolled {
    background: #1250a9;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.nav-name span {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: color .2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    /* White underline */
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--coral);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

@media (max-width:820px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--blue);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .nav-links.open {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links li {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a {
        display: block;
        padding: 14px 28px;
    }

    .nav-toggle {
        display: block;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    border-bottom: 1px solid rgba(27, 79, 156, 0.08);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/1.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 130% auto;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(251, 250, 248, 0.40);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1.5%, -1.5%);
    }
}

@keyframes heroFade {
    0% {
        opacity: 0.38;
    }

    50% {
        opacity: 0.55;
    }

    100% {
        opacity: 0.38;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 90px 0 80px;
    }


}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero h1 {
    font-size: clamp(42px, 8vw, 76px);
    font-weight: 900;
    color: var(--blue);
    line-height: 1.02;
    padding: 40px 0;
    /* Changed to padding 40px per user request */
    margin: 0;
}

.hero .role {
    margin-top: 24px;
    margin-bottom: 56px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.hero .role .sep {
    display: none;
}

.hero .role .role-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: .06em;
    background: rgba(27, 79, 156, 0.05);
    border: 1px solid rgba(27, 79, 156, 0.12);
    border-radius: 6px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero .role .role-item:hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 79, 156, 0.15);
}

.hero .portfolio-tag {
    margin-top: 6px;
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--ink);
    letter-spacing: .02em;
}


.focus-block {
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.focus-block .label {
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--blue);
    margin-bottom: 20px;
    font-family: var(--body);
}

.focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
}

.focus-list li {
    position: relative;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue-deep);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px 18px;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(27, 79, 156, 0.03);
}

.focus-list li:hover {
    color: var(--blue);
    border-color: rgba(27, 79, 156, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 79, 156, 0.08);
}

.focus-list li::before {
    display: none;
}

.hero-footer-card {
    padding: 50px 0 40px;
    background: transparent;
    margin-top: 60px;
}

.hero-footer-card-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 48px;
    background:  var(--navy-card);
    /* Solid navy color */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #FFFFFF;
    /* White accent */
    border-radius: 16px;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
    text-align: left;
}

/* Vertical divider for columns */
.hero-footer-card-content::before {
    content: '';
    position: absolute;
    top: 36px;
    bottom: 36px;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width:860px) {
    .hero-footer-card-content {
        grid-template-columns: 1fr;
    }

    .hero-footer-card-content::before {
        display: none;
        /* Hide divider on mobile */
    }
}

.hero-footer-section strong {
    display: block;
    color: #FFFFFF;
    /* White text for titles */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-footer-section div {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-footer-section a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.hero-icon {
    width: 18px;
    height: 18px;
    stroke: #FFFFFF;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.hero-footer-section strong {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-footer-section>div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Mobile: wrap text & keep icons aligned */
@media (max-width:720px) {
    .hero-footer-card-content {
        padding: 26px 18px;
        gap: 22px;
    }

    .hero-footer-section strong {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: wrap;
        line-height: 1.25;
    }

    .hero-footer-section>div {
        align-items: flex-start;
        gap: 10px;
        line-height: 1.4;
    }

    .hero-icon {
        margin-right: 0;
        flex-shrink: 0;
    }

    .hero-footer-italic {
        white-space: normal;
        word-break: break-word;
    }

    .hero-footer-section a {
        word-break: break-word;
    }
}

/* Ensure hero footer sections do not have a divider and remain two columns */
.hero-footer-section strong {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 8px !important;
}

.hero-footer-italic {
    font-style: italic;
    color: var(--ink-soft);
    font-weight: 400;
    font-size: 14px;
}

/* ---------- INLINE STYLES MIGRATION ---------- */
.text-align-right {
    text-align: right;
}


.section-dark h2 {
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 800;
    margin-bottom: 34px;
}

.max-width-820px {
    max-width: 100%;
}

.strong-white {
    color: #fff;
}

.eyebrow-center {
    text-align: center;
    margin-bottom: 14px;
}

.two-col-list-custom {
    margin-top: 56px;
    gap: 22px;
}

.side-card-no-margin {
    margin-bottom: 0;
}

.side-card-margin-top {
    margin-top: 22px;
}

.paragraph-no-margin {
    margin: 0;
    font-size: 14px;
}

.bring-list-custom {
    gap: 6px 40px;
}

.section-navy h2 {
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 800;
    margin: 14px 0 20px;
}

.text-white-78 {
    color: rgba(255, 255, 255, 0.78);
}

.principle-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.stats-intro-custom {
    margin-top: 20px;
}



.contrib-h2 {
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 800;
    margin: 14px 0 16px;
}

.contrib-text-78 {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.78);
}

.contrib-text-55 {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
}

.eyebrow-block {
    display: block;
    margin-bottom: 14px;
}

.sig-intro {
    max-width: 100%;
    margin-top: 20px;
}

.positioning-margin-top {
    margin-top: 20px;
}

.people-section-bg {
    background: #fefefe;
}

.paragraph-margin-top {
    margin-top: 20px;
}

.plain-list-no-margin {
    margin: 0;
}

.impact-paragraph-14 {
    font-size: 14px;
    margin-bottom: 12px;
}

.impact-paragraph-14-no-margin {
    font-size: 14px;
    margin-bottom: 0;
}

.gov-h2 {
    font-size: clamp(28px, 4.2vw, 40px);
    font-weight: 800;
    margin: 14px 0 30px;
    line-height: 1.15;
}

.gov-h4 {
    color: var(--coral);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}

.edu-intro {
    max-width: 100%;
    margin-top: 20px;
}

.languages-text {
    margin-top: 6px;
}

.closing-h2 {
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 800;
    margin: 14px 0 34px;
}

.leadership-message {
    margin: 56px 0;
    text-align: center;
}

.watermark-quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px auto;
    z-index: 2;
}

.watermark-quote p {
    font-family: Georgia, serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--blue);
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin: 0;
}

.watermark-icon {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-40%);
    font-family: Georgia, serif;
    font-size: 280px;
    color: #FFFFFF;
    /* White icon */
    opacity: 0.35;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.edu-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 24px;
}

@media (max-width:720px) {
    .edu-impact-grid {
        grid-template-columns: 1fr;
    }
}

.edu-impact-card {
    background: #fff;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    text-align: left;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
}

.edu-impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.25);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.2);
}

.edu-impact-card h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.edu-impact-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--blue-deep);
    margin: 0;
}

.edu-degree-card {
    background: #fff;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    text-align: left;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
}

.edu-degree-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.25);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.2);
}

.edu-degree-card h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.edu-degree-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--blue-deep);
    margin: 0;
}

.closing-max-width {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.closing-h4 {
    color: var(--coral);
    font-size: 15px;
    margin-bottom: 10px;
}

.two-col-list-closing {
    margin-top: 30px;
}

.closing-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.closing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.closing-card-title {
    color: var(--coral);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.closing-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.final-quote {
    margin-top: 60px;
}

/* ---------- WHO I AM (dark blue) ---------- */
.section-dark {
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Who I Am Section Background Image */
#who-i-am::before {
    content: "";
    position: absolute;
    top: 40%;
    right: -350px;
    transform: translateY(-50%);
    width: 1200px;
    height: 100%;
    background-image: url('../images/who-am-i.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    mix-blend-mode: screen;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.section-dark h2 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
}

@media (max-width:860px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.lede {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
}



.side-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.side-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.side-card h4 {
    color: var(--coral);
    font-size: 14px;
    letter-spacing: .04em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bring-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bring-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

.bring-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

/* ---------- EXEC SUMMARY (white) ---------- */
.section-light h2 {
    color: var(--blue);
    font-size: clamp(30px, 4.4vw, 44px);
    font-weight: 800;
    margin-bottom: 26px;
}

.section-light {
    position: relative;
    overflow: hidden;
}

.exec-body {
    max-width: 100%;
}

.exec-body p {
    font-size: 16px;
}

.stat-strong {
    color: var(--blue);
    font-weight: 700;
}

.positioning {
    margin: 30px 0;
    text-align: center;
    position: relative;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    /* White background to match hero */
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.positioning .eyebrow {
    display: block;
    margin-bottom: 12px;
}

.positioning p {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #1B4F9C;
    /* Blue text to match hero */
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.6;
    margin: 0;
}



.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 14px;
}

@media (max-width:640px) {
    .two-col-list {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #fff;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.2);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.12);
}

.value-card .subhead {
    margin-top: 0;
}

.plain-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plain-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--blue-deep);
    line-height: 1.55;
}

.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.subhead {
    font-family: var(--display);
    font-weight: 700;
    color: var(--blue-deep);
    font-size: 16px;
    margin: 34px 0 12px;
}

/* ---------- PRINCIPLES (dark navy w/ cards) ---------- */
.section-navy {
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-navy h2 {
    color: #fff;
}

.principle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 44px;
}

@media (max-width:720px) {
    .principle-grid {
        grid-template-columns: 1fr;
    }
}

.principle-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 28px;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.principle-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.principle-card .num {
    color: var(--coral);
    font-weight: 800;
    margin-right: 8px;
}

/* Large decorative numbers in bottom right corner */
.principle-card {
    position: relative;
}

.principle-card .num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 96px;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    margin-right: 0;
}

.principle-card ul {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.principle-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.principle-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(27, 79, 156, 0.10);
}

.principle-card .note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 14px;
}

/* ---------- STATS (Leadership at Scale) ---------- */
.stats-intro {
    max-width: 100%;
    margin-bottom: 50px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

@media (max-width:900px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.25);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.2);
}

.stat-card .num {
    font-family: var(--display);
    font-weight: 900;
    font-size: 21px;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 12px;
    display: inline-block;
}

.stat-card .num::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--blue);
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-card:hover .num::after {
    width: 60px;
}

.stat-card .cap {
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-deep);
    margin-bottom: 14px;
    line-height: 1.45;
}

.stat-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(22, 35, 58, 0.78);
}

.stat .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(19px, 2.1vw, 23px);
    color: var(--blue);
    line-height: 1.25;
}

.stat .cap {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--blue);
    margin-top: 6px;
    margin-bottom: 8px;
}

.stat p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--blue-deep);
}

.impact-line {
    margin-top: 70px;
    max-width: 100%;
}

.impact-line h4 {
    font-family: var(--display);
    color: var(--blue-deep);
    font-size: 15px;
    margin-bottom: 8px;
}

/* ---------- CONTRIBUTION / IMPACT CARD GRIDS ---------- */
.contrib-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 44px;
}

@media (max-width:720px) {
    .contrib-grid {
        grid-template-columns: 1fr;
    }
}

.contrib-card {
    position: relative;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 28px;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contrib-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contrib-card .bignum {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 96px;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.contrib-card h4 {
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.contrib-card p {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* Divider for dark-themed cards */
.contrib-card h4,
.principle-card h4,
.gov-principle-card h4,
.value-card h4,
.people-card h4,
.hero-footer-section strong {
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Divider for light-themed cards */
.stat-card h4,
.sig-item h4,
.edu-impact-card h4,
.edu-degree-card h4,
.side-card h4 {
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(27, 79, 156, 0.08);
}

.contrib-card .impact-label {
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.4;
    z-index: 1;
    font-weight: 700;
    color: var(--coral);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 14px;
    display: block;
}

.contrib-card .impact-text {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}



/* signature impact areas (light section, numbered list) */
.sig-list {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media (max-width:720px) {
    .sig-list {
        grid-template-columns: 1fr;
    }
}

.sig-item {
    background: #fff;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, background 0.3s;
}

.sig-item:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.25);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.2);
}

.sig-item:first-child {
    padding-top: 26px;
}

.sig-item h4 {
    color: var(--blue);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sig-item h4 .num {
    color: var(--coral);
    font-weight: 800;
    margin-right: 6px;
}

.sig-item p {
    color: var(--blue-deep);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}



.sig-item .impact {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--blue);
    font-family: var(--serif);
    font-style: italic;
    transition: color 0.3s ease, border-color 0.3s ease;
}



.sig-item .impact b {
    font-weight: 700;
    font-style: normal;
}

/* ---------- PEOPLE PROGRAM (light, two column feature) ---------- */
.people-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 56px;
    margin-top: 20px;
}

@media (max-width:860px) {
    .people-grid {
        grid-template-columns: 1fr;
    }
}

.people-card {
    background: #fff;
    border: 1px solid rgba(27, 79, 156, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 10px 30px -10px rgba(20, 40, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
    margin-bottom: 20px;
}

.people-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 79, 156, 0.2);
    box-shadow: 0 20px 40px -15px rgba(20, 40, 80, 0.12);
}

.people-card h4 {
    color: var(--blue);
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Purpose and Impact decorative cards */
.people-card.purpose-card,
.people-card.impact-card {
    color: #fff;
    border: none;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 220px;
}

.people-card.purpose-card {
    background: var(--navy-card);
}

.people-card.impact-card {
    background: var(--navy-card);
}

.people-card.purpose-card h4,
.people-card.impact-card h4 {
    color: #fff;
}

.people-card.purpose-card p,
.people-card.impact-card p,
.people-card.purpose-card ul,
.people-card.impact-card ul,
.people-card.purpose-card li,
.people-card.impact-card li {
    color: rgba(255, 255, 255, 0.95);
}

.people-card.purpose-card::after,
.people-card.impact-card::after {
    display: none;
}

.people-card.purpose-card:hover,
.people-card.impact-card:hover {
    transform: translateY(-6px);
}

/* ---------- GOVERNANCE (dark blue two-col) ---------- */
.gov-description {
    max-width: 100%;
    margin-bottom: 40px;
}

.gov-description p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.gov-h4-margin-top {
    margin-top: 48px;
    margin-bottom: 20px;
}

.gov-principles-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gov-principle-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease;
}

.gov-principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gov-principle-card h4 {
    color: var(--coral);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gov-principle-card p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width:720px) {
    .gov-principles-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- EDUCATION ---------- */
.edu-section {
    position: relative;
    overflow: hidden;
}

.edu-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.edu-section-header {
    font-family: var(--display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--blue);
    margin-top: 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.edu-section-header-margin {
    margin-top: 44px;
}

.languages-text {
    margin-top: 24px;
    font-size: 14px;
    color: var(--blue-deep);
}

/* ---------- CLOSING / PHILOSOPHY ---------- */
.closing {
    background: var(--blue);
    color: #fff;
    text-align: center;
}

.closing h2 {
    margin-bottom: 30px;
    color: #fff;
}

.closing h4 {
    color: #fff;
}

.closing p {
    color: rgba(255, 255, 255, 0.88);
}

.closing .quote-block::before {
    color: var(--coral);
    opacity: 0.12;
}

.closing .quote-block p {
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
    line-height: 1.65;
}

.closing .final {
    margin-top: 56px;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

footer.site-footer {
    background: var(--navy-card);
    color: #fff;
    text-align: center;
    padding: 28px 0;
    font-size: 13px;
}

footer.site-footer p {
    color: #fff;
    margin: 0;
}

/* fade-in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* Executive Summary Custom Background */
#summary::before {
    content: "";
    position: absolute;
    top: 42%;
    left: -300px;
    transform: translateY(-50%);
    width: 1200px;
    height: 100%;
    background-image: url('../images/2.svg?v=2');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    mix-blend-mode: multiply;
    opacity: 0.08;
    /* Elegant subtle watermark */
    z-index: 1;
    pointer-events: none;
}

/* Principles Section Custom Background */
#principles::before {
    content: "";
    position: absolute;
    top: 40%;
    right: -550px;
    transform: translateY(-50%);
    width: 1500px;
    height: 100%;
    background-image: url('../images/3.svg?v=2');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    mix-blend-mode: screen;
    /* Blends gray lines into light white/blue on dark background */
    opacity: 0.12;
    /* Subtle compass watermark */
    z-index: 1;
    pointer-events: none;
}

/* Leadership at Scale Custom Background */
#scale::before {
    content: "";
    position: absolute;
    top: 65%;
    right: -400px;
    transform: translateY(-50%);
    width: 1200px;
    height: 100%;
    background-image: url('../images/4.svg?v=2');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    mix-blend-mode: multiply;
    opacity: 0.08;
    /* Subtle connected rings watermark */
    z-index: 1;
    pointer-events: none;
}

/* Strategic Contribution Areas Custom Background */
#impact::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -350px;
    /* Shift to the left to crop it */
    transform: translateY(-50%);
    width: 1500px;
    height: 100%;
    background-image: url('../images/5.svg?v=2');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    mix-blend-mode: screen;
    /* Blends gray lines into light white/blue on dark background */
    opacity: 0.08;
    /* Soft and elegant left-aligned watermark */
    z-index: 1;
    pointer-events: none;
}

/* Signature Impact Areas Custom Background */
#signature {
    position: relative;
    overflow: hidden;
}

#signature::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -650px;
    /* Shift to the right to crop it further */
    transform: translateY(-50%);
    width: 1500px;
    height: 100%;
    background-image: url('../images/6.svg?v=2');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.6;
    /* Delicate fingerprint watermark on light background */
    z-index: 1;
    pointer-events: none;
}

#building-people {
    position: relative;
    overflow: hidden;
}

#building-people::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -350px;
    /* Shift to the right to partially crop */
    transform: translateY(-50%);
    width: 1200px;
    height: 100%;
    background-image: url('../images/7.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.08;
    /* Very subtle watermark on light background */
    z-index: 1;
    pointer-events: none;
}

/* Personal Philosophy / Closing Section Background */
#personal-philosophy {
    position: relative;
    overflow: hidden;
}

#personal-philosophy::before {
    content: "";
    position: absolute;
    bottom: -170px;
    left: -250px;
    /* Crop from the right and bottom edges */
    width: 1200px;
    height: 1200px;
    background-image: url('../images/10.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.12;
    /* Subtle white watermark on dark navy background */
    z-index: 1;
    pointer-events: none;
}

/* Education Section Background Watermark */
#education {
    position: relative;
    overflow: hidden;
}

#education::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -400px;
    /* Shift right to partially crop the laurel wreath */
    transform: translateY(-50%);
    width: 1200px;
    height: 1200px;
    background-image: url('../images/9.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.18;
    /* Subtle blue laurel on light background */
    z-index: 1;
    pointer-events: none;
}

/* Governance Section Background Watermark */
#governance {
    position: relative;
    overflow: hidden;
}

#governance::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -450px;
    /* Partially crop shield icon on the right */
    transform: translateY(-50%);
    width: 1200px;
    height: 1200px;
    background-image: url('../images/8.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.1;
    /* Subtle white shield watermark on dark navy background */
    z-index: 1;
    pointer-events: none;
}