/* =========================================================
   GEOCLIMATE SOLUTIONS LIMITED
   CONSOLIDATED WEBSITE STYLESHEET
   Home + About + Shared Header/Footer
========================================================= */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */

:root {
    --gc-green: #07823b;
    --gc-green-dark: #005f2d;
    --gc-green-deep: #003e37;
    --gc-lime: #82d600;
    --gc-blue: #00639a;
    --gc-blue-dark: #062f50;
    --gc-teal: #008c96;
    --gc-orange: #f5820b;

    --gc-text: #071a2f;
    --gc-text-soft: #4d5d68;
    --gc-border: #dfece3;
    --gc-bg-soft: #f6faf7;
    --gc-bg-green: #eef8ef;
    --gc-white: #ffffff;

    --gc-shadow-sm: 0 8px 22px rgba(0, 60, 40, 0.08);
    --gc-shadow-md: 0 14px 35px rgba(0, 60, 40, 0.10);

    --gc-radius-sm: 8px;
    --gc-radius-md: 16px;
    --gc-radius-lg: 20px;

    --gc-container: 1500px;
}


/* =========================================================
   2. GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gc-text);
    background: var(--gc-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   3. SHARED TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    background: var(--gc-green);
    color: var(--gc-white);
}

.top-bar-container {
    width: 94%;
    max-width: var(--gc-container);
    min-height: 40px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 15px;
    font-weight: 600;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-social a {
    color: var(--gc-white);
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.25s ease;
}

.top-social a:hover {
    opacity: 0.72;
}


/* =========================================================
   4. SHARED HEADER / NAVIGATION
========================================================= */

.main-header {
    width: 100%;
    position: relative;
    z-index: 1000;

    background: var(--gc-white);
    border-bottom: 1px solid #e7ece9;
}

.header-container {
    width: 94%;
    max-width: var(--gc-container);
    min-height: 108px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: 265px;
    height: auto;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 13px 16px;

    color: #071429;
    font-size: 16px;
    font-weight: 700;

    border-radius: 7px;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.main-nav a:hover {
    color: var(--gc-green);
}

.main-nav a.active {
    background: var(--gc-green);
    color: var(--gc-white);
}

.header-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 14px 22px;

    background: var(--gc-green);
    color: var(--gc-white);

    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.talk-btn:hover {
    background: var(--gc-green-dark);
    transform: translateY(-2px);
}


/* =========================================================
   5. HOME PAGE — HERO
========================================================= */

.hero-banner {
    min-height: 500px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 38, 72, 0.94) 0%,
            rgba(0, 50, 84, 0.72) 48%,
            rgba(0, 35, 60, 0.20) 100%
        ),
        url("../images/header_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.banner-overlay {
    width: 100%;
    max-width: var(--gc-container);
    margin: 0 auto;
    padding: 60px 5%;
}

.banner-text {
    max-width: 1000px;
    color: var(--gc-white);
}

.banner-text h1 {
    margin: 0 0 24px;

    max-width: 980px;

    color: var(--gc-white);
    font-size: clamp(48px, 4.4vw, 68px);
    line-height: 1.04;
    letter-spacing: -1px;
    font-weight: 800;
}

.banner-text h1 span {
    color: var(--gc-lime);
}

.banner-text p {
    max-width: 780px;
    margin: 0 0 24px;

    color: #f2f6f8;
    font-size: 20px;
    line-height: 1.7;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    margin: 0 0 30px;
}

.hero-points span {
    color: var(--gc-white);
    font-size: 16px;
    font-weight: 700;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    background: #159442;
    color: var(--gc-white);

    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.banner-btn:hover {
    background: var(--gc-green-dark);
    transform: translateY(-2px);
}


/* =========================================================
   6. HOME PAGE — SIX SERVICE OVERVIEW
========================================================= */

.services-overview {
    width: 92%;
    max-width: 1420px;
    margin: -30px auto 0;

    position: relative;
    z-index: 10;

    padding: 20px 22px;

    background: var(--gc-white);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-item {
    min-width: 0;
    padding: 28px 20px;

    text-align: center;
    border-right: 1px solid #d9e8df;
}

.service-item:last-child {
    border-right: 0;
}

.service-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--gc-white);

    box-shadow: 0 6px 15px rgba(0, 100, 45, 0.18);
}

.climate-icon {
    background: linear-gradient(135deg, #0866a8, #00477a);
}

.resilience-icon {
    background: linear-gradient(135deg, #58ad2d, #19772c);
}

.warning-icon {
    background: linear-gradient(135deg, #f59b23, #e76d00);
}

.agriculture-icon {
    background: linear-gradient(135deg, #62b52d, #218332);
}

.carbon-icon {
    background: linear-gradient(135deg, #008c96, #006173);
}

.research-icon {
    background: linear-gradient(135deg, #f39220, #dd6500);
}

.service-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: var(--gc-white);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carbon-icon svg {
    width: 42px;
    height: 42px;
}

.carbon-icon svg text {
    fill: var(--gc-white);
    stroke: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    font-weight: 700;
}

.service-item h3 {
    margin: 0 0 14px;

    color: #071429;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 800;
}

.service-item p {
    margin: 0;

    color: #435363;
    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   7. HOME PAGE — MISSION / APPROACH / SECTORS
========================================================= */

.home-summary {
    width: 94%;
    max-width: var(--gc-container);
    margin: 56px auto 50px;
}

/* ---------- TOP ROW ---------- */

.summary-top {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 2fr);
    gap: 34px;
    align-items: stretch;
}

.summary-label {
    display: block;
    margin-bottom: 10px;

    color: var(--gc-green);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* ---------- MISSION ---------- */

.mission-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 34px 30px;

    background: linear-gradient(135deg, #edf9f0 0%, #d9f3df 100%);
    border: 1px solid #d5eadb;
    border-radius: var(--gc-radius-lg);
}

.mission-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gc-white);
    color: var(--gc-green);
    border-radius: 50%;

    font-size: 36px;
    font-weight: 700;

    box-shadow: var(--gc-shadow-sm);
}

.mission-content h2 {
    margin: 0 0 14px;

    color: #006b35;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
}

.mission-content p {
    margin: 0;

    color: #3f505d;
    font-size: 17px;
    line-height: 1.7;
}

/* ---------- APPROACH ---------- */

.approach-box {
    padding: 34px 34px 32px;

    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-lg);
    box-shadow: var(--gc-shadow-sm);
}

.approach-heading {
    margin-bottom: 28px;
}

.approach-heading h2 {
    margin: 0;

    color: #006b35;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.approach-flow {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 34px
        minmax(0, 1fr) 34px
        minmax(0, 1fr) 34px
        minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.approach-step {
    position: relative;
    min-width: 0;
    min-height: 235px;
    padding: 24px 20px;

    background: #f7fbf8;
    border: 1px solid #dbeadf;
    border-radius: 16px;
}

.approach-number {
    position: absolute;
    top: 17px;
    right: 17px;

    color: var(--gc-lime);
    font-size: 13px;
    font-weight: 800;
}

.approach-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e6f6df;
    color: var(--gc-green);
    border: 1px solid #cfe8c8;
    border-radius: 50%;
}

.approach-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.approach-step h3 {
    margin: 0 0 10px;

    color: var(--gc-text);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}

.approach-step p {
    margin: 0;

    color: #52616c;
    font-size: 15px;
    line-height: 1.6;
}

.flow-arrow {
    margin: 0;
    text-align: center;

    color: var(--gc-green);
    font-size: 28px;
    line-height: 1;
}

/* ---------- SECTORS ---------- */

.sectors-box {
    margin-top: 34px;
    padding: 38px 34px 34px;

    background: var(--gc-bg-green);
    border-radius: var(--gc-radius-lg);
}

.sectors-heading {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.sectors-heading h2 {
    margin: 0 0 10px;

    color: #006b35;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.sectors-heading p {
    margin: 0;

    color: #536575;
    font-size: 16px;
    line-height: 1.65;
}

.sector-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.sector-item {
    min-width: 0;
    min-height: 180px;
    padding: 24px 16px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: var(--gc-white);
    border: 1px solid #d9e9de;
    border-radius: 16px;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.sector-item:hover {
    transform: translateY(-4px);
    border-color: #9bd3aa;
    box-shadow: var(--gc-shadow-sm);
}

.sector-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7e7;
    color: var(--gc-green);
    border-radius: 50%;
}

.sector-icon svg {
    width: 30px;
    height: 30px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sector-item h3 {
    margin: 0 0 7px;

    color: var(--gc-text);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.sector-item p {
    margin: 0;

    color: #647482;
    font-size: 13.5px;
    line-height: 1.5;
}

/* ---------- HOME SUMMARY RESPONSIVE ---------- */

@media (max-width: 1200px) {

    .summary-top {
        grid-template-columns: 1fr;
    }

    .mission-box {
        width: 100%;
    }

    .approach-flow {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .flow-arrow {
        display: none;
    }

    .sector-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {

    .home-summary {
        width: 90%;
        margin: 42px auto 48px;
    }

    .mission-box {
        flex-direction: column;
        padding: 28px 24px;
    }

    .mission-content h2,
    .approach-heading h2,
    .sectors-heading h2 {
        font-size: 27px;
    }

    .approach-box {
        padding: 28px 22px;
    }

    .approach-flow {
        grid-template-columns: 1fr;
    }

    .approach-step {
        min-height: auto;
    }

    .sectors-box {
        padding: 30px 20px;
    }

    .sector-list {
        grid-template-columns: 1fr;
    }

    .sector-item {
        min-height: auto;
    }
}


/* =========================================================
   8. HOME PAGE — CLOSING MESSAGE
========================================================= */

.closing-message {
    width: 86%;
    max-width: 1200px;
    margin: 28px auto 36px;
    padding: 20px 35px;

    text-align: center;

    background: linear-gradient(90deg, #e8f7eb, #cbeed2, #e8f7eb);
    border-radius: 14px;
}

.closing-message h2 {
    margin: 0;

    color: #064f24;
    font-size: 25px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 700;
}


/* =========================================================
   9. ABOUT PAGE — COMMON
========================================================= */

.section-label {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--gc-green);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   10. ABOUT PAGE — HERO
========================================================= */

.about-hero {
    min-height: 440px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 48, 76, 0.95) 0%,
            rgba(0, 48, 76, 0.80) 45%,
            rgba(0, 48, 76, 0.35) 72%,
            rgba(0, 48, 76, 0.18) 100%
        ),
        url("../images/header_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.about-hero-overlay {
    width: 100%;
}

.about-hero-content {
    width: 88%;
    max-width: var(--gc-container);
    margin: 0 auto;
    padding: 72px 0;
}

.about-hero .section-label {
    margin-bottom: 18px;
    color: var(--gc-lime);
}

.about-hero h1 {
    max-width: 900px;
    margin: 0;

    color: var(--gc-white);
    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 1.05;
    font-weight: 800;
}

.about-hero h1 span {
    display: block;
    color: var(--gc-lime);
}

.about-hero p {
    max-width: 950px;
    margin: 28px 0 0;

    color: var(--gc-white);
    font-size: 21px;
    line-height: 1.7;
}


/* =========================================================
   11. ABOUT PAGE — WHO WE ARE
========================================================= */

.about-intro {
    padding: 65px 0;
    background: var(--gc-white);
}

.about-intro-container {
    width: 86%;
    max-width: var(--gc-container);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;

    align-items: start;
}

.about-intro-heading h2 {
    margin: 0;

    color: #006b35;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.about-intro-text {
    padding-top: 10px;
}

.about-intro-text p {
    margin: 0 0 20px;

    color: #3d4c58;
    font-size: 19px;
    line-height: 1.8;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-text strong {
    color: #006b35;
}


/* =========================================================
   12. ABOUT PAGE — MISSION / VISION
========================================================= */

.mission-vision-section {
    padding: 60px 0;
    background: var(--gc-bg-soft);
}

.mission-vision-container {
    width: 86%;
    max-width: var(--gc-container);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.about-card {
    min-width: 0;
    padding: 40px;

    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 26px;
    align-items: start;

    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-lg);

    box-shadow: var(--gc-shadow-sm);
}

.about-card-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f6e4;
    border-radius: 50%;
}

.about-card-icon svg {
    width: 36px !important;
    height: 36px !important;

    fill: none !important;
    stroke: var(--gc-green) !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card h2 {
    margin: 2px 0 14px;

    color: #071b32;
    font-size: 28px;
    line-height: 1.25;
}

.about-card p {
    margin: 0;

    color: #4b5964;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   13. ABOUT PAGE — WHAT WE DO
========================================================= */

.about-services {
    padding: 70px 7%;
    background: var(--gc-white);
}

.section-heading {
    max-width: 980px;
    margin: 0 auto 42px;

    text-align: center;
}

.section-heading h2 {
    margin: 0 0 16px;

    color: #006b35;
    font-size: 40px;
    line-height: 1.2;
}

.section-heading p {
    margin: 0;

    color: #52616c;
    font-size: 19px;
    line-height: 1.7;
}

.about-services-grid {
    max-width: var(--gc-container);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.about-service-card {
    min-width: 0;
    min-height: 270px;

    padding: 36px 32px;

    background: #f8fbf8;
    border: 1px solid var(--gc-border);
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    border-color: #a9d8b6;
    box-shadow: 0 16px 34px rgba(0, 80, 45, 0.10);
}

.about-service-number {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gc-green);
    color: var(--gc-white);

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}

.about-service-card:nth-child(3) .about-service-number,
.about-service-card:nth-child(6) .about-service-number {
    background: var(--gc-orange);
}

.about-service-card:nth-child(4) .about-service-number {
    background: #2e9d2c;
}

.about-service-card:nth-child(5) .about-service-number {
    background: var(--gc-teal);
}

.about-service-card h3 {
    margin: 0 0 15px;

    color: #071b32;
    font-size: 23px;
    line-height: 1.3;
}

.about-service-card p {
    margin: 0;

    color: #52616c;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   14. ABOUT PAGE — WHY GEOCLIMATE
========================================================= */

.why-geoclimate {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #003e37 0%,
            #003e4f 100%
        );
}

.why-container {
    width: 86%;
    max-width: var(--gc-container);
    margin: 0 auto;
}

.why-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

.why-heading .section-label {
    color: var(--gc-lime);
}

.why-heading h2 {
    margin: 0 0 16px;

    color: var(--gc-white);
    font-size: 42px;
    line-height: 1.2;
}

.why-heading p {
    margin: 0;

    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.why-item {
    min-width: 0;
    padding: 30px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.why-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gc-lime);
    color: var(--gc-green-deep);

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}

.why-item h3 {
    margin: 0 0 12px;

    color: var(--gc-white);
    font-size: 22px;
}

.why-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16.5px;
    line-height: 1.7;
}


/* =========================================================
   15. ABOUT PAGE — PARTNERSHIP / CTA
========================================================= */

.partnership-section {
    padding: 60px 0;
    background: var(--gc-bg-green);
}

.partnership-container {
    width: 86%;
    max-width: var(--gc-container);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.partnership-container > div {
    max-width: 950px;
}

.partnership-container h2 {
    margin: 0 0 16px;

    color: #006b35;
    font-size: 38px;
    line-height: 1.2;
}

.partnership-container p {
    margin: 0;

    color: #45545e;
    font-size: 18px;
    line-height: 1.75;
}

.about-cta {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    background: var(--gc-green);
    color: var(--gc-white);

    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.about-cta:hover {
    background: var(--gc-green-dark);
    transform: translateY(-2px);
}


/* =========================================================
   16. SHARED FOOTER
========================================================= */

.site-footer {
    padding: 38px 5% 0;

    background:
        linear-gradient(
            135deg,
            #053b2b 0%,
            #062f50 100%
        );

    color: var(--gc-white);
}

.footer-container {
    max-width: 1420px;
    margin: 0 auto;
    padding-bottom: 30px;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
    gap: 55px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: block;
    width: 320px;
    max-width: 100%;
    height: auto;

    margin: 0 0 24px 0;
    padding: 0;

    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-brand p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}

.footer-brand p {
    max-width: 300px;
    margin: 0;

    color: #e3eee9;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

.footer-column h3 {
    margin: 0 0 12px;

    color: #8bd13c;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.footer-column a,
.footer-column p {
    margin-top: 0;
    margin-bottom: 0;

    color: #ffffff;
    font-size: 16px;
    line-height: 1.75;
}

.footer-column a {
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #8bd13c;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.footer-social a:hover {
    background: var(--gc-green);
    border-color: var(--gc-green);
}

.footer-bottom {
    max-width: 1420px;
    min-height: 52px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);

    color: #dce7e3;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 12px;
}

.footer-bottom a {
    color: var(--gc-white);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: #8bd13c;
}


/* =========================================================
   17. RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .header-container {
        gap: 22px;
    }

    .logo {
        width: 235px;
    }

    .main-nav a {
        padding: 11px 10px;
        font-size: 14px;
    }

    .talk-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-item {
        border-right: 0;
        border-bottom: 1px solid #d9e8df;
    }

    .service-item:nth-last-child(-n + 3) {
        border-bottom: 0;
    }

    .about-intro-container {
        gap: 55px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   18. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .header-container {
        min-height: 90px;
    }

    .logo {
        width: 220px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .banner-text {
        max-width: 760px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-item:nth-last-child(-n + 3) {
        border-bottom: 1px solid #d9e8df;
    }

    .service-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .about-hero {
        min-height: 400px;
    }

    .about-intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro-text {
        padding-top: 0;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
    }

    .partnership-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   19. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .top-bar-container {
        justify-content: center;
    }

    .top-social {
        display: none;
    }

    .top-contact {
        gap: 8px;
        font-size: 12px;
    }

    .header-container {
        min-height: 78px;
        gap: 12px;
    }

    .logo {
        width: 185px;
    }

    .talk-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero-banner {
        min-height: 520px;
        background-position: center;
    }

    .banner-overlay {
        padding: 56px 6%;
    }

    .banner-text h1 {
        font-size: 40px;
    }

    .banner-text p {
        font-size: 17px;
    }

    .hero-points {
        flex-direction: column;
        gap: 8px;
    }

    .services-overview {
        width: 92%;
        margin-top: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 26px 18px;
        border-bottom: 1px solid #d9e8df;
    }

    .service-item:last-child {
        border-bottom: 0;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 16px;
    }

    .closing-message {
        width: 90%;
        padding: 18px 22px;
    }

    .closing-message h2 {
        font-size: 19px;
    }

    .about-hero-content {
        width: 88%;
        padding: 58px 0;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-intro,
    .mission-vision-section,
    .why-geoclimate,
    .partnership-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .about-intro-heading h2,
    .section-heading h2,
    .why-heading h2,
    .partnership-container h2 {
        font-size: 32px;
    }

    .about-intro-text p,
    .section-heading p,
    .why-heading p,
    .partnership-container p {
        font-size: 17px;
    }

    .about-card {
        display: block;
        padding: 30px 24px;
    }

    .about-card-icon {
        margin-bottom: 22px;
    }

    .about-card h2 {
        font-size: 25px;
    }

    .about-services {
        padding: 52px 6%;
    }

    .about-services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .why-heading {
        margin-bottom: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        min-height: auto;
        padding: 18px 0;

        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
/* =========================================================
   GLOBAL HEADER CONSISTENCY FIX
========================================================= */

.top-bar-container {
    min-height: 40px;
}

.top-contact {
    font-size: 15px;
    font-weight: 600;
}

.header-container {
    min-height: 108px;
}

.logo {
    width: 265px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 700;
    padding: 13px 16px;
}

.talk-btn {
    font-size: 16px;
    padding: 14px 22px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .logo {
        width: 250px;
    }

    .main-nav a {
        padding: 12px 10px;
        font-size: 15px;
    }

    .talk-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .header-container {
        min-height: 88px;
    }

    .logo {
        width: 210px;
    }

}

@media (max-width: 650px) {

    .top-bar-container {
        min-height: 42px;
        justify-content: center;
    }

    .top-contact {
        font-size: 12px;
    }

    .top-social {
        display: none;
    }

    .header-container {
        min-height: 78px;
    }

    .logo {
        width: 185px;
    }

    .talk-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

}
/* =========================================================
   HOME SERVICE CARDS — COMPACT TYPOGRAPHY FIX
========================================================= */

.services-overview {
    width: 94%;
    max-width: 1500px;
}

.service-item {
    padding: 28px 16px;
}

.service-item h3 {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.55;
}

.service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}
/* =========================================================
   SERVICES PAGE
========================================================= */


/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero {
    min-height: 430px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 48, 76, 0.95) 0%,
            rgba(0, 48, 76, 0.80) 45%,
            rgba(0, 48, 76, 0.35) 72%,
            rgba(0, 48, 76, 0.18) 100%
        ),
        url("../images/header_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.services-hero-overlay {
    width: 100%;
}

.services-hero-content {
    width: 88%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 0;
}

.services-hero .section-label {
    color: #82d600;
    margin-bottom: 18px;
}

.services-hero h1 {
    max-width: 900px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 1.05;
    font-weight: 800;
}

.services-hero h1 span {
    display: block;
    color: #82d600;
}

.services-hero p {
    max-width: 950px;

    margin: 28px 0 0;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
    padding: 65px 0;

    background: #ffffff;
}

.services-intro-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 72px;

    align-items: start;
}

.services-intro-heading h2 {
    margin: 0;

    color: #006b35;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.services-intro-text {
    padding-top: 10px;
}

.services-intro-text p {
    margin: 0 0 20px;

    color: #3d4c58;

    font-size: 19px;
    line-height: 1.8;
}

.services-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SERVICE DETAIL SECTIONS
========================================================= */

.service-detail {
    padding: 62px 0;
}

.service-light {
    background: #ffffff;
}

.service-soft {
    background: #f5faf6;
}

.service-detail-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        85px
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    gap: 46px;

    align-items: start;
}


/* Number */

.service-detail-number {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #00639a;
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(0, 70, 120, 0.12);
}

.green-number,
.agriculture-number {
    background: #2e9d2c;
}

.orange-number {
    background: #f5820b;
}

.teal-number {
    background: #008c96;
}


/* Main service description */

.service-detail-label {
    display: block;

    margin-bottom: 12px;

    color: #07823b;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.service-detail-main h2 {
    margin: 0 0 18px;

    color: #071b32;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.service-detail-main p {
    margin: 0;

    max-width: 760px;

    color: #4c5c67;

    font-size: 18px;
    line-height: 1.75;
}


/* Capabilities panel */

.service-capabilities {
    padding: 28px 30px;

    background: #ffffff;

    border: 1px solid #dfece3;

    border-radius: 16px;

    box-shadow: 0 8px 22px rgba(0, 60, 40, 0.06);
}

.service-soft .service-capabilities {
    background: #ffffff;
}

.service-capabilities h3 {
    margin: 0 0 18px;

    color: #006b35;

    font-size: 20px;
    font-weight: 800;
}

.service-capabilities ul {
    margin: 0;
    padding-left: 20px;
}

.service-capabilities li {
    margin-bottom: 10px;

    color: #42525f;

    font-size: 16px;
    line-height: 1.55;
}

.service-capabilities li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOW WE WORK
========================================================= */

.services-process {
    padding: 72px 0;

    background:
        linear-gradient(
            135deg,
            #003e37 0%,
            #003e4f 100%
        );
}

.services-process-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;
}

.services-process .section-heading {
    max-width: 900px;
    margin-bottom: 48px;
}

.services-process .section-label {
    color: #82d600;
}

.services-process .section-heading h2 {
    color: #ffffff;

    font-size: 40px;
    line-height: 1.2;
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 48px
        1fr 48px
        1fr 48px
        1fr 48px
        1fr;

    gap: 10px;

    align-items: center;
}

.process-step {
    min-height: 220px;

    padding: 28px 24px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 16px;
}

.process-step span {
    width: 46px;
    height: 46px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #82d600;

    color: #003e37;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;
}

.process-step h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 21px;
}

.process-step p {
    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 16px;
    line-height: 1.65;
}

.process-arrow {
    color: #82d600;

    font-size: 30px;

    text-align: center;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
    padding: 62px 0;

    background: #eef8ef;
}

.services-cta-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.services-cta-container > div {
    max-width: 900px;
}

.services-cta h2 {
    margin: 0 0 16px;

    color: #006b35;

    font-size: 38px;
    line-height: 1.2;
}

.services-cta p {
    margin: 0;

    color: #45545e;

    font-size: 18px;
    line-height: 1.75;
}

.services-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    background: #07823b;

    color: #ffffff;

    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.services-cta-btn:hover {
    background: #005f2d;

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES PAGE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-intro-container {
        gap: 45px;
    }

    .service-detail-container {
        grid-template-columns: 70px 1fr;
    }

    .service-capabilities {
        grid-column: 2;
    }

    .process-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }

    .process-arrow {
        display: none;
    }

}


/* =========================================================
   SERVICES PAGE — SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .services-hero {
        min-height: 400px;
    }

    .services-hero-content {
        padding: 58px 0;
    }

    .services-hero h1 {
        font-size: 40px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .services-intro {
        padding: 52px 0;
    }

    .services-intro-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .services-intro-heading h2 {
        font-size: 34px;
    }

    .services-intro-text {
        padding-top: 0;
    }

    .service-detail {
        padding: 50px 0;
    }

    .service-detail-container {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .service-capabilities {
        grid-column: auto;
    }

    .service-detail-main h2 {
        font-size: 30px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cta-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }

}


/* =========================================================
   SERVICES PAGE — MOBILE
========================================================= */

@media (max-width: 520px) {

    .services-hero h1 {
        font-size: 34px;
    }

    .services-intro-heading h2,
    .services-process .section-heading h2,
    .services-cta h2 {
        font-size: 30px;
    }

    .service-detail-number {
        width: 54px;
        height: 54px;

        font-size: 15px;
    }

    .service-detail-main h2 {
        font-size: 27px;
    }

    .service-detail-main p {
        font-size: 17px;
    }

    .service-capabilities {
        padding: 24px 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   SERVICES — HOW WE WORK REFINEMENT
========================================================= */

.process-grid {
    grid-template-columns:
        1fr 38px
        1fr 38px
        1fr 38px
        1fr 38px
        1fr;

    gap: 8px;
}

.process-step {
    min-height: 190px;
    padding: 24px 20px;
}

.process-step span {
    width: 44px;
    height: 44px;

    margin-bottom: 18px;

    font-size: 14px;
}

.process-step h3 {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.55;
}

.process-arrow {
    font-size: 27px;
}
.process-step {
    min-height: 230px;
    height: 100%;
}

/* =========================================================
   PROJECTS PAGE
========================================================= */


/* =========================================================
   PROJECTS HERO
========================================================= */

.projects-hero {
    min-height: 430px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 48, 76, 0.95) 0%,
            rgba(0, 48, 76, 0.80) 45%,
            rgba(0, 48, 76, 0.35) 72%,
            rgba(0, 48, 76, 0.18) 100%
        ),
        url("../images/header_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.projects-hero-overlay {
    width: 100%;
}

.projects-hero-content {
    width: 88%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 0;
}

.projects-hero .section-label {
    color: #82d600;
    margin-bottom: 18px;
}

.projects-hero h1 {
    max-width: 950px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 1.05;
    font-weight: 800;
}

.projects-hero h1 span {
    display: block;
    color: #82d600;
}

.projects-hero p {
    max-width: 950px;
    margin: 28px 0 0;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.7;
}


/* =========================================================
   PROJECTS INTRO
========================================================= */

.projects-intro {
    padding: 65px 0;

    background: #ffffff;
}

.projects-intro-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 72px;

    align-items: start;
}

.projects-intro-heading h2 {
    margin: 0;

    color: #006b35;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.projects-intro-text {
    padding-top: 10px;
}

.projects-intro-text p {
    margin: 0 0 20px;

    color: #3d4c58;

    font-size: 19px;
    line-height: 1.8;
}

.projects-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PROJECT CARDS
========================================================= */

.projects-grid-section {
    padding: 65px 7% 75px;

    background: #f6faf7;
}

.projects-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.project-card {
    min-width: 0;
    min-height: 360px;

    padding: 34px 32px;

    background: #ffffff;

    border: 1px solid #dfece3;

    border-radius: 18px;

    box-shadow: 0 10px 26px rgba(0, 60, 40, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: #a9d8b6;

    box-shadow: 0 16px 34px rgba(0, 80, 45, 0.10);
}

.project-card-top {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.project-number {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #00639a;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
}

.green-project {
    background: #2e9d2c;
}

.orange-project {
    background: #f5820b;
}

.teal-project {
    background: #008c96;
}

.project-category {
    color: #07823b;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0 0 16px;

    color: #071b32;

    font-size: 24px;
    line-height: 1.3;

    font-weight: 800;
}

.project-card p {
    margin: 0;

    color: #52616c;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PROJECT TAGS
========================================================= */

.project-tags {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.project-tags span {
    padding: 7px 11px;

    background: #edf7ef;

    color: #087037;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   EXPERIENCE AREAS
========================================================= */

.experience-areas {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #003e37 0%,
            #003e4f 100%
        );
}

.experience-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;
}

.experience-heading {
    max-width: 820px;

    margin-bottom: 42px;
}

.experience-heading .section-label {
    color: #82d600;
}

.experience-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.2;
}

.experience-list {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.experience-item {
    padding: 24px 20px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 14px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    text-align: center;
}


/* =========================================================
   PROJECT CTA
========================================================= */

.projects-cta {
    padding: 60px 0;

    background: #eef8ef;
}

.projects-cta-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.projects-cta-container > div {
    max-width: 900px;
}

.projects-cta h2 {
    margin: 0 0 16px;

    color: #006b35;

    font-size: 38px;
    line-height: 1.2;
}

.projects-cta p {
    margin: 0;

    color: #45545e;

    font-size: 18px;
    line-height: 1.75;
}

.projects-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    background: #07823b;

    color: #ffffff;

    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.projects-cta-btn:hover {
    background: #005f2d;

    transform: translateY(-2px);
}


/* =========================================================
   PROJECTS PAGE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .projects-intro-container {
        gap: 45px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   PROJECTS PAGE — SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .projects-hero {
        min-height: 400px;
    }

    .projects-hero-content {
        padding: 58px 0;
    }

    .projects-hero h1 {
        font-size: 40px;
    }

    .projects-hero p {
        font-size: 18px;
    }

    .projects-intro {
        padding: 52px 0;
    }

    .projects-intro-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .projects-intro-heading h2 {
        font-size: 34px;
    }

    .projects-intro-text {
        padding-top: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .experience-list {
        grid-template-columns: 1fr 1fr;
    }

    .projects-cta-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }

}


/* =========================================================
   PROJECTS PAGE — MOBILE
========================================================= */

@media (max-width: 520px) {

    .projects-hero h1 {
        font-size: 34px;
    }

    .projects-intro-heading h2,
    .experience-heading h2,
    .projects-cta h2 {
        font-size: 30px;
    }

    .projects-grid-section {
        padding: 52px 6%;
    }

    .project-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .project-card h3 {
        font-size: 22px;
    }

    .experience-list {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   RESOURCES PAGE
========================================================= */


/* =========================================================
   RESOURCES HERO
========================================================= */

.resources-hero {
    min-height: 430px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 48, 76, 0.95) 0%,
            rgba(0, 48, 76, 0.80) 48%,
            rgba(0, 48, 76, 0.35) 75%,
            rgba(0, 48, 76, 0.18) 100%
        ),
        url("../images/header_image.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.resources-hero-overlay {
    width: 100%;
}

.resources-hero-content {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 70px 0;
}

.resources-hero .section-label {
    color: #82d600;
    margin-bottom: 18px;
}

.resources-hero h1 {
    max-width: 980px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 4.5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
}

.resources-hero h1 span {
    display: block;

    color: #82d600;
}

.resources-hero p {
    max-width: 1050px;

    margin: 28px 0 0;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.7;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.resources-intro {
    padding: 70px 0;

    background: #ffffff;
}

.resources-intro-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 75px;

    align-items: start;
}

.resources-intro-heading h2 {
    margin: 0;

    color: #006b35;

    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
}

.resources-intro-text {
    padding-top: 8px;
}

.resources-intro-text p {
    margin: 0 0 20px;

    color: #465764;

    font-size: 19px;
    line-height: 1.8;
}

.resources-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESOURCE LIBRARY
========================================================= */

.resource-library {
    padding: 75px 7% 85px;

    background: #f4faf6;
}

.resource-library-container {
    max-width: 1500px;

    margin: 0 auto;
}

.resource-library-heading {
    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;
}

.resource-library-heading h2 {
    margin: 0 0 16px;

    color: #006b35;

    font-size: 43px;
    line-height: 1.2;
}

.resource-library-heading p {
    margin: 0;

    color: #53636e;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   RESOURCE CARDS
========================================================= */

.resource-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.resource-card {
    min-height: 345px;

    padding: 34px 32px;

    background: #ffffff;

    border: 1px solid #dce9df;

    border-radius: 18px;

    box-shadow: 0 10px 28px rgba(0, 70, 40, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-5px);

    border-color: #a8d9b3;

    box-shadow: 0 16px 34px rgba(0, 70, 40, 0.10);
}

.resource-number {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
}

.resource-blue {
    background: #00689a;
}

.resource-green {
    background: #29a329;
}

.resource-orange {
    background: #f5820b;
}

.resource-teal {
    background: #008d96;
}

.resource-category {
    display: block;

    margin-bottom: 14px;

    color: #07823b;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.resource-card h3 {
    margin: 0 0 16px;

    color: #071b32;

    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.resource-card p {
    margin: 0;

    color: #52616c;

    font-size: 17px;
    line-height: 1.7;
}

.resource-status {
    display: inline-block;

    margin-top: 24px;

    padding: 7px 12px;

    background: #edf7ef;

    color: #087037;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   KNOWLEDGE SECTION
========================================================= */

.knowledge-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #003f39 0%,
            #003f50 100%
        );
}

.knowledge-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;
}

.knowledge-heading {
    max-width: 850px;

    margin-bottom: 48px;
}

.knowledge-heading .section-label {
    color: #82d600;
}

.knowledge-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 43px;
    line-height: 1.2;
}

.knowledge-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.knowledge-card {
    min-height: 235px;

    padding: 30px 28px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 16px;
}

.knowledge-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #82d600;

    color: #06382e;

    font-size: 14px;
    font-weight: 800;
}

.knowledge-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.3;
}

.knowledge-card p {
    margin: 0;

    color: #d7e4e4;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   COMING SOON
========================================================= */

.resources-coming-soon {
    padding: 65px 0;

    background: #eef8ef;
}

.resources-coming-container {
    width: 86%;
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.resources-coming-container > div {
    max-width: 920px;
}

.resources-coming-container h2 {
    margin: 0 0 16px;

    color: #006b35;

    font-size: 39px;
    line-height: 1.2;
}

.resources-coming-container p {
    margin: 0;

    color: #485863;

    font-size: 18px;
    line-height: 1.75;
}

.resources-contact-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    background: #07823b;

    color: #ffffff;

    border-radius: 8px;

    font-size: 17px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.resources-contact-btn:hover {
    background: #005f2d;

    transform: translateY(-2px);
}


/* =========================================================
   RESOURCES RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .resources-intro-container {
        gap: 45px;
    }

    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 800px) {

    .resources-hero {
        min-height: 400px;
    }

    .resources-hero-content {
        padding: 58px 0;
    }

    .resources-hero h1 {
        font-size: 40px;
    }

    .resources-hero p {
        font-size: 18px;
    }

    .resources-intro {
        padding: 52px 0;
    }

    .resources-intro-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .resources-intro-heading h2 {
        font-size: 34px;
    }

    .resources-intro-text {
        padding-top: 0;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns: 1fr 1fr;
    }

    .resources-coming-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }

}


@media (max-width: 520px) {

    .resources-hero h1 {
        font-size: 34px;
    }

    .resources-intro-heading h2,
    .resource-library-heading h2,
    .knowledge-heading h2,
    .resources-coming-container h2 {
        font-size: 30px;
    }

    .resource-library {
        padding: 52px 6%;
    }

    .resource-card {
        min-height: 0;

        padding: 28px 24px;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

}
/* ==========================================================
   CONTACT PAGE
========================================================== */


/* ----------------------------------------------------------
   CONTACT HERO
---------------------------------------------------------- */

.contact-hero {
    position: relative;
    min-height: 560px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 54, 70, 0.94) 0%,
            rgba(0, 65, 76, 0.82) 45%,
            rgba(0, 73, 68, 0.48) 100%
        ),
        url("../images/contact-hero.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    width: 100%;
}

.contact-hero-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 90px 70px;
}

.section-label {
    display: block;
    color: #00863f;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-hero .section-label {
    color: #7bdc00;
}

.contact-hero h1 {
    max-width: 1000px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.contact-hero h1 span {
    display: block;
    color: #7bdc00;
}

.contact-hero p {
    max-width: 1100px;
    margin: 0;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   INTRODUCTION
---------------------------------------------------------- */

.contact-intro {
    background: #ffffff;
    padding: 100px 0;
}

.contact-intro-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
    align-items: start;
}

.contact-intro-heading h2 {
    margin: 0;
    color: #006f3c;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-intro-text {
    padding-top: 8px;
}

.contact-intro-text p {
    margin: 0 0 25px;
    color: #425466;
    font-size: 21px;
    line-height: 1.8;
}


/* ----------------------------------------------------------
   MAIN CONTACT SECTION
---------------------------------------------------------- */

.contact-main {
    background: #f3faf5;
    padding: 110px 0;
}

.contact-main-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}


/* LEFT CONTACT INFORMATION */

.contact-details {
    padding: 25px 15px 20px 0;
}

.contact-details h2 {
    margin: 0 0 25px;
    color: #07213e;
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
}

.contact-lead {
    color: #536475;
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 45px;
}

.contact-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #d9e8de;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e4f5e9;
    color: #00863f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
}

.contact-item h3 {
    margin: 0 0 5px;
    color: #07213e;
    font-size: 19px;
    font-weight: 800;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: #536475;
    font-size: 18px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00863f;
}


/* ----------------------------------------------------------
   CONTACT FORM
---------------------------------------------------------- */

.contact-form-card {
    background: #ffffff;
    border: 1px solid #d9e9df;
    border-radius: 22px;
    padding: 55px;
    box-shadow: 0 18px 45px rgba(0, 65, 45, 0.08);
}

.contact-form-card h2 {
    margin: 0 0 15px;
    color: #07213e;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.form-intro {
    margin: 0 0 35px;
    color: #607080;
    font-size: 18px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 9px;
    color: #07213e;
    font-size: 15px;
    font-weight: 700;
}

.form-group label span {
    color: #758391;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cad8cf;
    border-radius: 9px;
    background: #ffffff;
    padding: 15px 16px;
    color: #07213e;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 165px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00863f;
    box-shadow: 0 0 0 3px rgba(0, 134, 63, 0.10);
}

.contact-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
    padding: 15px 30px;
    border: 0;
    border-radius: 9px;
    background: #00863f;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-submit:hover {
    background: #006f35;
    transform: translateY(-2px);
}


/* ----------------------------------------------------------
   SUPPORT AREAS
---------------------------------------------------------- */

.contact-support {
    background: #ffffff;
    padding: 110px 0;
}

.contact-support-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 70px;
}

.contact-support-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.contact-support-heading h2 {
    margin: 0;
    color: #006f3c;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.contact-support-card {
    min-height: 290px;
    padding: 38px 32px;
    border: 1px solid #d5e7db;
    border-radius: 18px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-support-card:hover {
    transform: translateY(-6px);
    border-color: #8acfa1;
    box-shadow: 0 16px 35px rgba(0, 70, 45, 0.08);
}

.contact-support-card > span {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: #7bdc00;
    color: #073b37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
}

.contact-support-card h3 {
    margin: 0 0 18px;
    color: #07213e;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-support-card p {
    margin: 0;
    color: #586a79;
    font-size: 17px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   FINAL CTA
---------------------------------------------------------- */

.contact-cta {
    background:
        linear-gradient(
            110deg,
            #004d43 0%,
            #003e4d 55%,
            #073d5b 100%
        );
    padding: 90px 0;
}

.contact-cta-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.contact-cta .section-label {
    color: #7bdc00;
}

.contact-cta h2 {
    max-width: 850px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-cta p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.7;
}

.contact-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 230px;
    min-height: 64px;
    padding: 14px 28px;
    border-radius: 10px;
    background: #7bdc00;
    color: #063d37;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.contact-cta-btn:hover {
    background: #8bea0b;
    transform: translateY(-2px);
}


/* ----------------------------------------------------------
   CONTACT RESPONSIVE DESIGN
---------------------------------------------------------- */

@media (max-width: 1100px) {

    .contact-intro-container,
    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cta-container {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 768px) {

    .contact-hero {
        min-height: 480px;
    }

    .contact-hero-content,
    .contact-intro-container,
    .contact-main-container,
    .contact-support-container,
    .contact-cta-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .contact-hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contact-hero h1 {
        font-size: 46px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-intro,
    .contact-main,
    .contact-support {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .contact-intro-heading h2,
    .contact-support-heading h2 {
        font-size: 38px;
    }

    .contact-details h2,
    .contact-cta h2 {
        font-size: 36px;
    }

    .contact-form-card {
        padding: 35px 25px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

    .contact-support-grid {
        grid-template-columns: 1fr;
    }

    .contact-support-card {
        min-height: auto;
    }

    .contact-cta {
        padding: 70px 0;
    }
}
/* ==========================================================
   CONTACT PAGE — FINAL SMALL REFINEMENTS
========================================================== */

/* Give hero text slightly more breathing room */
.contact-hero-content {
    padding-top: 75px;
    padding-bottom: 105px;
}

/* Keep hero description comfortably inside the section */
.contact-hero p {
    max-width: 1250px;
    line-height: 1.65;
}

/* Make left contact information slightly more compact */
.contact-details .contact-item {
    padding-top: 17px;
    padding-bottom: 17px;
}

.contact-details .contact-lead {
    margin-bottom: 28px;
}
@media (max-width: 768px) {

    .footer-logo {
        width: 260px;
        margin-bottom: 18px;
    }

    .footer-brand p {
        font-size: 16px;
    }
}
/* ============================================================
   NEWS / UPDATES TICKER
   ============================================================ */

.news-ticker {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f3f9f4;
    border-top: 1px solid #d9eadc;
    border-bottom: 1px solid #d9eadc;
    overflow: hidden;
}

.ticker-label {
    flex-shrink: 0;
    background: #008c45;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 28px;
    z-index: 2;
}

.ticker-window {
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-track span {
    position: relative;
    white-space: nowrap;
    color: #33485c;
    font-size: 16px;
    font-weight: 500;
    padding: 0 38px;
}

.ticker-track span::after {
    content: "•";
    position: absolute;
    right: -3px;
    color: #83d900;
    font-size: 20px;
}

.news-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {

    .ticker-label {
        font-size: 11px;
        padding: 13px 16px;
    }

    .ticker-track span {
        font-size: 14px;
        padding: 0 24px;
    }

    .ticker-track {
        animation-duration: 26s;
    }
}
/* ============================================================
   NEWS / UPDATES TICKER
   ============================================================ */

.news-ticker {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    background: #f3f9f4;
    border-top: 1px solid #d9eadc;
    border-bottom: 1px solid #d9eadc;
    overflow: hidden;
}

.ticker-label {
    flex-shrink: 0;
    background: #008c45;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 16px 24px;
    z-index: 2;
}

.ticker-window {
    flex: 1;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
}

.ticker-track span {
    position: relative;
    white-space: nowrap;
    color: #33485c;
    font-size: 15px;
    font-weight: 500;
    padding: 0 34px;
}

.ticker-track span::after {
    content: "•";
    position: absolute;
    right: -2px;
    color: #83d900;
    font-size: 18px;
}

.news-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {

    .news-ticker {
        min-height: 46px;
    }

    .ticker-label {
        font-size: 10px;
        padding: 14px 14px;
        letter-spacing: 1px;
    }

    .ticker-track span {
        font-size: 13px;
        padding: 0 22px;
    }

    .ticker-track {
        animation-duration: 30s;
    }
}
.news-ticker {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;

    /* refined background */
    background: #eef4f6;

    border-top: 1px solid #d6e2e5;
    border-bottom: 1px solid #d6e2e5;
    overflow: hidden;
}

.ticker-label {
    flex-shrink: 0;

    /* GeoClimate green */
    background: #008c45;

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 16px 24px;
    z-index: 2;
}

.ticker-track span {
    position: relative;
    white-space: nowrap;

    /* dark blue-grey */
    color: #27445a;

    font-size: 15px;
    font-weight: 500;
    padding: 0 34px;
}

.ticker-track span::after {
    content: "•";
    position: absolute;
    right: -2px;

    /* GeoClimate lime accent */
    color: #7ed600;

    font-size: 18px;
}