/* =========================================
   UVARI JOB FAIR 2026
   GLOBAL STYLES
========================================= */

:root {

    --navy: #071A2B;

    --green: #4F7D32;

    --leaf-green: #7FAE45;

    --blue: #1677B8;

    --off-white: #F7F6F1;

    --white: #FFFFFF;

    --text: #18212B;

    --muted: #66717D;

    --border: #E5E7EB;

    --shadow: 0 10px 35px rgba(7, 26, 43, 0.08);

    --transition: all 0.3s ease;
}


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background: var(--off-white);

    line-height: 1.7;

    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Playfair Display', serif;

    line-height: 1.2;
}


a {

    text-decoration: none;

    color: inherit;
}


img {

    max-width: 100%;

    display: block;
}


/* =========================================
   BUTTONS
========================================= */

.btn-uvari {

    background: var(--green);

    color: white;

    border: 2px solid var(--green);

    padding: 12px 25px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);
}


.btn-uvari:hover {

    background: var(--navy);

    border-color: var(--navy);

    color: white;

    transform: translateY(-2px);
}


.btn-outline-uvari {

    background: transparent;

    color: var(--navy);

    border: 2px solid var(--navy);

    padding: 11px 25px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);
}


.btn-outline-uvari:hover {

    background: var(--navy);

    color: white;
}


/* =========================================
   SECTION
========================================= */

.section-padding {

    padding: 100px 0;
}


.section-label {

    display: inline-block;

    color: var(--green);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.section-title {

    font-size: clamp(2.2rem, 5vw, 4rem);

    font-weight: 600;

    color: var(--navy);

    margin-bottom: 20px;
}


.section-description {

    max-width: 700px;

    color: var(--muted);

    font-size: 1.05rem;
}


/* =========================================
   CARD
========================================= */

.uvari-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 30px;

    box-shadow: var(--shadow);

    transition: var(--transition);
}


.uvari-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(7, 26, 43, 0.12);
}


/* =========================================
   NAVBAR
========================================= */

.uvari-navbar {

    background: rgba(7, 26, 43, 0.97);

    padding: 15px 0;

    transition: var(--transition);
}


.navbar-brand {

    color: white !important;

    font-weight: 700;

    letter-spacing: 1px;
}


.navbar-brand span {

    color: var(--leaf-green);
}


.navbar-nav .nav-link {

    color: rgba(255, 255, 255, 0.8) !important;

    margin: 0 8px;

    font-size: 0.95rem;

    transition: var(--transition);
}


.navbar-nav .nav-link:hover {

    color: var(--leaf-green) !important;
}


/* =========================================
   HERO
========================================= */
/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    padding-top: 100px;
    padding-bottom: 60px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 43, 0.96),
            rgba(7, 26, 43, 0.78),
            rgba(7, 26, 43, 0.35)
        ),

        url('../assets/hero-village.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}


/* =========================================
   HERO ROW
========================================= */

.hero-row {

    min-height: 650px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {

    color: white;

    max-width: 780px;

    position: relative;

    z-index: 2;

    padding-top: 20px;
}


/* =========================================
   HERO LABEL
========================================= */

.hero-label {

    display: inline-block;

    color: var(--leaf-green);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

    padding: 8px 16px;

    border: 1px solid
        rgba(127, 174, 69, 0.5);

    border-radius: 50px;

    background:
        rgba(79, 125, 50, 0.12);
}


/* =========================================
   HERO TITLE
========================================= */

.hero-title {

    font-size: clamp(
        3rem,
        6vw,
        5.5rem
    );

    margin-bottom: 25px;

    font-weight: 600;

    letter-spacing: -2px;

    max-width: 800px;

    line-height: 1.05;
}


.hero-title span {

    color: var(--leaf-green);
}


/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-description {

    font-size: 1.1rem;

    color:
        rgba(255, 255, 255, 0.8);

    max-width: 650px;

    margin-bottom: 35px;

    line-height: 1.7;
}


/* =========================================
   HERO META
========================================= */

.hero-meta {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;

    margin-bottom: 35px;

    color:
        rgba(255, 255, 255, 0.85);
}


.hero-meta i {

    color: var(--leaf-green);

    margin-right: 8px;
}


/* =========================================
   HERO ACTIONS
========================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================
   HERO IMAGE WRAPPER
========================================= */

.hero-image-wrapper {

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;

    padding-left: 30px;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image {

    width: 100%;

    max-width: 480px;

    height: 480px;

    object-fit: cover;

    border-radius: 24px;

    display: block;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.25);
}
/* =========================================
   STATS
========================================= */

.stats-section {

    background: white;

    padding: 60px 0;
}


.stat-item {

    text-align: center;

    padding: 20px;

    border-right: 1px solid var(--border);
}


.stat-item:last-child {

    border-right: none;
}


.stat-number {

    font-family: 'Playfair Display', serif;

    font-size: 3rem;

    font-weight: 700;

    color: var(--navy);
}


.stat-label {

    color: var(--muted);

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================
   FOOTER
========================================= */

.footer {

    background: var(--navy);

    color: white;

    padding: 70px 0 25px;
}


.footer-title {

    font-family: 'Playfair Display', serif;

    font-size: 1.5rem;

    margin-bottom: 20px;
}


.footer p {

    color: rgba(255, 255, 255, 0.65);
}


.footer-links {

    list-style: none;

    padding: 0;
}


.footer-links li {

    margin-bottom: 10px;
}


.footer-links a {

    color: rgba(255, 255, 255, 0.65);

    transition: var(--transition);
}


.footer-links a:hover {

    color: var(--leaf-green);

    padding-left: 5px;
}


.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 50px;

    padding-top: 20px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.85rem;

}

/* =========================================
   HERO TREE
========================================= */

.hero-tree {

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    color: var(--leaf-green);

}


.hero-tree i {

    font-size: 18rem;

    position: relative;

    z-index: 2;

    filter: drop-shadow(
        0 20px 40px rgba(0, 0, 0, 0.25)
    );

    animation: treeFloat 5s ease-in-out infinite;
}


.tree-glow {

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.12);

    filter: blur(30px);
}


.tree-label {

    position: absolute;

    bottom: 40px;

    right: 20px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.85rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    text-align: center;
}


.tree-label strong {

    display: block;

    color: var(--leaf-green);

    font-size: 1.1rem;

    margin-top: 5px;
}


@keyframes treeFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}
/* =========================================
   CHALLENGE SECTION
========================================= */

.challenge-section {

    background: var(--off-white);

    position: relative;

}


.text-green {

    color: var(--green);

}


.challenge-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}


.challenge-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 28px;

    position: relative;

    min-height: 250px;

    transition: var(--transition);

}


.challenge-card:hover {

    transform: translateY(-8px);

    border-color: rgba(79, 125, 50, 0.4);

    box-shadow: var(--shadow);

}


.challenge-number {

    position: absolute;

    top: 20px;

    right: 22px;

    font-family: 'Playfair Display', serif;

    font-size: 0.9rem;

    color: #AAB2B9;

}


.challenge-icon {

    width: 55px;

    height: 55px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(79, 125, 50, 0.1);

    color: var(--green);

    font-size: 1.4rem;

    margin-bottom: 25px;

}


.challenge-card h5 {

    font-family: 'Inter', sans-serif;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 12px;

}


.challenge-card p {

    color: var(--muted);

    font-size: 0.9rem;

    margin-bottom: 0;

    line-height: 1.6;

}
/* =========================================
   UVARI EMPLOYMENT ECOSYSTEM
========================================= */

.ecosystem-section {

    background: white;

    position: relative;

}


.ecosystem-wrapper {

    max-width: 1100px;

    margin: 25px auto 0;

    position: relative;

}


/* =========================================
   CENTER UVARI NODE
========================================= */

.ecosystem-center {

    width: 180px;

    height: 180px;

    margin: 0 auto;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    z-index: 3;

    box-shadow:
        0 20px 50px rgba(7, 26, 43, 0.2);
}


.ecosystem-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--leaf-green);

    font-size: 1.5rem;

    margin-bottom: 10px;
}


.ecosystem-center h4 {

    margin: 0;

    font-family: 'Inter', sans-serif;

    font-weight: 700;

    letter-spacing: 1px;
}


.ecosystem-center span {

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

    margin-top: 5px;
}


/* =========================================
   VERTICAL CONNECTION
========================================= */

.vertical-line {

    width: 2px;

    height: 45px;

    background: var(--leaf-green);

    margin: 0 auto;

    position: relative;
}


.vertical-line::after {

    content: "";

    position: absolute;

    bottom: -5px;

    left: 50%;

    transform: translateX(-50%);

    width: 10px;

    height: 10px;

    background: var(--leaf-green);

    border-radius: 50%;
}


/* =========================================
   ECOSYSTEM CARDS
========================================= */

.ecosystem-cards {

    position: relative;

}


.ecosystem-card {

    height: 100%;

    min-height: 190px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 28px;

    transition: var(--transition);

    display: flex;

    gap: 20px;

}


.ecosystem-card:hover {

    transform: translateY(-7px);

    background: white;

    border-color: rgba(79, 125, 50, 0.35);

    box-shadow: var(--shadow);

}


.ecosystem-card-icon {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    border-radius: 15px;

    background: white;

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.3rem;

    box-shadow: 0 5px 20px rgba(7, 26, 43, 0.07);
}


.ecosystem-card h5 {

    font-family: 'Inter', sans-serif;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--navy);
}


.ecosystem-card p {

    color: var(--muted);

    font-size: 0.88rem;

    margin: 0;

    line-height: 1.6;
}


/* =========================================
   OUTCOME
========================================= */

.ecosystem-outcome {

    text-align: center;

    margin-top: 50px;

}


.outcome-line {

    height: 40px;

    width: 2px;

    background: var(--green);

    margin: 0 auto 15px;
}


.outcome-box {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    background: var(--green);

    color: white;

    padding: 18px 30px;

    border-radius: 60px;

    box-shadow: 0 15px 40px rgba(79, 125, 50, 0.2);
}


.outcome-box > i {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;
}


.outcome-box small {

    display: block;

    font-size: 0.65rem;

    letter-spacing: 2px;

    opacity: 0.7;

}


.outcome-box h4 {

    margin: 2px 0 0;

    font-family: 'Inter', sans-serif;

    font-size: 1rem;

    font-weight: 700;
}
/* =========================================
   NOT JUST A JOB FAIR
========================================= */

.model-section {

    background: var(--off-white);

}


/* =========================================
   TRADITIONAL MODEL
========================================= */

.traditional-model {

    height: 100%;

    background: #ECEFF1;

    border: 1px solid #DDE2E5;

    border-radius: 25px;

    padding: 40px;

}


.model-tag {

    display: inline-block;

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--muted);

    margin-bottom: 18px;
}


.traditional-model h3,
.uvari-model h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    color: var(--navy);

    margin-bottom: 15px;
}


.traditional-model > p,
.uvari-model > p {

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================
   FLOW
========================================= */

.traditional-flow,
.uvari-flow {

    margin-top: 20px;

}


.flow-item {

    display: flex;

    align-items: center;

    gap: 18px;

}


.flow-item > span {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(79, 125, 50, 0.12);

    color: var(--green);

    font-size: 0.75rem;

    font-weight: 700;

    flex-shrink: 0;
}


.flow-item strong {

    display: block;

    color: var(--navy);

    font-size: 0.95rem;

    margin-bottom: 2px;
}


.flow-item small {

    display: block;

    color: var(--muted);

    font-size: 0.75rem;
}


/* =========================================
   TRADITIONAL FLOW
========================================= */

.muted-flow > span {

    background: #DDE1E4;

    color: #7B858E;

}


.muted-flow strong {

    color: #59636C;

}


.flow-arrow {

    margin: 10px 0;

    padding-left: 11px;

    color: #9CA5AC;

    font-size: 1.2rem;
}


/* =========================================
   UVARI MODEL
========================================= */

.uvari-model {

    height: 100%;

    background: white;

    border: 1px solid rgba(79, 125, 50, 0.25);

    border-radius: 25px;

    padding: 40px;

    box-shadow: var(--shadow);

}


.uvari-model .model-tag {

    color: var(--green);

}


/* =========================================
   UVARI FLOW
========================================= */

.flow-connector {

    width: 2px;

    height: 22px;

    background: rgba(79, 125, 50, 0.35);

    margin-left: 18px;
}


.final-flow > span {

    background: var(--green);

    color: white;
}


/* =========================================
   CENTER DIVIDER
========================================= */

.model-divider {

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}


.divider-line {

    width: 1px;

    flex: 1;

    background: var(--border);

}


.divider-circle {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 20px 0;

    box-shadow: 0 10px 25px rgba(7, 26, 43, 0.15);
}
/* =========================================
   FIND YOUR PATH
========================================= */

.path-section {

    background: var(--navy);

    position: relative;

    overflow: hidden;

}


/* subtle background decoration */

.path-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.06);

    top: -250px;

    right: -150px;

}


.path-section .section-label {

    color: var(--leaf-green);

}


.path-section .section-title {

    color: white;

}


.path-section .section-description {

    color: rgba(255, 255, 255, 0.65);

}


/* =========================================
   PATH CARD
========================================= */

.path-card {

    min-height: 430px;

    padding: 30px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: white;

    position: relative;

    overflow: hidden;

    transition: var(--transition);

}


/* Hover background */

.path-card::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.1);

    right: -80px;

    bottom: -80px;

    transition: var(--transition);

}


.path-card:hover {

    transform: translateY(-10px);

    background: rgba(255, 255, 255, 0.1);

    border-color: rgba(127, 174, 69, 0.45);

    color: white;

}


.path-card:hover::after {

    width: 300px;

    height: 300px;

}


/* =========================================
   CARD TOP
========================================= */

.path-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.path-icon {

    width: 58px;

    height: 58px;

    border-radius: 17px;

    background: rgba(127, 174, 69, 0.15);

    color: var(--leaf-green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

}


.path-number {

    font-size: 0.75rem;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.35);

    font-weight: 700;

}


/* =========================================
   CARD CONTENT
========================================= */

.path-card-content {

    position: relative;

    z-index: 2;

}


.path-card-content h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin-bottom: 15px;

    color: white;

}


.path-card-content p {

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;

    line-height: 1.7;

    margin: 0;

}


/* =========================================
   CARD ARROW
========================================= */

.path-card-arrow {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.85rem;

    font-weight: 600;

}


.path-card-arrow i {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--green);

    transition: var(--transition);

}


.path-card:hover .path-card-arrow i {

    transform: rotate(45deg);

}
/* =========================================
   OPPORTUNITIES PREVIEW
========================================= */

.opportunities-preview {

    background: white;

}


/* =========================================
   VIEW ALL LINK
========================================= */

.view-all-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--green);

    font-size: 0.9rem;

    font-weight: 700;

    transition: var(--transition);

}


.view-all-link i {

    transition: var(--transition);

}


.view-all-link:hover {

    color: var(--navy);

}


.view-all-link:hover i {

    transform: translateX(5px);

}


/* =========================================
   JOB CARD
========================================= */

.job-preview-card {

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 28px;

    height: 100%;

    transition: var(--transition);

}


.job-preview-card:hover {

    transform: translateY(-8px);

    background: white;

    border-color: rgba(79, 125, 50, 0.3);

    box-shadow: var(--shadow);

}


/* =========================================
   JOB HEADER
========================================= */

.job-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

}


.company-logo {

    width: 52px;

    height: 52px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: var(--green);

    font-size: 1.3rem;

    box-shadow:
        0 5px 20px rgba(7, 26, 43, 0.07);

}


.job-badge {

    background: rgba(79, 125, 50, 0.1);

    color: var(--green);

    border-radius: 50px;

    padding: 6px 12px;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.5px;

}


/* =========================================
   COMPANY
========================================= */

.job-company {

    color: var(--muted);

    font-size: 0.78rem;

    font-weight: 600;

    margin-bottom: 8px;

}


/* =========================================
   JOB TITLE
========================================= */

.job-title {

    font-family: 'Inter', sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 22px;

}


/* =========================================
   JOB DETAILS
========================================= */

.job-details {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 20px;

}


.job-details div {

    color: var(--muted);

    font-size: 0.82rem;

}


.job-details i {

    color: var(--green);

    margin-right: 7px;

}


/* =========================================
   JOB TAGS
========================================= */

.job-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 25px;

}


.job-tags span {

    border: 1px solid var(--border);

    background: white;

    color: var(--muted);

    border-radius: 50px;

    padding: 5px 10px;

    font-size: 0.65rem;

}


/* =========================================
   JOB FOOTER
========================================= */

.job-footer {

    border-top: 1px solid var(--border);

    padding-top: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.job-footer > span {

    color: var(--muted);

    font-size: 0.72rem;

}


.job-footer a {

    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--green);

    font-size: 0.78rem;

    font-weight: 700;

}


.job-footer a i {

    transition: var(--transition);

}


.job-footer a:hover i {

    transform: translate(3px, -3px);

}
/* =========================================
   WHO WE SERVE
========================================= */

.serve-section {

    background: var(--off-white);

}


.serve-title {

    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 6vw, 5rem);

    line-height: 0.98;

    color: var(--navy);

    margin-bottom: 30px;

}


.serve-title span {

    color: var(--green);

}


.serve-description {

    max-width: 430px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.8;

}


.serve-note {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 45px;

    color: var(--green);

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.serve-note i {

    font-size: 1.2rem;

}


/* =========================================
   SERVE LIST
========================================= */

.serve-list {

    border-top: 1px solid var(--border);

}


.serve-item {

    display: grid;

    grid-template-columns: 45px 55px 1fr 45px;

    align-items: center;

    gap: 20px;

    padding: 25px 10px;

    border-bottom: 1px solid var(--border);

    color: var(--navy);

    transition: var(--transition);

}


.serve-item:hover {

    padding-left: 20px;

    padding-right: 20px;

    background: white;

    color: var(--navy);

}


.serve-number {

    font-size: 0.7rem;

    font-weight: 700;

    color: #A3ABB2;

}


.serve-icon {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    background: white;

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.1rem;

    transition: var(--transition);

}


.serve-item:hover .serve-icon {

    background: var(--green);

    color: white;

    transform: rotate(-5deg);

}


.serve-content h3 {

    font-family: 'Inter', sans-serif;

    font-size: 1.05rem;

    font-weight: 700;

    margin: 0 0 5px;

}


.serve-content p {

    color: var(--muted);

    font-size: 0.8rem;

    margin: 0;

}


.serve-arrow {

    width: 40px;

    height: 40px;

    border: 1px solid var(--border);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}


.serve-item:hover .serve-arrow {

    background: var(--navy);

    border-color: var(--navy);

    color: white;

    transform: rotate(45deg);

}
/* =========================================
   VILLAGE IS THE VENUE
========================================= */

.village-section {

    background: white;

}


.village-highlights {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.village-highlight {

    display: flex;

    align-items: center;

    gap: 15px;

}


.highlight-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(79, 125, 50, 0.1);

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

}


.village-highlight strong {

    display: block;

    color: var(--navy);

    font-size: 0.9rem;

    margin-bottom: 3px;

}


.village-highlight span {

    display: block;

    color: var(--muted);

    font-size: 0.75rem;

}


/* =========================================
   VILLAGE MAP
========================================= */

.village-map {

    height: 620px;

    border-radius: 30px;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(127, 174, 69, 0.12),
            transparent 30%
        ),

        #F1F3EC;

    border: 1px solid #DDE3D7;

    position: relative;

    overflow: hidden;

}


/* =========================================
   MAP ROADS
========================================= */

.map-road {

    position: absolute;

    background: rgba(255, 255, 255, 0.8);

    border-radius: 100px;

}


.road-one {

    width: 120%;

    height: 55px;

    top: 45%;

    left: -10%;

    transform: rotate(-15deg);

}


.road-two {

    width: 120%;

    height: 45px;

    top: 52%;

    left: -10%;

    transform: rotate(30deg);

}


.road-three {

    width: 100%;

    height: 35px;

    top: 20%;

    left: 0;

    transform: rotate(-35deg);

}


/* =========================================
   CENTRAL VILLAGE
========================================= */

.map-center {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    z-index: 5;

    box-shadow:

        0 20px 50px rgba(7, 26, 43, 0.2);

}


.map-center-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.15);

    color: var(--leaf-green);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;

}


.map-center strong {

    font-size: 1rem;

    letter-spacing: 2px;

}


.map-center span {

    font-size: 0.55rem;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.6);

    margin-top: 3px;

}


/* =========================================
   MAP LOCATIONS
========================================= */

.map-location {

    position: absolute;

    border: none;

    background: transparent;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    cursor: pointer;

    z-index: 10;

}


.location-dot {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: white;

    border: 2px solid var(--green);

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    box-shadow:

        0 8px 25px rgba(7, 26, 43, 0.1);

    transition: var(--transition);

}


.map-location:hover .location-dot {

    background: var(--green);

    color: white;

    transform: scale(1.12);

}


.location-label {

    background: var(--navy);

    color: white;

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 0.65rem;

    white-space: nowrap;

    box-shadow:

        0 5px 15px rgba(7, 26, 43, 0.12);

}


/* =========================================
   LOCATION POSITIONS
========================================= */

.location-school {

    top: 12%;

    left: 18%;

}


.location-community {

    top: 18%;

    right: 15%;

}


.location-faith {

    top: 43%;

    left: 8%;

}


.location-jobs {

    top: 43%;

    right: 8%;

}


.location-skills {

    bottom: 12%;

    left: 20%;

}


.location-home {

    bottom: 10%;

    right: 18%;

}


/* =========================================
   MAP LEGEND
========================================= */

.map-legend {

    position: absolute;

    bottom: 20px;

    left: 25px;

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    z-index: 10;

}


.map-legend span {

    font-size: 0.65rem;

    color: var(--muted);

}


.map-legend i {

    font-size: 0.4rem;

    color: var(--green);

    margin-right: 5px;

}
/* =========================================
   VILLAGE MAP POPUP
========================================= */

.village-message {

    position: fixed;

    inset: 0;

    background: rgba(7, 26, 43, 0.45);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 9999;

    backdrop-filter: blur(5px);

}


.village-message-content {

    max-width: 500px;

    width: 100%;

    background: white;

    border-radius: 24px;

    padding: 40px;

    position: relative;

    box-shadow:

        0 25px 80px rgba(0, 0, 0, 0.2);

}


.village-message-content h4 {

    color: var(--navy);

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin-bottom: 15px;

}


.village-message-content p {

    color: var(--muted);

    line-height: 1.7;

    margin: 0;

}


.village-message-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 38px;

    height: 38px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: white;

    color: var(--navy);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}
/* =========================================
   IMPACT SECTION
========================================= */

.impact-section {

    background: var(--off-white);

    color: var(--text);

    position: relative;

    overflow: hidden;

}


.impact-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.05);

    top: -300px;

    right: -200px;

}


.impact-section .section-label {

    color: var(--leaf-green);

}


.impact-section .section-title {
    color: var(--navy);
}


.impact-section .section-description {
    color: var(--muted);
}


/* =========================================
   IMPACT DASHBOARD
========================================= */

.impact-dashboard {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid
        rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.12);

}


.impact-stat {

    padding: 40px 30px;

    border-right: 1px solid
        rgba(255, 255, 255, 0.12);

}


.impact-stat:last-child {

    border-right: none;

}


.impact-number {

    display: flex;

    align-items: baseline;

    color: var(--navy);

    font-family: 'Playfair Display', serif;

    font-size: 3.5rem;

    line-height: 1;

    margin-bottom: 12px;

}


.impact-number > span:last-child {

    color: var(--leaf-green);

    font-size: 2rem;

}


.impact-label {

    color: var(--leaf-green);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.journey-heading strong {
    color: var(--navy);
}

.journey-step-content h4 {
    color: var(--navy);
}

.journey-step-content p {
    color: var(--muted);
}


/* =========================================
   IMPACT JOURNEY
========================================= */

.impact-journey {

    margin-top: 70px;

}


.journey-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 20px;

}


.journey-heading span {

    color: var(--leaf-green);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 2px;

}


.journey-heading strong {

    font-family: 'Playfair Display', serif;

    font-size: 1.5rem;

    font-weight: 400;

    color: var(--navy);

}


/* =========================================
   JOURNEY STEP
========================================= */

.journey-step {

    display: grid;

    grid-template-columns:
        45px 55px 1fr 40px;

    align-items: center;

    gap: 20px;

    padding: 25px 15px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.1);

    transition: var(--transition);

}


.journey-step:hover {

    background: rgba(255, 255, 255, 0.04);

    padding-left: 25px;

    padding-right: 25px;

}


.journey-step-number {

    color: rgba(255, 255, 255, 0.3);

    font-size: 0.7rem;

    font-weight: 700;

}


.journey-step-icon {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(127, 174, 69, 0.12);

    color: var(--leaf-green);

}


.journey-step-content h4 {

    color: var(--navy);

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 5px;

}


.journey-step-content p {

    color: var(--muted);
}


.journey-arrow {

    color: var(--leaf-green);

    font-size: 1.3rem;

}


/* =========================================
   FINAL IMPACT
========================================= */

.journey-final {

    margin-top: 25px;

    padding: 25px 30px;

    border-radius: 20px;

    background: var(--green);

    display: flex;

    align-items: center;

    gap: 18px;

}


.journey-final-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

}


.journey-final small {

    font-size: 0.6rem;

    letter-spacing: 2px;

    opacity: 0.7;

}


.journey-final h3 {

    font-family: 'Inter', sans-serif;

    font-size: 1.1rem;

    margin: 4px 0 0;

    font-weight: 700;

}
/* =========================================
   2026 - 2030 VISION
========================================= */

.vision-section {

    background: var(--off-white);

    overflow: hidden;

}


.vision-section .section-description {

    max-width: 650px;

}


/* =========================================
   ROADMAP
========================================= */

.vision-roadmap {

    position: relative;

    max-width: 1050px;

    margin: 90px auto 0;

    min-height: 950px;

}


/* =========================================
   CENTRAL TRUNK
========================================= */

.vision-trunk {

    position: absolute;

    width: 3px;

    height: 100%;

    background: linear-gradient(
        to bottom,
        var(--green),
        rgba(79, 125, 50, 0.15)
    );

    left: 50%;

    transform: translateX(-50%);

}


/* =========================================
   VISION NODE
========================================= */

.vision-node {

    position: absolute;

    width: 100%;

    display: flex;

    align-items: center;

}


.vision-year {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    font-family: 'Playfair Display', serif;

    font-size: 1rem;

    font-weight: 700;

    color: var(--green);

    z-index: 5;

}


/* =========================================
   DOT
========================================= */

.vision-dot {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background: var(--off-white);

    border: 3px solid var(--green);

    z-index: 4;

    display: flex;

    align-items: center;

    justify-content: center;

}


.vision-dot span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--green);

}


/* =========================================
   CARDS
========================================= */

.vision-card {

    width: 390px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 30px;

    box-shadow:
        0 10px 35px rgba(7, 26, 43, 0.05);

    transition: var(--transition);

}

.vision-card.vision-visible:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(7, 26, 43, 0.1);

    border-color:
        rgba(79, 125, 50, 0.3);

}


.vision-phase {

    display: inline-block;

    color: var(--green);

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.vision-card h3 {

    font-family: 'Playfair Display', serif;

    color: var(--navy);

    font-size: 1.7rem;

    line-height: 1.1;

    margin-bottom: 12px;

}


.vision-card p {

    color: var(--muted);

    font-size: 0.8rem;

    line-height: 1.7;

    margin: 0;

}


/* =========================================
   ALTERNATING POSITIONS
========================================= */

.vision-2026 {

    top: 0;

}


.vision-2026 .vision-card {

    margin-left: auto;

}


.vision-2027 {

    top: 190px;

}


.vision-2027 .vision-card {

    margin-right: auto;

}


.vision-2028 {

    top: 380px;

}


.vision-2028 .vision-card {

    margin-left: auto;

}


.vision-2029 {

    top: 570px;

}


.vision-2029 .vision-card {

    margin-right: auto;

}


.vision-2030 {

    top: 760px;

}


.vision-2030 .vision-card {

    margin-left: auto;

}


/* =========================================
   FINAL CARD
========================================= */

.vision-final-card {

    background: var(--navy);

    border-color: var(--navy);

}


.vision-final-card h3 {

    color: white;

}


.vision-final-card p {

    color: rgba(255,255,255,0.6);

}


.vision-final-card .vision-phase {

    color: var(--leaf-green);

}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.vision-statement {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 70px;

}


.vision-statement-line {

    height: 1px;

    flex: 1;

    background: var(--border);

}


.vision-statement p {

    margin: 0;

    color: var(--navy);

    font-family: 'Playfair Display', serif;

    font-size: 1.2rem;

    white-space: nowrap;

}
/* =========================================
   VISION REVEAL ANIMATION
========================================= */

.vision-card {

    opacity: 0;

    transform: translateY(25px);

}


.vision-card.vision-visible {

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

}
/* =========================================
   THE MOVEMENT IS COLLECTIVE
========================================= */

.collective-section {

    background: white;

    overflow: hidden;

}


.collective-section .section-description {

    max-width: 720px;

}


/* =========================================
   ECOSYSTEM CONTAINER
========================================= */

.collective-ecosystem {

    position: relative;

    max-width: 1000px;

    height: 650px;

    margin: 70px auto 0;

}


/* =========================================
   CENTRAL CIRCLE
========================================= */

.ecosystem-center {

    position: absolute;

    width: 190px;

    height: 190px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--navy);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    z-index: 5;

    box-shadow:
        0 25px 60px rgba(7, 26, 43, 0.16);

}


.ecosystem-center-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: rgba(127, 174, 69, 0.15);

    color: var(--leaf-green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    margin-bottom: 10px;

}


.ecosystem-center strong {

    font-size: 1.1rem;

    letter-spacing: 3px;

}


.ecosystem-center span {

    color: var(--leaf-green);

    font-size: 0.65rem;

    letter-spacing: 2px;

}


.ecosystem-center small {

    color: rgba(255,255,255,0.4);

    font-size: 0.5rem;

    letter-spacing: 1.5px;

    margin-top: 8px;

}


/* =========================================
   CONNECTING LINES
========================================= */

.ecosystem-line {

    position: absolute;

    background: rgba(79, 125, 50, 0.18);

    z-index: 1;

}


.line-top {

    width: 2px;

    height: 150px;

    left: 50%;

    top: 0;

}


.line-bottom {

    width: 2px;

    height: 150px;

    left: 50%;

    bottom: 0;

}


.line-left {

    height: 2px;

    width: 210px;

    left: 17%;

    top: 50%;

}


.line-right {

    height: 2px;

    width: 210px;

    right: 17%;

    top: 50%;

}


/* =========================================
   STAKEHOLDER CARD
========================================= */

.stakeholder {

    position: absolute;

    z-index: 4;

    width: 245px;

    min-height: 90px;

    border: 1px solid var(--border);

    background: var(--off-white);

    border-radius: 18px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 12px;

    text-align: left;

    cursor: pointer;

    transition: var(--transition);

}


.stakeholder:hover {

    background: white;

    border-color:
        rgba(79, 125, 50, 0.4);

    box-shadow:
        0 15px 35px rgba(7, 26, 43, 0.1);

    transform: translateY(-5px);

}


.stakeholder-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 13px;

    background: white;

    color: var(--green);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}


.stakeholder:hover .stakeholder-icon {

    background: var(--green);

    color: white;

}


.stakeholder-text {

    flex: 1;

}


.stakeholder-text strong {

    display: block;

    color: var(--navy);

    font-size: 0.82rem;

    margin-bottom: 3px;

}


.stakeholder-text span {

    display: block;

    color: var(--muted);

    font-size: 0.65rem;

    line-height: 1.4;

}


.stakeholder > i {

    color: #A5ADB3;

    font-size: 0.75rem;

    transition: var(--transition);

}


.stakeholder:hover > i {

    color: var(--green);

    transform: rotate(45deg);

}


/* =========================================
   POSITIONS
========================================= */

.stakeholder-top {

    top: 0;

    left: 50%;

    transform: translateX(-50%);

}


.stakeholder-left {

    top: 42%;

    left: 0;

}


.stakeholder-right {

    top: 42%;

    right: 0;

}


.stakeholder-bottom-left {

    bottom: 25px;

    left: 10%;

}


.stakeholder-bottom-right {

    bottom: 25px;

    right: 10%;

}


.stakeholder-volunteers {

    bottom: 145px;

    left: 50%;

    transform: translateX(-50%);

}


.stakeholder-media {

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.collective-bottom {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

    color: var(--muted);

    font-size: 0.65rem;

    letter-spacing: 1.5px;

}


.collective-bottom i {

    color: var(--green);

}


.collective-bottom strong {

    color: var(--navy);

    font-size: 0.7rem;

    letter-spacing: 2px;

}
/* =========================================
   STAKEHOLDER POPUP
========================================= */

.stakeholder-message {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: rgba(7, 26, 43, 0.5);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

}


.stakeholder-message-box {

    position: relative;

    width: 100%;

    max-width: 500px;

    background: white;

    border-radius: 24px;

    padding: 40px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.2);

}


.stakeholder-message-box h4 {

    color: var(--navy);

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    line-height: 1.1;

    margin-bottom: 15px;

}


.stakeholder-message-box p {

    color: var(--muted);

    line-height: 1.7;

    font-size: 0.9rem;

    margin: 0;

}


.stakeholder-message-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: white;

    color: var(--navy);

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

}
.vision-card {
    opacity: 0;
    transform: translateY(25px);
}

.vision-card.vision-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.vision-card.vision-visible:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(7, 26, 43, 0.1);

    border-color:
        rgba(79, 125, 50, 0.3);
}
/* =========================================
   FINAL CALL TO ACTION
========================================= */

.final-cta-section {

    background: var(--navy);

    color: white;

    position: relative;

    overflow: hidden;

}


.final-cta-section::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(127, 174, 69, 0.13),
            transparent 65%
        );

    top: -350px;

    left: 50%;

    transform: translateX(-50%);

    pointer-events: none;

}


.final-cta-wrapper {

    position: relative;

    z-index: 2;

    text-align: center;

}


/* =========================================
   LABEL
========================================= */

.final-cta-label {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    color: var(--leaf-green);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 2px;

}


.final-cta-label span {

    width: 30px;

    height: 1px;

    background: var(--leaf-green);

}


/* =========================================
   TITLE
========================================= */

.final-cta-title {

    font-family: 'Playfair Display', serif;

    font-size: clamp(
        3.5rem,
        7vw,
        6.5rem
    );

    line-height: 0.95;

    font-weight: 400;

    color: white;

    margin: 30px auto;

    max-width: 950px;

}


.final-cta-title span {

    color: var(--leaf-green);

}


.final-cta-description {

    max-width: 650px;

    margin: 0 auto;

    color: rgba(255,255,255,0.55);

    font-size: 0.9rem;

    line-height: 1.8;

}


/* =========================================
   EVENT DETAILS
========================================= */

.final-event-details {

    display: flex;

    justify-content: center;

    gap: 60px;

    margin: 50px 0;

}


.final-event-detail {

    display: flex;

    align-items: center;

    gap: 12px;

    text-align: left;

}


.final-event-detail > i {

    width: 45px;

    height: 45px;

    border-radius: 12px;

    background:
        rgba(127,174,69,0.12);

    color: var(--leaf-green);

    display: flex;

    align-items: center;

    justify-content: center;

}


.final-event-detail small {

    display: block;

    color: rgba(255,255,255,0.35);

    font-size: 0.55rem;

    letter-spacing: 2px;

    margin-bottom: 4px;

}


.final-event-detail strong {

    display: block;

    color: white;

    font-size: 0.85rem;

}


/* =========================================
   ACTION CARDS
========================================= */

.final-actions {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    max-width: 900px;

    margin: 0 auto;

    text-align: left;

}


.final-action-card {

    background: rgba(255,255,255,0.06);

    border: 1px solid
        rgba(255,255,255,0.12);

    border-radius: 24px;

    padding: 35px;

    transition: var(--transition);

}


.final-action-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(127,174,69,0.4);

    background:
        rgba(255,255,255,0.08);

}


.final-action-dark {

    background: var(--green);

    border-color: var(--green);

}


.final-action-dark:hover {

    background: var(--green);

}


.final-action-top {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

}


.final-action-top span {

    color: rgba(255,255,255,0.5);

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.final-action-dark .final-action-top span {

    color: rgba(255,255,255,0.7);

}


.final-action-icon {

    width: 42px;

    height: 42px;

    border-radius: 12px;

    background:
        rgba(127,174,69,0.15);

    color: var(--leaf-green);

    display: flex;

    align-items: center;

    justify-content: center;

}


.final-action-dark .final-action-icon {

    background:
        rgba(255,255,255,0.15);

    color: white;

}


.final-action-card h3 {

    font-family: 'Playfair Display', serif;

    color: white;

    font-size: 2rem;

    line-height: 1.05;

    margin-bottom: 15px;

}


.final-action-card p {

    color: rgba(255,255,255,0.55);

    font-size: 0.78rem;

    line-height: 1.7;

    margin-bottom: 30px;

}


.final-action-dark p {

    color: rgba(255,255,255,0.75);

}


/* =========================================
   ACTION LINK
========================================= */

.final-action-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.final-action-link i {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}


.final-action-link:hover {

    color: white;

}


.final-action-link:hover i {

    transform: rotate(45deg);

    background: white;

    color: var(--navy);

}


/* =========================================
   FINAL STATEMENT
========================================= */

.final-statement {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 75px;

}


.final-statement-line {

    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,0.1);

}


.final-statement p {

    margin: 0;

    font-family: 'Playfair Display', serif;

    color: rgba(255,255,255,0.65);

    font-size: 1.05rem;

    white-space: nowrap;

}


.final-statement p span {

    color: var(--leaf-green);

}
/* =========================================
   FINAL SECTION SPACING & ALIGNMENT
========================================= */

/* Remove margin between sections */
section {
    margin: 0 !important;
}


/* =========================================
   COMMON SECTION SPACING
========================================= */

.section-padding {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}


/* =========================================
   STATS SECTION
========================================= */

.stats-section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    margin: 0 !important;
}


/* =========================================
   CHALLENGE SECTION
========================================= */

.challenge-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
    margin: 0 !important;
}

.challenge-section .row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* =========================================
   IMPACT - LIGHT BACKGROUND TEXT FIX
========================================= */

.impact-section {
    background: var(--off-white);
    color: var(--text);
}

/* Main heading */
.impact-section .section-title {
    color: var(--navy);
}

/* Description */
.impact-section .section-description {
    color: var(--muted);
}

/* Journey heading - "From access to empowerment" */
.journey-heading strong {
    color: var(--navy);
}

/* Journey step titles */
.journey-step-content h4 {
    color: var(--navy);
}

/* Journey step descriptions */
.journey-step-content p {
    color: var(--muted);
}

/* Journey numbers */
.journey-step-number {
    color: #A3ABB2;
}

/* Journey borders */
.journey-step {
    border-top-color: var(--border);
}

/* Hover */
.journey-step:hover {
    background: rgba(79, 125, 50, 0.04);
}
/* =========================================
   HERO IMAGE - RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hero-row {
        min-height: auto;
    }

    .hero-image-wrapper {

        margin-top: 50px;

        padding-left: 0;

        padding-bottom: 40px;
    }

    .hero-image {

        width: 100%;

        max-width: 500px;

        height: 380px;
    }

}

/* =========================================
   REGISTRATION POPUP MODAL
========================================= */

.registration-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 43, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: regOverlayFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.2s ease;
}

.registration-modal-overlay.closing {
    opacity: 0;
    pointer-events: none;
}

.registration-modal-dialog {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    border-radius: 28px;
    padding: 44px 36px 36px;
    position: relative;
    box-shadow: 0 25px 80px rgba(7, 26, 43, 0.35), 0 0 0 1px rgba(79, 125, 50, 0.12);
    text-align: center;
    transform: scale(0.92) translateY(20px);
    animation: regDialogPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.registration-modal-overlay.closing .registration-modal-dialog {
    transform: scale(0.95) translateY(10px);
    transition: transform 0.2s ease;
}

@keyframes regOverlayFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes regDialogPopIn {
    to {
        transform: scale(1) translateY(0);
    }
}

.registration-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.registration-modal-close:hover {
    background: var(--off-white);
    color: var(--green);
    transform: rotate(90deg);
    border-color: var(--green);
}

.registration-modal-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 125, 50, 0.12), rgba(22, 119, 184, 0.12));
    border: 2px solid rgba(79, 125, 50, 0.25);
    color: var(--green);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(79, 125, 50, 0.15);
}

.registration-modal-dialog .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--green);
    background: rgba(79, 125, 50, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.registration-modal-title {
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.registration-modal-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 380px;
}

.registration-modal-footer {
    display: flex;
    gap: 12px;
}

.registration-modal-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(79, 125, 50, 0.28);
    transition: all 0.25s ease;
}

.registration-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 125, 50, 0.38);
}

@media (max-width: 576px) {
    .registration-modal-dialog {
        padding: 36px 24px 28px;
        border-radius: 22px;
    }

    .registration-modal-title {
        font-size: 1.6rem;
    }

    .registration-modal-text {
        font-size: 0.92rem;
        margin-bottom: 22px;
    }

    .registration-modal-badge {
        width: 58px;
        height: 58px;
        font-size: 24px;
        margin-bottom: 16px;
    }
}



