/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    width: 36px;
    height: 40px;
}

.brand-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-tag {
    font-size: 0.7rem;
    color: var(--muted);
}

/* NAV */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.9rem;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--charcoal);
    border-radius: 4px;
}

/* BUTTONS */
.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-outline {
    border: 1px solid var(--charcoal);
}








/* =====================
   FOOTER (REFINED)
===================== */
.site-footer {
    background: #1a201d;
    color: #e6e6e6;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

/* GRID */
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* BRAND */
.footer-brand {
    display: flex;
    gap: 0.9rem;
}

.footer-brand img {
    width: 38px;
    height: 38px;
}

.footer-brand h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.footer-brand span {
    font-size: 0.75rem;
    color: #bdbdbd;
}

/* LINKS */
.footer-links h5,
.footer-contact h5 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: #cfcfcf;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* CONTACT */
.footer-contact p {
    font-size: 0.8rem;
    color: #cfcfcf;
    margin-bottom: 0.4rem;
}

.footer-contact a {
    color: #cfcfcf;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.75rem;
    color: #bdbdbd;
}











/* =====================
   HERO CAROUSEL
===================== */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* OVERLAY */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(31, 61, 43, 0.85),
        rgba(31, 61, 43, 0.45),
        rgba(31, 61, 43, 0.15)
    );
    z-index: 1;
}

/* CONTENT */
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: var(--white);
}

.hero-slide-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-slide-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* CONTROLS */
.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.hero-controls .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.hero-controls .dot.active {
    background: #ffffff;
}











/* =====================
   VALUE PROPOSITION
===================== */
.value-prop {
    padding: 5rem 0;
    background: var(--white);
}

.vp-header {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.vp-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.vp-header p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* GRID */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* CARD */
.vp-card {
    padding: 2rem;
    background: #f7f9f8;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.vp-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* HOVER (SUBTLE) */
.vp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* ANIMATION */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}






.services::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,0.1),
        transparent
    );
    margin-bottom: 4rem;
}



/* =====================
   SERVICES (ENHANCED)
===================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom,
        #f7f9f8,
        #ffffff
    );
}

/* HEADER */
.services-header {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.services-header p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

/* CARD */
.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.6rem 2.2rem;
    border: 1px solid #e6e6e6;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.04),
        rgba(0,0,0,0)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ICON WRAPPER */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.service-icon img {
    width: 28px;
    height: 28px;
}

/* SERVICE VARIANTS */
.service-card:nth-child(1) .service-icon {
    background: rgba(31, 61, 43, 0.12);
}

.service-card:nth-child(2) .service-icon {
    background: rgba(44, 122, 123, 0.15);
}

.service-card:nth-child(3) .service-icon {
    background: rgba(200, 181, 96, 0.2);
}

/* TITLES */
.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

/* DESCRIPTION */
.service-desc {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

/* LIST */
.service-list {
    margin-bottom: 1.8rem;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.45rem;
    padding-left: 1.1rem;
    position: relative;
}

.service-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* LINK */
.service-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green);
    margin-top: auto;
}











/* =====================
   HOW WE WORK
===================== */
.how-we-work {
    padding: 6rem 0;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #f3f7fb
    );
}

/* HEADER */
.how-header {
    max-width: 720px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.how-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.how-header p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

/* FLOW */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

/* STEP */
.process-step {
    background: var(--white);
    border-radius: 16px;
    padding: 2.4rem 1.8rem;
    text-align: center;
    border: 1px solid #e4e9f2;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.6rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ICONS */
.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 30px;
    height: 30px;
}

/* COLOUR CODING */
.step-icon.research {
    background: rgba(31, 61, 43, 0.15);
}

.step-icon.data {
    background: rgba(44, 122, 123, 0.18);
}

.step-icon.tech {
    background: rgba(52, 94, 247, 0.18); /* BLUE FOR TECH */
}

.step-icon.deploy {
    background: rgba(100, 116, 139, 0.15);
}

/* CONNECTORS */
.process-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(52, 94, 247, 0.25),
        rgba(52, 94, 247, 0.6)
    );
    align-self: center;
}
/* =====================
   CLIENTS / PARTNERS
===================== */
.clients {
    padding: 5.5rem 0;
    background: #ffffff;
}

.clients-header {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.clients-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.clients-header p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* CAROUSEL */
.clients-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.clients-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 35s linear infinite;
}

/* PAUSE ON HOVER */
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* LOGO */
.client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* KEYFRAMES */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/* =====================
   FINAL CTA
===================== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        #1f3d2b,
        #1f3d2b,
        #2c7a7b
    );
    color: #ffffff;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 520px;
}

/* ACTIONS */
.cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-end;
}

/* BUTTON TWEAKS */
.btn-cta {
    background: #ffffff;
    color: #1f3d2b;
    font-weight: 500;
}

.btn-cta:hover {
    background: #e6f2ee;
}

.btn-cta-outline {
    border: 1px solid rgba(255,255,255,0.8);
    color: #ffffff;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.08);
}






/* ===============================
   SERVICES PAGE HERO
================================ */

.services-hero {
    position: relative;
    padding: 5rem 0 4rem;   /* narrow height */
    margin-top: 80px;      /* accounts for existing header */
    background:
        linear-gradient(
            rgba(0, 40, 30, 0.55),
            rgba(0, 40, 30, 0.55)
        ),
        url("../images/services/services hero.jpg") center / cover no-repeat;
    color: #ffffff;
}

.services-hero .container {
    max-width: 880px;      /* keeps it narrow */
}

.services-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.services-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;
    opacity: 0.9;
}







/* ===============================
   CORE SERVICES SECTION
================================ */

.services-core {
    padding: 6rem 0;
    background-color: #f7f9f8;
}

.services-header {
    max-width: 680px;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2.25rem;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
    margin-bottom: 1.25rem;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-points li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
}

/* ===============================
   SERVICE COLOR SEMANTICS
================================ */

.service-card.research {
    border-top: 4px solid #1f6f5c; /* research green */
}

.service-card.technology {
    border-top: 4px solid #1c4fd8; /* tech blue */
}

.service-card.advisory {
    border-top: 4px solid #6b7280; /* neutral advisory */
}



/* ===============================
   SERVICES PROCESS SECTION
================================ */

.services-process {
    padding: 6rem 0;
    background-color: #ffffff;
}

.process-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ===============================
   PROCESS FLOW
================================ */



.process-step {
    position: relative;
    padding: 2.5rem 2.25rem;
    border-radius: 12px;
    background: #f8faf9;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* Step number */

.step-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

/* ===============================
   COLOR SEMANTICS
================================ */

.process-step.research {
    border-top: 4px solid #1f6f5c; /* research green */
}

.process-step.data {
    border-top: 4px solid #3a7d7a; /* data teal */
}

.process-step.systems {
    border-top: 4px solid #1c4fd8; /* tech blue */
}

.process-step.deployment {
    border-top: 4px solid #6b7280; /* neutral deployment */
}











/* ===============================
   SERVICES CTA
================================ */

.services-cta {
    padding: 6rem 0;
    background:
        linear-gradient(
            rgba(0, 40, 30, 0.75),
            rgba(0, 40, 30, 0.75)
        ),
        url("../images/services/services-cta.jpg") center / cover no-repeat;
    color: #ffffff;
}

.services-cta .container {
    max-width: 720px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Button override (keeps existing system) */
.services-cta .btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    border-radius: 30px;
}










/* ===============================
   SECTORS HERO
================================ */

.sectors-hero {
    position: relative;
    padding: 7rem 0 6rem;
    margin-top: 80px; /* accounts for fixed header */
    background:
        linear-gradient(
            rgba(0, 25, 20, 0.65),
            rgba(0, 25, 20, 0.65)
        ),
        url("/assets/images/sectors/heroindex.jpg") center / cover no-repeat;
    color: #ffffff;
}

.sectors-hero .container {
    max-width: 760px;
}

/* Eyebrow text */
.sectors-hero .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

/* Main heading */
.sectors-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* Intro paragraph */
.sectors-hero .hero-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    opacity: 0.95;
}












/* ===============================
   SECTORS LIST (MINIMAL / EDITORIAL)
================================ */

.sectors-list {
    padding: 6rem 0;
    background-color: #f9faf9;
}

/* Individual sector row */
.sector-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
    border-bottom: 1px solid #e6e8e7;
}

.sector-item:last-child {
    border-bottom: none;
}

/* Reverse layout */
.sector-item.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

/* Text content */
.sector-content h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.sector-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    max-width: 520px;
    margin-bottom: 1.25rem;
}

/* Link */
.sector-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f6f5c;
    text-decoration: none;
    position: relative;
}

.sector-link::after {
    content: "→";
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
}

.sector-link:hover::after {
    transform: translateX(4px);
}

/* Visual block */
.sector-visual {
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
}








/* ===============================
   SECTORS CTA (MINIMAL)
================================ */

.sectors-cta {
    padding: 5.5rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e6e8e7;
}

.sectors-cta .container {
    max-width: 720px;
}

.sectors-cta h2 {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.sectors-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    max-width: 560px;
}

/* Button refinement */
.sectors-cta .btn-primary {
    padding: 0.85rem 2.1rem;
    font-size: 0.95rem;
    border-radius: 28px;
}













/* =====================================================
   SECTOR PAGES – SHARED STYLES (ALL SECTORS)
===================================================== */

/* ===============================
   SECTOR HERO (BASE)
================================ */

.sector-hero {
    padding: 7.5rem 0 6rem;
    margin-top: 80px; /* fixed header offset */
    color: #ffffff;
    position: relative;
}

.sector-hero .container {
    max-width: 760px;
}

.sector-hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
}

.sector-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.1rem);
    margin: 0.75rem 0 1rem;
}

.sector-hero .hero-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
}


/* ===============================
   SECTOR HERO – IMAGES
   (Change images only, layout stays)
================================ */

.agriculture-hero {
    background:
        linear-gradient(rgba(0, 30, 20, 0.65), rgba(0, 30, 20, 0.65)),
        url("/assets/images/homepage/agriculture.jpg") center / cover no-repeat;
}

.smes-hero {
    background:
        linear-gradient(rgba(0, 25, 35, 0.65), rgba(0, 25, 35, 0.65)),
        url("/assets/images/sectors/sme hero.jpg") center / cover no-repeat;
}

.institutions-hero {
    background:
        linear-gradient(rgba(25, 25, 25, 0.7), rgba(25, 25, 25, 0.7)),
        url("/assets/images/sectors/institution.jpg") center / cover no-repeat;
}


/* ===============================
   CONTEXT
================================ */

.sector-context {
    padding: 6rem 0;
}

.context-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.context-image {
    height: 320px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

/* Sector-specific context images */
.context-image.agriculture {
    background-image: url("/assets/images/sectors/agrisystem.jpg");
}

.context-image.smes {
    background-image: url("/assets/images/sectors/smes.jpg");
}

.context-image.institutions {
    background-image: url("/assets/images/sectors/inst.jpg");
}


/* ===============================
   HISTORY
================================ */

.sector-history {
    padding: 6rem 0;
    background-color: #f8faf9;
    text-align: center;
}

.sector-history .section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.sector-history .section-header p {
    color: #555;
}

.history-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.timeline-item {
    background-color: #ffffff;
    padding: 2.2rem 2rem;
    border-radius: 12px;
    text-align: left;
    border-top: 4px solid #1f6f5c;
}

.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}


/* ===============================
   APPROACH
================================ */

.sector-approach {
    padding: 6rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    height: 300px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

/* Sector-specific approach images */
.approach-image.agriculture {
    background-image: url("/assets/images/sectors/complementary.jpg");
}

.approach-image.smes {
    background-image: url("/assets/images/sectors/approach.jpg");
}

.approach-image.institutions {
    background-image: url("/assets/images/sectors/approach.jpg");
}

.approach-points {
    margin-top: 1.5rem;
}

.approach-points li {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
}

.approach-points li::before {
    content: "–";
    position: absolute;
    left: 0;
}


/* ===============================
   IMPACT
================================ */

.sector-impact {
    padding: 6rem 0;
    background-color: #f8faf9;
    text-align: center;
}

.sector-impact .section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.sector-impact .section-header p {
    color: #555;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.impact-card {
    padding: 2.2rem;
    border-radius: 12px;
    text-align: left;
}

.impact-card:nth-child(1) {
    background-color: #eef6f3;
    border-top: 4px solid #1f6f5c;
}

.impact-card:nth-child(2) {
    background-color: #eef2fb;
    border-top: 4px solid #1c4fd8;
}

.impact-card:nth-child(3) {
    background-color: #f3f4f6;
    border-top: 4px solid #6b7280;
}


/* ===============================
   SECTOR PAGE CTA
================================ */

.sector-page-cta {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e6e8e7;
    text-align: center;
}

.sector-page-cta .container {
    max-width: 720px;
}

.sector-page-cta .section-header {
    margin-bottom: 2.5rem;
}

.sector-page-cta h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.sector-page-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
}

.sector-page-cta .btn-primary {
    padding: 0.9rem 2.3rem;
    font-size: 0.95rem;
    border-radius: 30px;
}











/* ===============================
   PORTFOLIO HERO
================================ */

.portfolio-hero {
    padding: 7rem 0 6rem;
    margin-top: 80px;
    background:
        linear-gradient(rgba(0, 25, 35, 0.7), rgba(0, 25, 35, 0.7)),
        url("/assets/images/homepage/data.jpg") center / cover no-repeat;
    color: #ffffff;
}

.portfolio-hero .container {
    max-width: 760px;
}

.portfolio-hero .hero-intro {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.75;
}


/* ===============================
   PORTFOLIO INTRO
================================ */

.portfolio-intro {
    padding: 4rem 0;
}

.portfolio-intro p {
    max-width: 720px;
    font-size: 1.05rem;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
}


/* ===============================
   PORTFOLIO CASES
================================ */

.portfolio-cases {
    padding: 5rem 0;
    background-color: #f8faf9;
}

.case-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e6e8e7;
}

.case-item:last-child {
    border-bottom: none;
}

.case-item.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.case-content h2 {
    margin-bottom: 1rem;
}

.case-content h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 1.5rem;
}

.case-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
}

.case-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}


/* ===============================
   CASE VISUALS
================================ */

.case-visual {
    height: 300px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.case-visual.dukasmart {
    background-image: url("/assets/images/portfolio/dukasmart.png");
}

.case-visual.wakili {
    background-image: url("/assets/images/portfolio/wakili.png");
}

.case-visual.shulesmart {
    background-image: url("/assets/images/portfolio/shulesmart.png");
}


/* ===============================
   PORTFOLIO CTA
================================ */

.portfolio-cta {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e6e8e7;
    text-align: center;
}

.potfolio-cta .container {
    max-width: 720px;
}

.portfolio-cta .section-header {
    margin-bottom: 2.5rem;
}

.portfolio-cta h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.portfolio-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
}

.portfolio-cta .btn-primary {
    padding: 0.9rem 2.3rem;
    font-size: 0.95rem;
    border-radius: 30px;
}














/* ===============================
   INSIGHTS HERO
================================ */

.insights-hero {
    padding: 7rem 0 6rem;
    margin-top: 80px;
    background:
        linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.7)),
        url("/assets/images/sectors/insights.jpg") center / cover no-repeat;
    color: #ffffff;
}

.insights-hero .container {
    max-width: 760px;
}

.insights-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.1rem);
    margin: 0.75rem 0 1rem;
}

.insights-hero .hero-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
}


/* ===============================
   INSIGHTS INTRO
================================ */

.insights-intro {
    padding: 4rem 0;
}

.insights-intro p {
    max-width: 720px;
    font-size: 1.05rem;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
}


/* ===============================
   INSIGHTS LIST
================================ */

.insights-list {
    padding: 5rem 0;
    background-color: #f8faf9;
}

.insight-item {
    max-width: 760px;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e6e8e7;
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.insight-item h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    max-width: 640px;
}

.insight-meta {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #6b7280;
}


/* ===============================
   INSIGHTS CTA
================================ */

.insights-cta {
    padding: 6rem 0;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #e6e8e7;
}

.insights-cta .container {
    max-width: 720px;
}

/* Heading */
.insights-cta h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

/* Supporting text */
.insights-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* Button refinement */
.insights-cta .btn-primary {
    padding: 0.9rem 2.3rem;
    font-size: 0.95rem;
    border-radius: 30px;
}

/* ===============================
   INSIGHT LINKS
================================ */

.insight-link {
    color: inherit;
    text-decoration: none;
}

.insight-link:hover {
    text-decoration: underline;
}




/* ===============================
   ABOUT HERO
================================ */

.about-hero {
    padding: 7.5rem 0 6.5rem;
    margin-top: 80px;
    background:
        linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.7)),
        url("/assets/images/brand/about.jpg") center / cover no-repeat;
    color: #ffffff;
}

.about-hero .container {
    max-width: 760px;
}


/* ===============================
   IDENTITY (LOGO + WHO WE ARE)
================================ */

.about-identity {
    padding: 6rem 0;
    background-color: #ffffff;
}

.identity-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.identity-logo img {
    max-width: 260px;
    width: 100%;
    opacity: 0.95;
}

.identity-content h2 {
    margin-bottom: 1rem;
}

.identity-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}


/* ===============================
   PHILOSOPHY
================================ */

.about-philosophy {
    padding: 6rem 0;
    background-color: #f8faf9;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.philosophy-item {
    padding: 2.2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #1f6f5c;
}


/* ===============================
   APPROACH
================================ */

.about-approach {
    padding: 6rem 0;
}

.approach-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.approach-step {
    padding: 2rem;
    border-radius: 12px;
    background-color: #f8faf9;
}

.approach-step span {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    opacity: 0.6;
}


/* ===============================
   ABOUT CTA
================================ */


.about-cta {
    padding: 6rem 0;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #e6e8e7;
}

.about-cta .container {
    max-width: 720px;
}

/* Heading */
.about-cta h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

/* Supporting text */
.about-cta p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* Button refinement */
.about-cta .btn-primary {
    padding: 0.9rem 2.3rem;
    font-size: 0.95rem;
    border-radius: 30px;
}










/* ===============================
   CONTACT HERO
================================ */

.contact-hero {
    padding: 7.5rem 0 6.5rem;
    margin-top: 80px;
    background:
        linear-gradient(rgba(15, 15, 15, 0.65), rgba(15, 15, 15, 0.65)),
        url("/assets/images/brand/contact\ us.jpg") center / cover no-repeat;
    color: #ffffff;
}

.contact-hero .container {
    max-width: 760px;
}


/* ===============================
   CONTACT DETAILS
================================ */

.contact-details {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.contact-item a {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f6f5c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* ===============================
   MAP
================================ */

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 14px;
}
