* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #111111;
    background-color: #ffffff;
}

.navbar {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 100;
    position: fixed;
    top: 0px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
}

.site-title h1 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
}

.logo-name1 {
    color: #e5a900;
}

.site-title p {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.span1 {
    color: #008c5a;
}

.span2 {
    color: #e5a900;
}

.span3 {
    color: #d9381e;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar nav a {
    text-decoration: none;
    color: #111111;
    font-size: 19px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: #008c5a;
}


.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #111;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 10px;
    padding: 50px 0 0 5%;
    background-color: #ffffff;
    overflow: hidden;
    margin-top: 50px;
}

.hero-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.hero-label {
    color: #008c5a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero h1 {
    color: #111111;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #008c5a;
}

.hero-description {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 460px;
    background: radial-gradient(circle at left, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0) 100%);
    padding: 4px 8px 4px 0;
    border-radius: 6px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.9);
}

.primary-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background-color: #008c5a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.primary-button:hover {
    background-color: #006b44;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    border-right: 1px solid #e2e8f0;
}

.feature:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-icon {
    font-size: 18px;
    color: #008c5a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.feature h3 {
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.feature p {
    color: #666666;
    font-size: 11px;
    margin: 0;
    line-height: 1.2;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform: translateY(-40px);
}

.hero-visual img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: scale(1.2) translate(-10%, -80px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}



/* =========================
   ABOUT SECTION
========================= */

/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 60px 5% 10px;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* LEFT SIDE */

.about-intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-label {
    color: #008c5a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-line {
    width: 72px;
    height: 5px;
    background: linear-gradient(to right,
            #008c5a 50%,
            #fdbb30 50%);
    margin-bottom: 22px;
}

.about-intro h2 {
    color: #111111;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-intro h2 span {
    color: #008c5a;
}

.about-description {
    color: #333333;
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 24px;
}

.about-description.secondary {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* DECORATIVE ILLUSTRATION SPACE */

.about-illustration {
    min-height: 180px;
    margin-top: 10px;
}

/* RIGHT SIDE */

.about-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-card {
    min-height: 425px;
    padding: 28px 30px;
    border: 1px solid;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* CARD COLORS */

.about-card.educate {
    background-color: #f5fffb;
    border-color: #d8f1e8;
}

.about-card.empower {
    background-color: #fffdf5;
    border-color: #f5e8c4;
}

.about-card.impact {
    background-color: #faf9ff;
    border-color: #e2ddfa;
}

/* CARD ICON */

.about-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.educate .about-icon {
    background-color: #c9f5df;
    color: #008c5a;
}

.empower .about-icon {
    background-color: #ffe49a;
    color: #008c5a;
}

.impact .about-icon {
    background-color: #ddd3ff;
    color: #3820a8;
}

.about-icon i {
    font-size: 42px;
}

/* CARD TEXT */

.about-card h3 {
    color: #111111;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.card-line {
    width: 55px;
    height: 4px;
    margin-bottom: 25px;
    border-radius: 5px;
}

.educate .card-line {
    background-color: #008c5a;
}

.empower .card-line {
    background-color: #fdbb30;
}

.impact .card-line {
    background-color: #6c4ce8;
}

.about-card p {
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
}

/* MISSION BOX */

.mission-box {
    min-height: 170px;
    padding: 30px;
    background-color: #f3fbf8;
    border: 1px solid #dff1eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.mission-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #a8dcca;
    padding-right: 30px;
}

.mission-icon i {
    font-size: 55px;
    color: #008c5a;
}

.mission-content {
    flex: 1;
}

.mission-label {
    color: #008c5a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mission-content h3 {
    color: #111111;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
}



/* ========================================
   ECOSYSTEM SECTION
======================================== */

.ecosystem {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ecosystem-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* ========================================
   SECTION HEADING
======================================== */

.ecosystem-heading {
    margin-bottom: 35px;
}

.section-label {
    color: #008c5a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ecosystem-heading h2 {
    color: #111111;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
}

.ecosystem-heading h2 span {
    color: #008c5a;
}

.ecosystem-description {
    color: #333333;
    font-size: 20px;
    line-height: 1.6;
    max-width: 850px;
}


/* ========================================
   PROJECT GRID
   Moving Area + Constant Card
======================================== */

.project-grid {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}


/* ========================================
   MOVING PROJECT WINDOW
======================================== */

.project-window {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}


/* ========================================
   PROJECT TRACK
   All project cards stay in one line
======================================== */

.project-track {
    display: flex;
    gap: 20px;
    width: max-content;
}


/* ========================================
   PROJECT CARDS
======================================== */

.project-card {
    flex: 0 0 260px;
    min-height: 360px;
    padding: 30px;

    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}


/* ========================================
   PROJECT CARD TOP
======================================== */

.project-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}


/* ========================================
   PROJECT ICON
======================================== */

.project-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.project-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pennirent-icon {
    background-color: #d9f7e8;
    color: #008c5a;
}




/* ========================================
   PROJECT MINI LOGO
======================================== */

.project-mini-logo {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}


/* ========================================
   PROJECT TITLE
======================================== */

.project-card h3 {
    color: #111111;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}


/* ========================================
   PROJECT CATEGORY
======================================== */

.project-category {
    display: inline-block;
    width: fit-content;

    padding: 7px 14px;
    border-radius: 20px;

    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.pennirent-category {
    background-color: #e2f7eb;
    color: #008c5a;
}


/* ========================================
   PROJECT DESCRIPTION
======================================== */

.project-card p {
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}


/* ========================================
   LEARN MORE LINK
======================================== */

.project-link {
    color: #008c5a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
}

.project-link span {
    margin-left: 8px;
}


/* ========================================
   CONSTANT COMING SOON CARD
======================================== */

.coming-soon-card {
    flex: 0 0 280px;
    min-height: 360px;
    padding: 30px;

    border-radius: 14px;
    background: linear-gradient(145deg, #008c5a, #006b45);
    color: #ffffff;

    display: flex;
    flex-direction: column;

    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}


/* Decorative Background */

.coming-soon-card::after {
    content: "";

    position: absolute;
    width: 220px;
    height: 220px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    top: -70px;
    right: -70px;
}


/* Icon */

.coming-soon-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    margin-bottom: 25px;

    position: relative;
    z-index: 1;
}


/* Title */

.coming-soon-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 4px;

    position: relative;
    z-index: 1;
}


/* Coming Soon Text */

.coming-soon-card h3:nth-of-type(2) {
    color: #ffd21f;
    margin-bottom: 25px;
}


/* Description */

.coming-soon-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;

    position: relative;
    z-index: 1;
}


/* Button */

.coming-soon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 20px;

    border: 1px solid #ffffff;
    border-radius: 30px;

    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    margin-top: auto;

    position: relative;
    z-index: 1;
}

.coming-soon-button span {
    margin-left: 5px;
}


/* ========================================
   ECOSYSTEM BOTTOM
======================================== */

.ecosystem-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 40px;
}


/* Statistics */

.ecosystem-stats {
    display: flex;
    gap: 50px;
}

.ecosystem-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ecosystem-stat strong {
    color: #008c5a;
    font-size: 30px;
    font-weight: 700;
}

.ecosystem-stat span {
    color: #555555;
    font-size: 14px;
}


/* Bottom Text */

.ecosystem-bottom-text {
    color: #008c5a;
    font-size: 16px;
    line-height: 1.5;
    max-width: 320px;
}


/* ========================================
   ECOSYSTEM BACKGROUND DECORATION
======================================== */

.ecosystem::before {
    content: "";

    position: absolute;
    width: 320px;
    height: 320px;

    border: 1px solid #edf7f2;
    border-radius: 50%;

    top: -100px;
    right: -80px;
}

.ecosystem::after {
    content: "";

    position: absolute;
    width: 220px;
    height: 220px;

    background-color: #f1faf6;
    border-radius: 50%;

    top: 40px;
    right: 120px;

    opacity: 0.7;
}




/* ========================================
   COMMUNITY SECTION
======================================== */

.community {
    padding: 10px 20px 100px;
    background: #f9f9f9;
    overflow: hidden;
}

.community-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
}

.community-content {
    flex: 1;
    min-width: 0;
    z-index: 10;
}

.community .section-label {
    display: inline-block;
    margin-bottom: 25px;
    color: #008f5b;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
}

.community .section-label::after {
    content: "";
    display: block;
    width: 80px;
    height: 6px;
    margin-top: 10px;
    background: linear-gradient(to right,
            #008f5b 0 50%,
            #fbc21b 50% 100%);
    border-radius: 10px;
}

.community h2 {
    margin: 0;
    color: #101827;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.community h2 span {
    color: #00945f;
}

.community-description {
    max-width: 720px;
    margin: 25px 0 30px;
    color: #344054;
    font-size: 18px;
    line-height: 1.55;
}

/* ========================================
   COMMUNITY FEATURE CARDS
======================================== */

.community-cards {
    display: flex;
    gap: 20px;
    width: 100%;
}

.community-card {
    flex: 1;
    min-height: 315px;
    padding: 22px 24px;
    border: 1px solid transparent;
    border-radius: 18px;
    box-sizing: border-box;
}

.community-card-green {
    background: #effaf5;
    border-color: #e0f3e9;
}

.community-card-yellow {
    background: #fffaf0;
    border-color: #f8edd0;
}

.community-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-size: 32px;
    background: #00945f;
}

.community-card-yellow .community-card-icon {
    background: #ffbd18;
}

.community-card h3 {
    margin: 0;
    color: #101827;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.community-card-line {
    width: 38px;
    height: 5px;
    margin: 13px 0 17px;
    border-radius: 10px;
    background: #00945f;
}

.community-card-yellow .community-card-line {
    background: #ffbd18;
}

.community-card p {
    margin: 0;
    color: #526176;
    font-size: 15px;
    line-height: 1.55;
}

.community-card-arrow {
    width: 42px;
    height: 42px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #008f5b;
    background: #d9f5e7;
    text-decoration: none;
    font-size: 17px;
}

.community-card-yellow .community-card-arrow {
    color: #b27a00;
    background: #fff0c7;
}

/* ========================================
   COMMUNITY BOTTOM AREA
======================================== */

.community-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.community-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    border-radius: 40px;
    background: #00945f;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}

.community-divider {
    width: 2px;
    height: 55px;
    background: #8bd5b3;
}

.community-values {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #607089;
    font-size: 16px;
}

.community-values i {
    color: #00945f;
    font-size: 30px;
}

.community-values b {
    color: #00945f;
    font-size: 18px;
}

/* ========================================
   COMMUNITY IMAGE
======================================== */

.community-visual {
    position: relative;
    flex: 0 0 470px;
    min-height: 650px;
    transform: translate(-20px);
}

.community-main-image {
    position: absolute;
    top: 35px;
    right: -80px;
    width: 590px;
    height: 590px;
    object-fit: cover;
    border-radius: 48px 48% 50px 30px;
}

.community-flag {
    position: absolute;
    top: 0;
    right: -35px;
    z-index: 2;
}

.community-flag img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}




/* ========================================
   JOBS & OPPORTUNITIES SECTION
======================================== */

.jobs-section {
    padding: 120px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.jobs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-heading {
    margin-bottom: 35px;
}

.jobs-heading .section-label {
    display: inline-block;
    margin-bottom: 25px;
    color: #008f5b;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
}

.jobs-heading .section-label::after {
    content: "";
    display: block;
    width: 80px;
    height: 6px;
    margin-top: 10px;
    background: linear-gradient(to right,
            #008f5b 0 50%,
            #fbc21b 50% 100%);
    border-radius: 10px;
}

.jobs-heading h2 {
    margin: 0;
    color: #101827;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.jobs-heading h2 span {
    color: #00945f;
}

.jobs-heading p {
    max-width: 850px;
    margin: 22px 0 0;
    color: #344054;
    font-size: 18px;
    line-height: 1.5;
}

/* ========================================
   JOBS CARDS
======================================== */

.jobs-cards {
    display: flex;
    gap: 25px;
    width: 100%;
}

.jobs-card {
    position: relative;
    flex: 1;
    min-height: 380px;
    padding: 24px;
    border: 1px solid transparent;
    border-radius: 18px;
    box-sizing: border-box;
    overflow: hidden;
}

.jobs-card-green {
    background: #f0fbf6;
    border-color: #d9f1e5;
}

.jobs-card-yellow {
    background: #fffaf0;
    border-color: #f8ebc9;
}

.jobs-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.jobs-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #00945f;
    color: #ffffff;
    font-size: 31px;
    flex-shrink: 0;
}

.jobs-card-yellow .jobs-card-icon {
    background: #ffb914;
}

.jobs-card-tag {
    padding: 12px 18px;
    border-radius: 30px;
    background: #e2f8eb;
    color: #008f5b;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.jobs-card-yellow .jobs-card-tag {
    background: #fff2cf;
    color: #9a6b00;
}

.jobs-card h3 {
    margin: 22px 0 10px;
    color: #101827;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.jobs-card>p {
    max-width: 340px;
    margin: 0;
    color: #526176;
    font-size: 16px;
    line-height: 1.5;
}

/* ========================================
   JOB CATEGORY TAGS
======================================== */

.jobs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.jobs-tags span {
    padding: 9px 14px;
    border-radius: 30px;
    background: #ddf6e8;
    color: #008f5b;
    font-size: 13px;
    font-weight: 700;
}

.jobs-card-yellow .jobs-tags span {
    background: #fff0c9;
    color: #9a6b00;
}

/* ========================================
   JOB BUTTONS
======================================== */

.jobs-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-top: 25px;
    padding: 16px 22px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
}

.jobs-button-green {
    background: #00945f;
    color: #ffffff;
}

.jobs-button-yellow {
    background: #ffb914;
    color: #151515;
}

.jobs-button-outline {
    border: 2px solid #00945f;
    color: #008f5b;
    background: transparent;
}

.jobs-community-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.jobs-community-buttons .jobs-button {
    margin-top: 18px;
}

/* ========================================
   DECORATIVE CARD ICONS
======================================== */

.jobs-card-decoration {
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: #8be0b5;
    opacity: 0.75;
    pointer-events: none;
}

.jobs-card-decoration i:first-child {
    font-size: 85px;
}

.jobs-card-decoration i:last-child {
    position: absolute;
    right: -5px;
    bottom: 5px;
    font-size: 48px;
    color: #008f5b;
}

.jobs-card-yellow .jobs-card-decoration {
    color: #ffda67;
}

.jobs-card-yellow .jobs-card-decoration i {
    font-size: 90px;
    color: #ffb914;
}

.jobs-card:nth-child(3) .jobs-card-decoration i {
    font-size: 100px;
    color: #9be8bf;
}




/* ========================================
   EVENTS SECTION
======================================== */

.events-section {
    padding: 50px 0 40px;
    background: #f9f9f9;
    overflow: hidden;
}

.events-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.events-heading {
    margin-bottom: 35px;
}

.events-heading .section-label {
    display: inline-block;
    margin-bottom: 25px;
    color: #008f5b;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
}

.events-heading .section-label::after {
    content: "";
    display: block;
    width: 80px;
    height: 6px;
    margin-top: 10px;
    background: linear-gradient(to right,
            #008f5b 0 50%,
            #fbc21b 50% 100%);
    border-radius: 10px;
}

.events-heading h2 {
    margin: 0;
    color: #101827;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.events-heading h2 span {
    color: #00945f;
}

.events-heading p {
    max-width: 800px;
    margin: 22px 0 0;
    color: #344054;
    font-size: 18px;
    line-height: 1.5;
}

/* ========================================
   EVENT CARDS
======================================== */

.events-cards {
    display: flex;
    gap: 25px;
    width: 100%;
}

.event-card {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2eee8;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0, 80, 50, 0.04);
}

.event-image {
    position: relative;
    height: 170px;
    padding: 22px;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
}

.event-image-basics {
    background:
        radial-gradient(circle at 85% 90%, #ffc51c 0 22%, transparent 23%),
        linear-gradient(135deg, #006b45, #00a66b);
}

.event-image-ama {
    background:
        radial-gradient(circle at 50% 50%, #008c5a 0 25%, transparent 26%),
        linear-gradient(135deg, #064b3c, #008c5a);
}

.event-image-networking {
    background:
        linear-gradient(135deg,
            rgba(8, 34, 83, 0.85),
            rgba(31, 67, 130, 0.65)),
        linear-gradient(45deg, #13294b, #8b5e4b);
}

.event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.08) 46%, transparent 48%),
        linear-gradient(45deg, transparent 60%, rgba(255, 255, 255, 0.06) 61%, transparent 63%);
    pointer-events: none;
}

.event-status {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background: #08a86c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.event-image-content {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-image-content strong {
    font-size: 28px;
    line-height: 0.98;
    font-weight: 800;
}

.event-image-content strong:nth-child(2) {
    color: #ffca1c;
}

.event-image-content small {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}

.event-image-icon {
    position: absolute;
    right: 35px;
    bottom: 25px;
    z-index: 1;
    font-size: 75px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   EVENT DETAILS
======================================== */

.event-details {
    padding: 22px 24px 25px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    color: #63748b;
    font-size: 14px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-meta i {
    width: 18px;
    color: #00945f;
    font-size: 16px;
}

.event-details h3 {
    margin: 0 0 10px;
    color: #101827;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.event-details p {
    min-height: 72px;
    margin: 0;
    color: #607089;
    font-size: 15px;
    line-height: 1.5;
}

.event-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 22px;
    border: 2px solid #16b878;
    border-radius: 30px;
    color: #00945f;
    background: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.event-button i {
    font-size: 13px;
}

/* ========================================
   EVENTS BOTTOM BANNER
======================================== */

.events-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 28px;
    padding: 22px 30px;
    border-radius: 16px;
    background: #effaf5;
    box-sizing: border-box;
}

.events-bottom-icon {
    color: #00945f;
    font-size: 45px;
}

.events-bottom-text {
    flex: 1;
}

.events-bottom-text h3 {
    margin: 0 0 5px;
    color: #101827;
    font-size: 21px;
    font-weight: 800;
}

.events-bottom-text p {
    margin: 0;
    color: #607089;
    font-size: 14px;
    line-height: 1.4;
}

.events-bottom-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.events-follow-button,
.events-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.events-follow-button {
    background: #101827;
    color: #ffffff;
}

.events-whatsapp-button {
    background: #00945f;
    color: #ffffff;
}




/* =========================
   VIDEOS SECTION
========================= */

.videos-section {
    padding: 110px 0px;
    background: #ffffff;
}

.videos-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.videos-heading {
    max-width: 650px;
    margin-bottom: 45px;
}

.videos-heading h2 {
    margin: 15px 0 20px;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #17231c;
}

.videos-heading h2 span {
    color: #168447;
}

.videos-heading p {
    max-width: 560px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #66736b;
}

/* Video cards layout */

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

/* Individual card */

.video-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6eee8;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(20, 65, 38, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(20, 65, 38, 0.12);
}

/* Thumbnail */

.video-thumbnail {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #dcefe2;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Category label */

.video-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #ffffff;
    color: #168447;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Play button */

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #f4c542;
    color: #17231c;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
}

/* Video details */

.video-details {
    padding: 25px;
}

.video-details h3 {
    margin: 0 0 12px;
    color: #17231c;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.video-details p {
    min-height: 52px;
    margin: 0 0 22px;
    color: #718078;
    font-size: 14px;
    line-height: 1.7;
}

/* Watch link */

.video-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #168447;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.video-watch-link i {
    font-size: 12px;
}

.video-watch-link:hover {
    gap: 14px;
}

/* Bottom action */

.videos-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid #e5ece7;
}

.videos-bottom p {
    margin: 0;
    color: #718078;
    font-size: 14px;
}

.videos-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    background: #168447;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.videos-button:hover {
    background: #106b38;
    transform: translateY(-2px);
}




/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 50px 0 50px;
    background: #f3fff8;
    overflow: hidden;
}

.contact-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: start;
}

/* Left side */

.contact-left {
    position: relative;
    min-width: 0;
}

.contact-left .section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #078443;
}

.contact-left h2 {
    margin: 0 0 18px;
    color: #10251b;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.contact-left h2 span {
    color: #078f49;
}

.contact-intro {
    max-width: 620px;
    margin: 0 0 30px;
    color: #182c45;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

/* Contact topic cards */

.contact-topic-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.contact-topic-card {
    min-height: 210px;
    padding: 17px;
    border: 1px solid transparent;
    border-radius: 14px;
    box-sizing: border-box;
}

/* Override any existing ecosystem .project-card styles */

.contact-topic-card.project-card {
    display: block;
    width: auto;
    min-height: 210px;
    padding: 17px;
    border-radius: 14px;
    background: #f1efff;
    border: 1px solid #ddd8ff;
    box-shadow: none;
    transform: none;
}

.general-card {
    background: #e9fff3;
    border-color: #c7f2da;
}

.partnership-card {
    background: #fffced;
    border-color: #f9e7a5;
}

.support-card {
    background: #eafcff;
    border-color: #c5eef3;
}

.topic-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 13px;
    color: #ffffff;
    font-size: 20px;
}

.general-card .topic-icon {
    background: #08a653;
}

.partnership-card .topic-icon {
    background: #ffba05;
}

.contact-topic-card.project-card .topic-icon {
    background: #7424ed;
}

.support-card .topic-icon {
    background: #087ce8;
}

.contact-topic-card h3 {
    margin: 0 0 10px;
    color: #14251c;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-topic-card p {
    margin: 0;
    color: #587064;
    font-size: 12.5px;
    line-height: 1.7;
}

/* Decorative skyline */

.contact-cityline {
    position: relative;
    width: 620px;
    height: 120px;
    margin: 55px auto 0;
    opacity: 0.22;
    overflow: hidden;
}

.contact-cityline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 8px;
    border-radius: 50%;
    background: #63d89b;
}

.contact-cityline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 420px;
    height: 90px;
    transform: translateX(-50%);
    background:
        linear-gradient(to top, #65d99c 0 100%) 0 35px / 30px 55px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 40px 15px / 45px 75px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 95px 0 / 35px 90px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 140px 25px / 60px 65px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 210px 8px / 50px 82px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 275px 30px / 38px 60px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 325px 5px / 45px 85px no-repeat,
        linear-gradient(to top, #65d99c 0 100%) 380px 28px / 35px 62px no-repeat;
}

/* Right form card */

.contact-form-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e1f0e8;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(31, 91, 56, 0.08);
}

.contact-form-card h3 {
    margin: 0 0 14px;
    color: #12243a;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        color: #111111;
        background-color: #ffffff;
    }

    .navbar {
        width: 100%;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 6%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        z-index: 100;
        position: fixed;
        top: 0px;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo img {
        height: 44px;
        width: auto;
        display: block;
    }

    .site-title h1 {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.1;
        color: #111111;
    }

    .logo-name1 {
        color: #e5a900;
    }

    .site-title p {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .span1 {
        color: #008c5a;
    }

    .span2 {
        color: #e5a900;
    }

    .span3 {
        color: #d9381e;
    }

    .navbar nav {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .navbar nav a {
        text-decoration: none;
        color: #111111;
        font-size: 19px;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .navbar nav a:hover {
        color: #008c5a;
    }


    .menu-toggle {
        display: none;
        background: transparent;
        border: none;
        color: #111;
        font-size: 24px;
        cursor: pointer;
    }

    .hero {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        align-items: center;
        gap: 10px;
        padding: 120px 0 40px 5%;
        background-color: #ffffff;
        overflow: hidden;
        margin-top: 50px;
    }

    .hero-content {
        max-width: 520px;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 10;
    }

    .hero-label {
        color: #008c5a;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    .hero h1 {
        color: #111111;
        font-size: 48px;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero h1 span {
        color: #008c5a;
    }

    .hero-description {
        color: #333333;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 460px;
        background: radial-gradient(circle at left, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0) 100%);
        padding: 4px 8px 4px 0;
        border-radius: 6px;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.9);
    }

    .primary-button {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        background-color: #008c5a;
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .primary-button:hover {
        background-color: #006b44;
        transform: translateY(-2px);
    }

    .hero-features {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 48px;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-right: 16px;
        border-right: 1px solid #e2e8f0;
    }

    .feature:last-child {
        border-right: none;
        padding-right: 0;
    }

    .feature-icon {
        font-size: 18px;
        color: #008c5a;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
    }

    .feature h3 {
        color: #111111;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .feature p {
        color: #666666;
        font-size: 11px;
        margin: 0;
        line-height: 1.2;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hero-visual img {
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: contain;
        transform: scale(1.4) translate(-10%);
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    }



    /* =========================
   ABOUT SECTION
========================= */

    /* =========================
   ABOUT SECTION
========================= */

    .about {
        padding: 80px 5% 10px;
        background-color: #f9f9f9;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.45fr;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* LEFT SIDE */

    .about-intro {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-label {
        color: #008c5a;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .about-line {
        width: 72px;
        height: 5px;
        background: linear-gradient(to right,
                #008c5a 50%,
                #fdbb30 50%);
        margin-bottom: 22px;
    }

    .about-intro h2 {
        color: #111111;
        font-size: 56px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .about-intro h2 span {
        color: #008c5a;
    }

    .about-description {
        color: #333333;
        font-size: 18px;
        line-height: 1.6;
        max-width: 500px;
        margin-bottom: 24px;
    }

    .about-description.secondary {
        color: #666666;
        font-size: 16px;
        line-height: 1.6;
    }

    /* DECORATIVE ILLUSTRATION SPACE */

    .about-illustration {
        min-height: 180px;
        margin-top: 10px;
    }

    /* RIGHT SIDE */

    .about-right {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .about-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .about-card {
        min-height: 425px;
        padding: 28px 30px;
        border: 1px solid;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* CARD COLORS */

    .about-card.educate {
        background-color: #f5fffb;
        border-color: #d8f1e8;
    }

    .about-card.empower {
        background-color: #fffdf5;
        border-color: #f5e8c4;
    }

    .about-card.impact {
        background-color: #faf9ff;
        border-color: #e2ddfa;
    }

    /* CARD ICON */

    .about-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
    }

    .educate .about-icon {
        background-color: #c9f5df;
        color: #008c5a;
    }

    .empower .about-icon {
        background-color: #ffe49a;
        color: #008c5a;
    }

    .impact .about-icon {
        background-color: #ddd3ff;
        color: #3820a8;
    }

    .about-icon i {
        font-size: 42px;
    }

    /* CARD TEXT */

    .about-card h3 {
        color: #111111;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .card-line {
        width: 55px;
        height: 4px;
        margin-bottom: 25px;
        border-radius: 5px;
    }

    .educate .card-line {
        background-color: #008c5a;
    }

    .empower .card-line {
        background-color: #fdbb30;
    }

    .impact .card-line {
        background-color: #6c4ce8;
    }

    .about-card p {
        color: #333333;
        font-size: 17px;
        line-height: 1.6;
    }

    /* MISSION BOX */

    .mission-box {
        min-height: 170px;
        padding: 30px;
        background-color: #f3fbf8;
        border: 1px solid #dff1eb;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 2px solid #a8dcca;
        padding-right: 30px;
    }

    .mission-icon i {
        font-size: 55px;
        color: #008c5a;
    }

    .mission-content {
        flex: 1;
    }

    .mission-label {
        color: #008c5a;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .mission-content h3 {
        color: #111111;
        font-size: 25px;
        font-weight: 600;
        line-height: 1.4;
    }



    /* ========================================
   ECOSYSTEM SECTION
======================================== */

    .ecosystem {
        padding: 100px 5%;
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .ecosystem-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }


    /* ========================================
   SECTION HEADING
======================================== */

    .ecosystem-heading {
        margin-bottom: 35px;
    }

    .section-label {
        color: #008c5a;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .ecosystem-heading h2 {
        color: #111111;
        font-size: 56px;
        font-weight: 700;
        line-height: 1.12;
        margin-bottom: 20px;
    }

    .ecosystem-heading h2 span {
        color: #008c5a;
    }

    .ecosystem-description {
        color: #333333;
        font-size: 20px;
        line-height: 1.6;
        max-width: 850px;
    }


    /* ========================================
   PROJECT GRID
   Moving Area + Constant Card
======================================== */

    .project-grid {
        display: flex;
        align-items: stretch;
        gap: 20px;
        width: 100%;
    }


    /* ========================================
   MOVING PROJECT WINDOW
======================================== */

    .project-window {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }


    /* ========================================
   PROJECT TRACK
   All project cards stay in one line
======================================== */

    .project-track {
        display: flex;
        gap: 20px;
        width: max-content;
    }


    /* ========================================
   PROJECT CARDS
======================================== */

    .project-card {
        flex: 0 0 260px;
        min-height: 360px;
        padding: 30px;

        border: 1px solid #e5e5e5;
        border-radius: 14px;
        background-color: #ffffff;

        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }


    /* ========================================
   PROJECT CARD TOP
======================================== */

    .project-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }


    /* ========================================
   PROJECT ICON
======================================== */

    .project-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border-style: solid;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
    }

    .project-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .pennirent-icon {
        background-color: #d9f7e8;
        color: #008c5a;
    }




    /* ========================================
   PROJECT MINI LOGO
======================================== */

    .project-mini-logo {
        font-size: 13px;
        font-weight: 600;
        color: #555555;
    }


    /* ========================================
   PROJECT TITLE
======================================== */

    .project-card h3 {
        color: #111111;
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 15px;
    }


    /* ========================================
   PROJECT CATEGORY
======================================== */

    .project-category {
        display: inline-block;
        width: fit-content;

        padding: 7px 14px;
        border-radius: 20px;

        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .pennirent-category {
        background-color: #e2f7eb;
        color: #008c5a;
    }


    /* ========================================
   PROJECT DESCRIPTION
======================================== */

    .project-card p {
        color: #555555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }


    /* ========================================
   LEARN MORE LINK
======================================== */

    .project-link {
        color: #008c5a;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        margin-top: auto;
    }

    .project-link span {
        margin-left: 8px;
    }


    /* ========================================
   CONSTANT COMING SOON CARD
======================================== */

    .coming-soon-card {
        flex: 0 0 280px;
        min-height: 360px;
        padding: 30px;

        border-radius: 14px;
        background: linear-gradient(145deg, #008c5a, #006b45);
        color: #ffffff;

        display: flex;
        flex-direction: column;

        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }


    /* Decorative Background */

    .coming-soon-card::after {
        content: "";

        position: absolute;
        width: 220px;
        height: 220px;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;

        top: -70px;
        right: -70px;
    }


    /* Icon */

    .coming-soon-icon {
        width: 64px;
        height: 64px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 30px;
        margin-bottom: 25px;

        position: relative;
        z-index: 1;
    }


    /* Title */

    .coming-soon-card h3 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 4px;

        position: relative;
        z-index: 1;
    }


    /* Coming Soon Text */

    .coming-soon-card h3:nth-of-type(2) {
        color: #ffd21f;
        margin-bottom: 25px;
    }


    /* Description */

    .coming-soon-card p {
        color: #ffffff;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;

        position: relative;
        z-index: 1;
    }


    /* Button */

    .coming-soon-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        padding: 12px 20px;

        border: 1px solid #ffffff;
        border-radius: 30px;

        color: #ffffff;
        text-decoration: none;

        font-size: 16px;
        font-weight: 600;

        margin-top: auto;

        position: relative;
        z-index: 1;
    }

    .coming-soon-button span {
        margin-left: 5px;
    }


    /* ========================================
   ECOSYSTEM BOTTOM
======================================== */

    .ecosystem-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;

        margin-top: 40px;
    }


    /* Statistics */

    .ecosystem-stats {
        display: flex;
        gap: 50px;
    }

    .ecosystem-stat {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .ecosystem-stat strong {
        color: #008c5a;
        font-size: 30px;
        font-weight: 700;
    }

    .ecosystem-stat span {
        color: #555555;
        font-size: 14px;
    }


    /* Bottom Text */

    .ecosystem-bottom-text {
        color: #008c5a;
        font-size: 16px;
        line-height: 1.5;
        max-width: 320px;
    }


    /* ========================================
   ECOSYSTEM BACKGROUND DECORATION
======================================== */

    .ecosystem::before {
        content: "";

        position: absolute;
        width: 320px;
        height: 320px;

        border: 1px solid #edf7f2;
        border-radius: 50%;

        top: -100px;
        right: -80px;
    }

    .ecosystem::after {
        content: "";

        position: absolute;
        width: 220px;
        height: 220px;

        background-color: #f1faf6;
        border-radius: 50%;

        top: 40px;
        right: 120px;

        opacity: 0.7;
    }




    /* ========================================
   COMMUNITY SECTION
======================================== */

    .community {
        padding: 10px 20px 100px;
        background: #f9f9f9;
        overflow: hidden;
    }

    .community-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 45px;
    }

    .community-content {
        flex: 1;
        min-width: 0;
        z-index: 10;
    }

    .community .section-label {
        display: inline-block;
        margin-bottom: 25px;
        color: #008f5b;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.5px;
        position: relative;
    }

    .community .section-label::after {
        content: "";
        display: block;
        width: 80px;
        height: 6px;
        margin-top: 10px;
        background: linear-gradient(to right,
                #008f5b 0 50%,
                #fbc21b 50% 100%);
        border-radius: 10px;
    }

    .community h2 {
        margin: 0;
        color: #101827;
        font-size: 48px;
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -1.5px;
    }

    .community h2 span {
        color: #00945f;
    }

    .community-description {
        max-width: 720px;
        margin: 25px 0 30px;
        color: #344054;
        font-size: 18px;
        line-height: 1.55;
    }

    /* ========================================
   COMMUNITY FEATURE CARDS
======================================== */

    .community-cards {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .community-card {
        flex: 1;
        min-height: 315px;
        padding: 22px 24px;
        border: 1px solid transparent;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .community-card-green {
        background: #effaf5;
        border-color: #e0f3e9;
    }

    .community-card-yellow {
        background: #fffaf0;
        border-color: #f8edd0;
    }

    .community-card-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        color: #ffffff;
        font-size: 32px;
        background: #00945f;
    }

    .community-card-yellow .community-card-icon {
        background: #ffbd18;
    }

    .community-card h3 {
        margin: 0;
        color: #101827;
        font-size: 21px;
        line-height: 1.2;
        font-weight: 800;
    }

    .community-card-line {
        width: 38px;
        height: 5px;
        margin: 13px 0 17px;
        border-radius: 10px;
        background: #00945f;
    }

    .community-card-yellow .community-card-line {
        background: #ffbd18;
    }

    .community-card p {
        margin: 0;
        color: #526176;
        font-size: 15px;
        line-height: 1.55;
    }

    .community-card-arrow {
        width: 42px;
        height: 42px;
        margin-top: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #008f5b;
        background: #d9f5e7;
        text-decoration: none;
        font-size: 17px;
    }

    .community-card-yellow .community-card-arrow {
        color: #b27a00;
        background: #fff0c7;
    }

    /* ========================================
   COMMUNITY BOTTOM AREA
======================================== */

    .community-bottom {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 35px;
    }

    .community-button {
        display: inline-flex;
        align-items: center;
        gap: 18px;
        padding: 18px 28px;
        border-radius: 40px;
        background: #00945f;
        color: #ffffff;
        text-decoration: none;
        font-size: 17px;
        font-weight: 700;
    }

    .community-divider {
        width: 2px;
        height: 55px;
        background: #8bd5b3;
    }

    .community-values {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #607089;
        font-size: 16px;
    }

    .community-values i {
        color: #00945f;
        font-size: 30px;
    }

    .community-values b {
        color: #00945f;
        font-size: 18px;
    }

    /* ========================================
   COMMUNITY IMAGE
======================================== */

    .community-visual {
        position: relative;
        flex: 0 0 470px;
        min-height: 650px;
        transform: translate(-20px);
    }

    .community-main-image {
        position: absolute;
        top: 35px;
        right: -80px;
        width: 590px;
        height: 590px;
        object-fit: cover;
        border-radius: 48px 48% 50px 30px;
    }

    .community-flag {
        position: absolute;
        top: 0;
        right: -35px;
        z-index: 2;
    }

    .community-flag img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }




    /* ========================================
   JOBS & OPPORTUNITIES SECTION
======================================== */

    .jobs-section {
        padding: 120px 0 100px;
        background: #ffffff;
        overflow: hidden;
    }

    .jobs-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .jobs-heading {
        margin-bottom: 35px;
    }

    .jobs-heading .section-label {
        display: inline-block;
        margin-bottom: 25px;
        color: #008f5b;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.5px;
        position: relative;
    }

    .jobs-heading .section-label::after {
        content: "";
        display: block;
        width: 80px;
        height: 6px;
        margin-top: 10px;
        background: linear-gradient(to right,
                #008f5b 0 50%,
                #fbc21b 50% 100%);
        border-radius: 10px;
    }

    .jobs-heading h2 {
        margin: 0;
        color: #101827;
        font-size: 58px;
        line-height: 1.02;
        font-weight: 800;
        letter-spacing: -2px;
    }

    .jobs-heading h2 span {
        color: #00945f;
    }

    .jobs-heading p {
        max-width: 850px;
        margin: 22px 0 0;
        color: #344054;
        font-size: 18px;
        line-height: 1.5;
    }

    /* ========================================
   JOBS CARDS
======================================== */

    .jobs-cards {
        display: flex;
        gap: 25px;
        width: 100%;
    }

    .jobs-card {
        position: relative;
        flex: 1;
        min-height: 380px;
        padding: 24px;
        border: 1px solid transparent;
        border-radius: 18px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .jobs-card-green {
        background: #f0fbf6;
        border-color: #d9f1e5;
    }

    .jobs-card-yellow {
        background: #fffaf0;
        border-color: #f8ebc9;
    }

    .jobs-card-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 15px;
    }

    .jobs-card-icon {
        width: 72px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: #00945f;
        color: #ffffff;
        font-size: 31px;
        flex-shrink: 0;
    }

    .jobs-card-yellow .jobs-card-icon {
        background: #ffb914;
    }

    .jobs-card-tag {
        padding: 12px 18px;
        border-radius: 30px;
        background: #e2f8eb;
        color: #008f5b;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
    }

    .jobs-card-yellow .jobs-card-tag {
        background: #fff2cf;
        color: #9a6b00;
    }

    .jobs-card h3 {
        margin: 22px 0 10px;
        color: #101827;
        font-size: 27px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .jobs-card>p {
        max-width: 340px;
        margin: 0;
        color: #526176;
        font-size: 16px;
        line-height: 1.5;
    }

    /* ========================================
   JOB CATEGORY TAGS
======================================== */

    .jobs-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
    }

    .jobs-tags span {
        padding: 9px 14px;
        border-radius: 30px;
        background: #ddf6e8;
        color: #008f5b;
        font-size: 13px;
        font-weight: 700;
    }

    .jobs-card-yellow .jobs-tags span {
        background: #fff0c9;
        color: #9a6b00;
    }

    /* ========================================
   JOB BUTTONS
======================================== */

    .jobs-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        width: fit-content;
        margin-top: 25px;
        padding: 16px 22px;
        border-radius: 35px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        box-sizing: border-box;
    }

    .jobs-button-green {
        background: #00945f;
        color: #ffffff;
    }

    .jobs-button-yellow {
        background: #ffb914;
        color: #151515;
    }

    .jobs-button-outline {
        border: 2px solid #00945f;
        color: #008f5b;
        background: transparent;
    }

    .jobs-community-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .jobs-community-buttons .jobs-button {
        margin-top: 18px;
    }

    /* ========================================
   DECORATIVE CARD ICONS
======================================== */

    .jobs-card-decoration {
        position: absolute;
        right: 22px;
        bottom: 18px;
        color: #8be0b5;
        opacity: 0.75;
        pointer-events: none;
    }

    .jobs-card-decoration i:first-child {
        font-size: 85px;
    }

    .jobs-card-decoration i:last-child {
        position: absolute;
        right: -5px;
        bottom: 5px;
        font-size: 48px;
        color: #008f5b;
    }

    .jobs-card-yellow .jobs-card-decoration {
        color: #ffda67;
    }

    .jobs-card-yellow .jobs-card-decoration i {
        font-size: 90px;
        color: #ffb914;
    }

    .jobs-card:nth-child(3) .jobs-card-decoration i {
        font-size: 100px;
        color: #9be8bf;
    }




    /* ========================================
   EVENTS SECTION
======================================== */

    .events-section {
        padding: 50px 0 40px;
        background: #f9f9f9;
        overflow: hidden;
    }

    .events-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .events-heading {
        margin-bottom: 35px;
    }

    .events-heading .section-label {
        display: inline-block;
        margin-bottom: 25px;
        color: #008f5b;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.5px;
        position: relative;
    }

    .events-heading .section-label::after {
        content: "";
        display: block;
        width: 80px;
        height: 6px;
        margin-top: 10px;
        background: linear-gradient(to right,
                #008f5b 0 50%,
                #fbc21b 50% 100%);
        border-radius: 10px;
    }

    .events-heading h2 {
        margin: 0;
        color: #101827;
        font-size: 56px;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -2px;
    }

    .events-heading h2 span {
        color: #00945f;
    }

    .events-heading p {
        max-width: 800px;
        margin: 22px 0 0;
        color: #344054;
        font-size: 18px;
        line-height: 1.5;
    }

    /* ========================================
   EVENT CARDS
======================================== */

    .events-cards {
        display: flex;
        gap: 25px;
        width: 100%;
    }

    .event-card {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #e2eee8;
        border-radius: 16px;
        box-shadow: 0 5px 18px rgba(0, 80, 50, 0.04);
    }

    .event-image {
        position: relative;
        height: 170px;
        padding: 22px;
        box-sizing: border-box;
        overflow: hidden;
        color: #ffffff;
    }

    .event-image-basics {
        background:
            radial-gradient(circle at 85% 90%, #ffc51c 0 22%, transparent 23%),
            linear-gradient(135deg, #006b45, #00a66b);
    }

    .event-image-ama {
        background:
            radial-gradient(circle at 50% 50%, #008c5a 0 25%, transparent 26%),
            linear-gradient(135deg, #064b3c, #008c5a);
    }

    .event-image-networking {
        background:
            linear-gradient(135deg,
                rgba(8, 34, 83, 0.85),
                rgba(31, 67, 130, 0.65)),
            linear-gradient(45deg, #13294b, #8b5e4b);
    }

    .event-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.08) 46%, transparent 48%),
            linear-gradient(45deg, transparent 60%, rgba(255, 255, 255, 0.06) 61%, transparent 63%);
        pointer-events: none;
    }

    .event-status {
        position: relative;
        z-index: 1;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 30px;
        background: #08a86c;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
    }

    .event-image-content {
        position: absolute;
        left: 24px;
        bottom: 20px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .event-image-content strong {
        font-size: 28px;
        line-height: 0.98;
        font-weight: 800;
    }

    .event-image-content strong:nth-child(2) {
        color: #ffca1c;
    }

    .event-image-content small {
        margin-top: 8px;
        font-size: 13px;
        font-weight: 500;
    }

    .event-image-icon {
        position: absolute;
        right: 35px;
        bottom: 25px;
        z-index: 1;
        font-size: 75px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* ========================================
   EVENT DETAILS
======================================== */

    .event-details {
        padding: 22px 24px 25px;
    }

    .event-meta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
        color: #63748b;
        font-size: 14px;
    }

    .event-meta span {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .event-meta i {
        width: 18px;
        color: #00945f;
        font-size: 16px;
    }

    .event-details h3 {
        margin: 0 0 10px;
        color: #101827;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 800;
    }

    .event-details p {
        min-height: 72px;
        margin: 0;
        color: #607089;
        font-size: 15px;
        line-height: 1.5;
    }

    .event-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        padding: 12px 22px;
        border: 2px solid #16b878;
        border-radius: 30px;
        color: #00945f;
        background: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
    }

    .event-button i {
        font-size: 13px;
    }

    /* ========================================
   EVENTS BOTTOM BANNER
======================================== */

    .events-bottom {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-top: 28px;
        padding: 22px 30px;
        border-radius: 16px;
        background: #effaf5;
        box-sizing: border-box;
    }

    .events-bottom-icon {
        color: #00945f;
        font-size: 45px;
    }

    .events-bottom-text {
        flex: 1;
    }

    .events-bottom-text h3 {
        margin: 0 0 5px;
        color: #101827;
        font-size: 21px;
        font-weight: 800;
    }

    .events-bottom-text p {
        margin: 0;
        color: #607089;
        font-size: 14px;
        line-height: 1.4;
    }

    .events-bottom-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .events-follow-button,
    .events-whatsapp-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 24px;
        border-radius: 35px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
    }

    .events-follow-button {
        background: #101827;
        color: #ffffff;
    }

    .events-whatsapp-button {
        background: #00945f;
        color: #ffffff;
    }




    /* =========================
   VIDEOS SECTION
========================= */

    .videos-section {
        padding: 110px 0;
        background: #ffffff;
    }

    .videos-container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
    }

    .videos-heading {
        max-width: 650px;
        margin-bottom: 45px;
    }

    .videos-heading h2 {
        margin: 15px 0 20px;
        font-size: 52px;
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -1.5px;
        color: #17231c;
    }

    .videos-heading h2 span {
        color: #168447;
    }

    .videos-heading p {
        max-width: 560px;
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        color: #66736b;
    }

    /* Video cards layout */

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

    /* Individual card */

    .video-card {
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #e6eee8;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(20, 65, 38, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(20, 65, 38, 0.12);
    }

    /* Thumbnail */

    .video-thumbnail {
        position: relative;
        height: 215px;
        overflow: hidden;
        background: #dcefe2;
    }

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .video-card:hover .video-thumbnail img {
        transform: scale(1.05);
    }

    /* Category label */

    .video-category {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 7px 12px;
        border-radius: 30px;
        background: #ffffff;
        color: #168447;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Play button */

    .video-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: #f4c542;
        color: #17231c;
        font-size: 18px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .video-card:hover .video-play-button {
        transform: translate(-50%, -50%) scale(1.1);
        background: #ffffff;
    }

    /* Video details */

    .video-details {
        padding: 25px;
    }

    .video-details h3 {
        margin: 0 0 12px;
        color: #17231c;
        font-size: 21px;
        line-height: 1.3;
        font-weight: 800;
    }

    .video-details p {
        min-height: 52px;
        margin: 0 0 22px;
        color: #718078;
        font-size: 14px;
        line-height: 1.7;
    }

    /* Watch link */

    .video-watch-link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #168447;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .video-watch-link i {
        font-size: 12px;
    }

    .video-watch-link:hover {
        gap: 14px;
    }

    /* Bottom action */

    .videos-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        margin-top: 42px;
        padding-top: 28px;
        border-top: 1px solid #e5ece7;
    }

    .videos-bottom p {
        margin: 0;
        color: #718078;
        font-size: 14px;
    }

    .videos-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 8px;
        background: #168447;
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .videos-button:hover {
        background: #106b38;
        transform: translateY(-2px);
    }




    /* =========================
   CONTACT SECTION
========================= */

    .contact-section {
        padding: 50px 0 50px;
        background: #f3fff8;
        overflow: hidden;
    }

    .contact-container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 55px;
        align-items: start;
    }

    /* Left side */

    .contact-left {
        position: relative;
        min-width: 0;
    }

    .contact-left .section-label {
        display: inline-block;
        margin-bottom: 15px;
        color: #078443;
    }

    .contact-left h2 {
        margin: 0 0 18px;
        color: #10251b;
        font-size: 54px;
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -1.8px;
    }

    .contact-left h2 span {
        color: #078f49;
    }

    .contact-intro {
        max-width: 620px;
        margin: 0 0 30px;
        color: #182c45;
        font-size: 17px;
        line-height: 1.65;
        font-weight: 600;
    }

    /* Contact topic cards */

    .contact-topic-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .contact-topic-card {
        min-height: 210px;
        padding: 17px;
        border: 1px solid transparent;
        border-radius: 14px;
        box-sizing: border-box;
    }

    /* Override any existing ecosystem .project-card styles */

    .contact-topic-card.project-card {
        display: block;
        width: auto;
        min-height: 210px;
        padding: 17px;
        border-radius: 14px;
        background: #f1efff;
        border: 1px solid #ddd8ff;
        box-shadow: none;
        transform: none;
    }

    .general-card {
        background: #e9fff3;
        border-color: #c7f2da;
    }

    .partnership-card {
        background: #fffced;
        border-color: #f9e7a5;
    }

    .support-card {
        background: #eafcff;
        border-color: #c5eef3;
    }

    .topic-icon {
        width: 47px;
        height: 47px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        border-radius: 13px;
        color: #ffffff;
        font-size: 20px;
    }

    .general-card .topic-icon {
        background: #08a653;
    }

    .partnership-card .topic-icon {
        background: #ffba05;
    }

    .contact-topic-card.project-card .topic-icon {
        background: #7424ed;
    }

    .support-card .topic-icon {
        background: #087ce8;
    }

    .contact-topic-card h3 {
        margin: 0 0 10px;
        color: #14251c;
        font-size: 16px;
        line-height: 1.25;
        font-weight: 800;
    }

    .contact-topic-card p {
        margin: 0;
        color: #587064;
        font-size: 12.5px;
        line-height: 1.7;
    }

    /* Decorative skyline */

    .contact-cityline {
        position: relative;
        width: 620px;
        height: 120px;
        margin: 55px auto 0;
        opacity: 0.22;
        overflow: hidden;
    }

    .contact-cityline::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        height: 8px;
        border-radius: 50%;
        background: #63d89b;
    }

    .contact-cityline::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 26px;
        width: 420px;
        height: 90px;
        transform: translateX(-50%);
        background:
            linear-gradient(to top, #65d99c 0 100%) 0 35px / 30px 55px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 40px 15px / 45px 75px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 95px 0 / 35px 90px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 140px 25px / 60px 65px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 210px 8px / 50px 82px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 275px 30px / 38px 60px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 325px 5px / 45px 85px no-repeat,
            linear-gradient(to top, #65d99c 0 100%) 380px 28px / 35px 62px no-repeat;
    }

    /* Right form card */

    .contact-form-card {
        padding: 32px;
        background: #ffffff;
        border: 1px solid #e1f0e8;
        border-radius: 18px;
        box-shadow: 0 14px 35px rgba(31, 91, 56, 0.08);
    }

    .contact-form-card h3 {
        margin: 0 0 14px;
        color: #12243a;
        font-size: 34px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .form-intro {
        margin: 0 0 30px;
        color: #536e9b;
        font-size: 16px;
        line-height: 1.65;
    }

    /* Form layout */

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 60px;
        border: 2px solid #dcefe8;
        border-radius: 13px;
        background: #ffffff;
        box-sizing: border-box;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .form-input-wrapper:focus-within {
        border-color: #0a9951;
        box-shadow: 0 0 0 3px rgba(10, 153, 81, 0.08);
    }

    .form-input-wrapper i {
        width: 58px;
        flex-shrink: 0;
        text-align: center;
        color: #526985;
        font-size: 18px;
    }

    .form-input-wrapper input,
    .form-input-wrapper select,
    .form-input-wrapper textarea {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        color: #23384e;
        font-family: inherit;
        font-size: 16px;
        box-sizing: border-box;
    }

    .form-input-wrapper input,
    .form-input-wrapper select {
        height: 56px;
        padding: 0 16px 0 0;
    }

    .form-input-wrapper textarea {
        min-height: 155px;
        padding: 17px 16px 17px 0;
        resize: vertical;
        line-height: 1.6;
    }

    .form-input-wrapper input::placeholder,
    .form-input-wrapper textarea::placeholder {
        color: #60799f;
        opacity: 1;
    }

    .form-input-wrapper select {
        appearance: none;
        cursor: pointer;
        color: #60799f;
    }

    .form-input-wrapper select:valid {
        color: #23384e;
    }

    .message-wrapper {
        align-items: flex-start;
    }

    .message-wrapper i {
        padding-top: 20px;
    }

    /* Submit button */

    .contact-submit {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 5px;
        border: none;
        border-radius: 30px;
        background: #07964c;
        color: #ffffff;
        font-family: inherit;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .contact-submit i {
        font-size: 20px;
    }

    .contact-submit:hover {
        background: #067b3e;
        transform: translateY(-2px);
    }




    /* =========================
   FOOTER
========================= */

    .site-footer {
        padding: 85px 0 30px;
        background: #050b08;
        color: #ffffff;
    }

    .site-footer .footer-container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 90px;
    }

    /* Footer brand */

    .footer-brand h2 {
        margin: 0 0 42px;
        color: #ffffff;
        font-size: 54px;
        line-height: 0.95;
        font-weight: 800;
        letter-spacing: -2px;
    }

    .footer-brand p {
        max-width: 390px;
        margin: 0;
        color: #e2e8e4;
        font-size: 17px;
        line-height: 1.7;
    }

    /* Footer columns */

    .footer-column h3 {
        margin: 0;
        color: #ffffff;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
    }

    .footer-heading-line {
        width: 88px;
        height: 11px;
        margin: 22px 0 35px;
        border-radius: 10px;
        background: linear-gradient(to right,
                #00d875 0%,
                #00d875 65%,
                #f4c542 65%,
                #f4c542 100%);
    }

    .footer-column>a {
        display: block;
        width: fit-content;
        margin-bottom: 19px;
        color: #f1f4f2;
        font-size: 18px;
        line-height: 1.3;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column>a:hover {
        color: #00d875;
        transform: translateX(4px);
    }

    /* Social links */

    .footer-social-link {
        display: flex !important;
        align-items: center;
        gap: 25px;
        margin-bottom: 19px !important;
    }

    .footer-social-icon {
        width: 66px;
        height: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 16px;
        color: #ffffff;
        font-size: 31px;
    }

    .footer-social-link span:last-child {
        color: #f1f4f2;
        font-size: 18px;
    }

    .social-x {
        background: #000000;
        border: 1px solid #333333;
    }

    .social-whatsapp {
        background: #00d875;
    }

    .social-youtube {
        background: #ff202b;
    }

    .social-linkedin {
        background: #087be8;
    }

    /* Divider */

    .footer-divider {
        width: 90%;
        max-width: 1455px;
        height: 4px;
        margin: 60px auto 0;
        background: #00d875;
    }

    /* Bottom copyright */

    .site-footer .footer-bottom {
        width: 90%;
        max-width: 1455px;
        margin: 30px auto 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .site-footer .footer-bottom p {
        margin: 0;
        color: #e2e8e4;
        font-size: 16px;
    }




    /* Hero text entrance animations */

    @keyframes heroFadeUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }

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

    @keyframes heroFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hero-label {
        animation: heroFadeIn 1s ease forwards;
    }

    .hero h1 {
        opacity: 0;
        animation: heroFadeUp 1s ease 0.2s forwards;
    }

    .hero-description {
        opacity: 0;
        animation: heroFadeUp 1s ease 0.45s forwards;
    }

    .primary-button {
        opacity: 0;
        animation: heroFadeUp 1s ease 0.7s forwards;
    }

    .hero-features .feature {
        opacity: 0;
        animation: heroFadeUp 0.8s ease forwards;
    }

    .hero-features .feature:nth-child(1) {
        animation-delay: 0.95s;
    }

    .hero-features .feature:nth-child(2) {
        animation-delay: 1.1s;
    }

    .hero-features .feature:nth-child(3) {
        animation-delay: 1.25s;
    }

    .hero-features .feature:nth-child(4) {
        animation-delay: 1.4s;
    }
}

.form-intro {
    margin: 0 0 30px;
    color: #536e9b;
    font-size: 16px;
    line-height: 1.65;
}

/* Form layout */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    border: 2px solid #dcefe8;
    border-radius: 13px;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-wrapper:focus-within {
    border-color: #0a9951;
    box-shadow: 0 0 0 3px rgba(10, 153, 81, 0.08);
}

.form-input-wrapper i {
    width: 58px;
    flex-shrink: 0;
    text-align: center;
    color: #526985;
    font-size: 18px;
}

.form-input-wrapper input,
.form-input-wrapper select,
.form-input-wrapper textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #23384e;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

.form-input-wrapper input,
.form-input-wrapper select {
    height: 56px;
    padding: 0 16px 0 0;
}

.form-input-wrapper textarea {
    min-height: 155px;
    padding: 17px 16px 17px 0;
    resize: vertical;
    line-height: 1.6;
}

.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder {
    color: #60799f;
    opacity: 1;
}

.form-input-wrapper select {
    appearance: none;
    cursor: pointer;
    color: #60799f;
}

.form-input-wrapper select:valid {
    color: #23384e;
}

.message-wrapper {
    align-items: flex-start;
}

.message-wrapper i {
    padding-top: 20px;
}

/* Submit button */

.contact-submit {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 5px;
    border: none;
    border-radius: 30px;
    background: #07964c;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-submit i {
    font-size: 20px;
}

.contact-submit:hover {
    background: #067b3e;
    transform: translateY(-2px);
}




/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 85px 0 30px;
    background: #050b08;
    color: #ffffff;
}

.site-footer .footer-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 90px;
}

/* Footer brand */

.footer-brand h2 {
    margin: 0 0 42px;
    color: #ffffff;
    font-size: 54px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -2px;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    color: #e2e8e4;
    font-size: 17px;
    line-height: 1.7;
}

/* Footer columns */

.footer-column h3 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-heading-line {
    width: 88px;
    height: 11px;
    margin: 22px 0 35px;
    border-radius: 10px;
    background: linear-gradient(to right,
            #00d875 0%,
            #00d875 65%,
            #f4c542 65%,
            #f4c542 100%);
}

.footer-column>a {
    display: block;
    width: fit-content;
    margin-bottom: 19px;
    color: #f1f4f2;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column>a:hover {
    color: #00d875;
    transform: translateX(4px);
}

/* Social links */

.footer-social-link {
    display: flex !important;
    align-items: center;
    gap: 25px;
    margin-bottom: 19px !important;
}

.footer-social-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    color: #ffffff;
    font-size: 31px;
}

.footer-social-link span:last-child {
    color: #f1f4f2;
    font-size: 18px;
}

.social-x {
    background: #000000;
    border: 1px solid #333333;
}

.social-whatsapp {
    background: #00d875;
}

.social-youtube {
    background: #ff202b;
}

.social-linkedin {
    background: #087be8;
}

/* Divider */

.footer-divider {
    width: 90%;
    max-width: 1455px;
    height: 4px;
    margin: 60px auto 0;
    background: #00d875;
}

/* Bottom copyright */

.site-footer .footer-bottom {
    width: 90%;
    max-width: 1455px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: #e2e8e4;
    font-size: 16px;
}




/* Hero text entrance animations */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-label {
    animation: heroFadeIn 1s ease forwards;
}

.hero h1 {
    opacity: 0;
    animation: heroFadeUp 1s ease 0.2s forwards;
}

.hero-description {
    opacity: 0;
    animation: heroFadeUp 1s ease 0.45s forwards;
}

.primary-button {
    opacity: 0;
    animation: heroFadeUp 1s ease 0.7s forwards;
}

.hero-features .feature {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-features .feature:nth-child(1) {
    animation-delay: 0.95s;
}

.hero-features .feature:nth-child(2) {
    animation-delay: 1.1s;
}

.hero-features .feature:nth-child(3) {
    animation-delay: 1.25s;
}

.hero-features .feature:nth-child(4) {
    animation-delay: 1.4s;
}