﻿:root {
    --bg: #ffffff;
    --surface: #f5f7f5;
    --surface2: #eaefe9;
    --border: #dde3db;
    --green: #1a5c2a;
    --green-mid: #236b33;
    --green-light: #2d8040;
    --amber: #e8920a;
    --amber-dark: #c97c08;
    --text: #0e1a0f;
    --muted: #5a6e5b;
    --light: #8fa090;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 90px;
}
/* ===============================
   PREMIUM GLASS NAVBAR
   =============================== */

.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 70px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all .35s ease;
}

    /* NAV LINKS */

    .topnav ul {
        display: flex;
        gap: 30px;
        list-style: none;
    }

        .topnav ul li a {
            text-decoration: none;
            font-size: 15px;
            color: #333;
            font-weight: 500;
            transition: color .25s;
        }

            .topnav ul li a:hover {
                color: #007bff;
            }

/* CTA BUTTON */

.nav-cta {
    background: #007bff;
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

    .nav-cta:hover {
        background: #0056b3;
    }
/* ── NAV ── */
/*.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.7s ease both;
}*/

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    letter-spacing: -0.3px;
}

    .logo-text em {
        color: var(--green);
        font-style: normal;
    }

.topnav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .topnav ul a {
        text-decoration: none;
        color: var(--muted);
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s;
    }

        .topnav ul a:hover {
            color: var(--text);
        }

.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 7px;
    font-weight: 500 !important;
    transition: all 0.2s !important;
}

    .nav-cta:hover {
        background: var(--green-light) !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(26, 92, 42, 0.25) !important;
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 68px;
    overflow: hidden;
}

/* LEFT PANEL */
.hero-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* RIGHT PANEL */
.hero-right {
    background: var(--green);
    min-height: calc(100vh - 68px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* centers content horizontally */
    padding: 60px 52px;
}

    /* decorative geometry on right panel */
    .hero-right::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
    }

    .hero-right::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
    }

/* subtle grid on left */
.hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
    pointer-events: none;
}

/* HERO BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    width: fit-content;
    animation: fadeUp 0.7s 0.2s ease both;
}

/* ── RESPONSIVE: STACK ON MOBILE ── */
@media screen and (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr; /* stack left and right */
        justify-items: center; /* center panels horizontally */
        gap: 60px; /* space between stacked panels */
        padding: 40px 20px;
    }

    .hero-left, .hero-right {
        max-width: 100%;
        padding: 40px 20px;
    }

    .hero-right {
        min-height: auto; /* remove fixed height for mobile */
    }
}


.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

h1 {
    font-family: "Syne", sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -2.5px;
    color: var(--text);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.35s ease both;
}

    h1 em {
        font-style: normal;
        color: var(--green);
    }

.hero-desc {
    font-size: 16px;
    color: var(--muted);
    max-width: 420px;
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.5s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp 0.7s 0.65s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: var(--green-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(26, 92, 42, 0.28);
    }

    .btn-primary svg {
        transition: transform 0.2s;
    }

    .btn-primary:hover svg {
        transform: translateX(3px);
    }

.btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--amber);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-amber:hover {
        background: var(--amber-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(232, 146, 10, 0.3);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    padding: 13px 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-outline:hover {
        border-color: var(--green);
        color: var(--green);
        background: var(--surface);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.7s 0.8s ease both;
}

.stat-num {
    font-family: "Syne", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 5px;
}

    .stat-num em {
        color: var(--green);
        font-style: normal;
    }

.stat-label {
    font-size: 11px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* right panel content */
.rp-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    animation: fadeUp 0.7s 0.4s ease both;
}

.rp-title {
    font-family: "Syne", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 8px;
    animation: fadeUp 0.7s 0.5s ease both;
}

.rp-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.6s ease both;
}

/* Ntuma product card mockup */
.ntuma-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.8s 0.7s ease both;
    position: relative;
    z-index: 1;
}

.nc-topbar {
    background: var(--green);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nc-logo-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
}

.nc-brand-name {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

    .nc-brand-name em {
        color: var(--amber);
        font-style: normal;
    }

.nc-nav {
    display: flex;
    gap: 12px;
}

.nc-nav-item {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    padding: 3px 8px;
    border-radius: 4px;
}

    .nc-nav-item.active {
        background: var(--amber);
        color: #fff;
    }

.nc-hero-img {
    height: 90px;
    background: linear-gradient( 135deg, #4a7c59 0%, #2d6e3e 50%, #1f5c30 100% );
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
}

    .nc-hero-img::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 12px );
    }

.nc-hero-text {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.nc-hero-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.nc-info-bar {
    background: #eaf5ec;
    border-bottom: 1px solid #cde8d2;
    padding: 8px 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nc-info-row {
    font-size: 9px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.nc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.nc-categories {
    padding: 10px 14px 6px;
    border-bottom: 1px solid var(--border);
}

.nc-cat-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.nc-cat-row {
    display: flex;
    gap: 6px;
}

.nc-cat {
    background: var(--amber);
    border-radius: 6px;
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 44px;
}

.nc-cat-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.nc-cat-label {
    font-size: 7px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.nc-products {
    padding: 10px 14px 14px;
}

.nc-prod-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.nc-prod-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

    .nc-prod-item:last-child {
        border-bottom: none;
    }

.nc-prod-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--surface2);
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.nc-prod-info {
    flex: 1;
}

.nc-prod-name {
    font-size: 10px;
    font-weight: 500;
    color: var(--text);
}

.nc-prod-price {
    font-size: 9px;
    color: var(--green);
    font-weight: 600;
    margin-top: 1px;
}

.nc-order-btn {
    background: var(--amber);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* live badge */
.rp-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 100px;
    margin-top: 20px;
    animation: fadeUp 0.7s 0.9s ease both;
    position: relative;
    z-index: 1;
}

.rp-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s infinite;
}

@keyframes fadeUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── SHARED ── */
section {
    padding: 100px 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}

    .section-label::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--green);
    }

h2 {
    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text);
}

/* ── PRODUCT ── */
.product-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.browser {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.browser-bar {
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-dots {
    display: flex;
    gap: 5px;
}

.b-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
}

.b-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--muted);
}

.browser-body {
    padding: 0;
    overflow: hidden;
}

.bb-topbar {
    background: var(--green);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--amber);
    font-family: "Syne", sans-serif;
    font-size: 7px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-site-name {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

    .bb-site-name em {
        color: var(--amber);
        font-style: normal;
    }

.bb-navlinks {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.bb-nl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    padding: 2px 6px;
    border-radius: 3px;
}

    .bb-nl.act {
        background: var(--amber);
        color: #fff;
    }

.bb-banner {
    height: 72px;
    background: linear-gradient(135deg, #3a6b45, #1f5c30);
    display: flex;
    align-items: flex-end;
    padding: 8px 14px;
}

.bb-banner-text {
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--amber);
}

.bb-cats {
    padding: 10px 14px 8px;
    border-bottom: 1px solid var(--border);
}

.bb-cats-title {
    font-size: 9px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.bb-cats-row {
    display: flex;
    gap: 5px;
}

.bb-cat {
    background: var(--amber);
    border-radius: 5px;
    padding: 4px 7px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bb-cat-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.bb-cat-lbl {
    font-size: 6px;
    color: #fff;
    font-weight: 500;
}

.bb-prods {
    padding: 8px 14px 12px;
}

.bb-prods-title {
    font-size: 9px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.bb-prod {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

    .bb-prod:last-child {
        border-bottom: none;
    }

.bb-prod-img {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--surface2);
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.bb-prod-n {
    font-size: 9px;
    font-weight: 500;
    color: var(--text);
}

.bb-prod-p {
    font-size: 8px;
    color: var(--green);
    font-weight: 600;
}

.bb-prod-btn {
    background: var(--amber);
    color: #fff;
    font-size: 7px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.product-info h2 {
    margin-bottom: 18px;
}

.product-info p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.78;
    margin-bottom: 30px;
}

.pf-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 34px;
}

.pf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

    .pf-item:first-child {
        border-top: 1px solid var(--border);
    }

.pf-num {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    min-width: 28px;
    padding-top: 2px;
}

.pf-item strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 3px;
}

.pf-item span {
    font-size: 13px;
    color: var(--muted);
}

/* ── SERVICES ── */
.services-hd {
    max-width: 560px;
    margin-bottom: 48px;
}

    .services-hd h2 {
        margin-bottom: 14px;
    }

    .services-hd p {
        color: var(--muted);
        font-size: 15px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-card {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.25s;
}

    .svc-card:last-child {
        border-right: none;
    }

    .svc-card:hover {
        background: var(--surface);
    }

    .svc-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--green);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .svc-card:hover::after {
        transform: scaleX(1);
    }

.svc-num {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--light);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.svc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
}

.svc-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── WHY ── */
.why-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.why-left h2 {
    margin-bottom: 16px;
}

.why-left > p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 36px;
}

.why-pts {
    display: flex;
    flex-direction: column;
}

.why-pt {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

    .why-pt:first-child {
        border-top: 1px solid var(--border);
    }

.why-pt-n {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    min-width: 28px;
    padding-top: 2px;
}

.why-pt strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.why-pt span {
    font-size: 13px;
    color: var(--muted);
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .metric:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
        transform: translateY(-2px);
    }

    .metric:first-child {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 26px;
        border-top: 3px solid var(--green);
    }

.metric-val {
    font-family: "Syne", sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

    .metric-val em {
        color: var(--green);
        font-style: normal;
    }

.metric-lbl {
    font-size: 13px;
    color: var(--muted);
}

.metric-tag {
    background: rgba(26, 92, 42, 0.07);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    background: var(--green);
}

.cta-inner {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

    .cta-inner .section-label {
        color: rgba(255, 255, 255, 0.4);
        justify-content: center;
    }

        .cta-inner .section-label::before {
            background: rgba(255, 255, 255, 0.2);
        }

    .cta-inner h2 {
        color: #fff;
        font-size: clamp(30px, 4vw, 52px);
        letter-spacing: -2px;
        margin-bottom: 18px;
    }

    .cta-inner p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 16px;
        margin-bottom: 40px;
    }

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-white:hover {
        background: #f0f4f0;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

.btn-amber-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--amber);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 22px;
    border-radius: 8px;
    border: 1px solid rgba(232, 146, 10, 0.4);
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-amber-outline:hover {
        background: rgba(232, 146, 10, 0.1);
        border-color: var(--amber);
    }

/* ── FOOTER ── */
footer {
    padding: 52px 60px 36px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.ft-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 44px;
}

.ft-brand {
    max-width: 250px;
}

    .ft-brand p {
        font-size: 13px;
        color: var(--muted);
        margin-top: 14px;
        line-height: 1.7;
    }

.ft-links {
    display: flex;
    gap: 64px;
}

.ft-col h4 {
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-col a {
    text-decoration: none;
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s;
}

    .ft-col a:hover {
        color: var(--green);
    }

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--light);
}

    .ft-bottom a {
        color: var(--green);
        text-decoration: none;
    }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .hamburger:hover {
        background: var(--surface);
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 200;
    transition: background 0.35s ease;
}

    .sidebar-overlay.active {
        display: block;
        background: rgba(0, 0, 0, 0.4);
    }

/* ── SIDEBAR PANEL ── */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 201;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

    .sidebar.open {
        transform: translateX(0);
    }

/* ── SIDEBAR HEADER ── */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.2s;
}

    .sidebar-close:hover {
        background: var(--surface2);
    }

/* ── SCROLLABLE CONTENT ── */
.sidebar-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding: 8px 0;
}

/* ── NAVIGATION LINKS ── */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .sidebar-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        font-size: 16px;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        transition: color 0.2s, background 0.2s;
    }

        .sidebar-nav a:hover {
            color: var(--green);
            background: var(--surface);
        }

    /* ── SECTIONS TITLES ── */
    .sidebar-nav h4,
    .sidebar-products h4,
    .sidebar-legal h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

/* ── LINKS ── */
.sidebar-link {
    display: block;
    padding: 8px 0;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

    .sidebar-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

/* ── CONTACT INFO ── */
.sidebar-contact p {
    font-size: 14px;
    margin: 4px 0;
}

/* ── FOOTER CTA ── */
.sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

    .sidebar-footer a {
        display: block;
        background: var(--green);
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }

        .sidebar-footer a:hover {
            background: var(--green-light);
            transform: translateY(-1px);
        }

.sidebar-tagline {
    font-size: 12px;
    color: var(--light);
    text-align: center;
    margin-top: 12px;
    letter-spacing: 0.3px;
}
/*.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

    .sidebar.open {
        transform: translateX(0);
    }

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.2s;
}

    .sidebar-close:hover {
        background: var(--surface2);
    }

.sidebar-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .sidebar-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        text-decoration: none;
        color: var(--text);
        font-size: 16px;
        font-weight: 400;
        border-bottom: 1px solid var(--border);
        transition: color 0.2s, background 0.2s;
        width: 100%;
    }

        .sidebar-nav a:last-of-type {
            border-bottom: none;
        }

        .sidebar-nav a:hover {
            color: var(--green);
            background: var(--surface);
        }

        .sidebar-nav a svg {
            color: var(--light);
        }

        .sidebar-nav a:hover svg {
            color: var(--green);
        }

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

    .sidebar-footer a {
        display: block;
        background: var(--green);
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }

        .sidebar-footer a:hover {
            background: var(--green-light);
            transform: translateY(-1px);
        }

.sidebar-tagline {
    font-size: 12px;
    color: var(--light);
    text-align: center;
    margin-top: 12px;
    letter-spacing: 0.3px;
}
*/
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .topnav {
        padding: 0 24px;
    }

        .topnav ul {
            display: none;
        }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: auto;
        padding: 48px 24px;
    }

    .hero-left {
        padding: 100px 24px 60px;
    }

    section,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .product-inner,
    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

        .svc-card:last-child {
            border-bottom: none;
        }

    .metrics {
        grid-template-columns: 1fr 1fr;
    }

    .metric:first-child {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .ft-top {
        flex-direction: column;
    }

    .ft-links {
        flex-wrap: wrap;
        gap: 36px;
    }

    .ft-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/*body {
    background: #f2f6f3;
}*/

.navbar {
    background: #1a5c2a;
    padding: 15px;
}

    .navbar a {
        color: white;
        margin-right: 20px;
        text-decoration: none;
        font-weight: bold;
    }

/*.container {
    padding: 40px;
}*/


<!--
MODAL STYLES -->
/* Modal overlay */
.modal {
    display: none;
    position: fixed !important; /* force fixed */
    z-index: 99999 !important; /* make sure it's above everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    font-family: 'Inter', sans-serif;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
}

    .modal-close:hover {
        color: #ff9900; /* Amber accent on hover */
    }

/* Form elements */
.modal-content h2 {
    margin-bottom: 1rem;
    color: #222;
}

.modal-content label {
    display: block;
    margin: 0.5rem 0 0.25rem;
    font-weight: 600;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .modal-content input:focus,
    .modal-content textarea:focus {
        border-color: #ff9900;
        box-shadow: 0 0 0 2px rgba(255,153,0,0.2);
    }

/* Send button styling to match site theme */
.modal-content .btn-white {
    background-color: #fff;
    color: #ff9900; /* amber accent */
    border: 2px solid #ff9900;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

    .modal-content .btn-white:hover {
        background-color: #ff9900;
        color: #fff;
    }
.logo img {
    height: 42px;
}
.logo-mark img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    margin-left: 8px; /* space between logo and text */
}

/* ===============================
   TOP HEADER: Staff Mail & Website
   =============================== */
.top-header {
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    padding: 4px 10px;
    text-align: right;
}

    .top-header .container {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .top-header a {
        color: #007bff;
        text-decoration: none;
    }

        .top-header a:hover {
            text-decoration: underline;
        }

/* ===============================
   NAVBAR
   =============================== */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 #dde3db;
}

    .topnav .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #000;
    }

        .topnav .logo img {
            margin-right: 8px;
        }

    .topnav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

        .topnav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 10px;
            transition: color 0.2s;
        }

            .topnav ul li a:hover {
                color: #007bff;
            }

.nav-cta {
    background-color: #007bff;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
}

    .nav-cta:hover {
        background-color: #0056b3;
        color: #fff !important;
    }

/* ===============================
   FOOTER
   =============================== */
footer {
    background-color: #f8f8f8;
    padding: 40px 60px 20px;
    font-size: 14px;
    color: #333;
}

    footer a {
        color: #007bff;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

.ft-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.ft-brand {
    max-width: 300px;
}

    .ft-brand .logo {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

.footer-contact p {
    margin: 2px 0;
}

.ft-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.ft-col h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-col ul li {
        margin-bottom: 4px;
    }

/* ===============================
   MOBILE RESPONSIVE
   =============================== */
@media screen and (max-width: 992px) {
    .topnav {
        padding: 0 20px;
    }

        .topnav ul {
            display: none; /* hide menu, use sidebar */
        }

    .top-header .container {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

    .ft-top {
        flex-direction: column;
        gap: 20px;
    }

    .ft-links {
        flex-direction: column;
        gap: 20px;
    }
}
/* CONTACT PAGE */

.contact-section {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 20px;
}

    .contact-section h2 {
        text-align: center;
        font-size: 36px;
    }

.contact-intro {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

/* INFO */

.contact-info h4 {
    margin-top: 20px;
}

.contact-note {
    margin-top: 20px;
    color: #666;
}

/* FORM */

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group input,
    .form-group textarea {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

.btn-primary {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #0056b3;
    }

/* MOBILE */

@media(max-width:768px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.about-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    margin: 60px 0;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.home-services {
    padding: 80px 20px;
    text-align: center;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.pillar-card {
    flex: 1 1 220px;
    max-width: 260px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: #00a859; /* placeholder, can use SVG or image */
    border-radius: 50%;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.svc-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    cursor: pointer;
}

    .svc-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        background: #ffffff;
    }

.svc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.svc-card:hover .svc-icon {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}

.svc-num {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.svc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 0.95rem;
    color: #555;
}
.why-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f0fa 100%);
    position: relative;
}

.why-pt-icon {
    transition: transform 0.5s ease;
}

    .why-pt-icon:hover {
        transform: scale(1.2) rotate(5deg);
    }

.metrics {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    position: relative;
}

.metric {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .metric:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 35px rgba(0,0,0,0.15);
    }

.metric-bg {
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.fintech-bg {
    background: linear-gradient(45deg, #00A859, #007F5F);
}

.software-bg {
    background: linear-gradient(45deg, #0074D9, #00BFFF);
}

.advisory-bg {
    background: linear-gradient(45deg, #FF851B, #FFB84D);
}

.innovation-bg {
    background: linear-gradient(45deg, #A64AC9, #6F42C1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.metric-inner {
    position: relative;
    z-index: 1;
}
/* --- HERO SECTION STYLING --- */
.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 60px;
    background: #ffffff; /* white background */
    gap: 40px;
}

.hero-left, .hero-right {
    flex: 1 1 500px;
}

.hero-badge {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 10px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1f2d3d;
}

    .hero h1 .highlight {
        color: #27ae60;
    }

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
}

.hero-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: #27ae60;
    color: #fff;
}

    .hero-actions .btn-primary:hover {
        background: #1e8449;
        transform: translateY(-2px);
    }

.hero-actions .btn-outline {
    border: 2px solid #27ae60;
    color: #27ae60;
}

    .hero-actions .btn-outline:hover {
        background: #27ae60;
        color: #fff;
    }

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .hero-stats > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.stat-label {
    font-size: 0.9rem;
    color: #34495e;
    margin-top: 5px;
}

/* --- NTUMA CARD (RIGHT) --- */
.hero-right {
    position: relative;
}

.ntuma-card {
    background: #ffffff; /* keep card white */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .ntuma-card:hover {
        transform: translateY(-5px);
    }

.nc-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #27ae60;
    color: #fff;
    padding: 12px 20px;
}

.nc-logo-circle {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #27ae60;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.nc-brand-name em {
    font-style: normal;
    font-weight: 700;
}

.nc-nav {
    display: flex;
    gap: 15px;
}

.nc-nav-item {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

    .nc-nav-item.active, .nc-nav-item:hover {
        background: rgba(255,255,255,0.2);
    }

/* Categories */
.nc-categories {
    padding: 15px 20px;
}

.nc-cat-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nc-cat {
    text-align: center;
    cursor: pointer;
}

.nc-cat-img {
    width: 60px;
    height: 60px;
    background: #ecf0f1;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: 0.3s;
}

.nc-cat:hover .nc-cat-img {
    background: #27ae60;
}

/* Products */
.nc-products {
    padding: 20px;
}

.nc-prod-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: 0.3s;
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
}

    .nc-prod-item:hover {
        background: #e0f7ef;
        transform: scale(1.02);
    }

.nc-prod-img {
    width: 60px;
    height: 60px;
    background: #bdc3c7;
    border-radius: 12px;
}

.nc-order-btn {
    margin-left: auto;
    padding: 8px 15px;
    background: #27ae60;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .nc-order-btn:hover {
        background: #1e8449;
    }

/* LIVE LINK */
.rp-live {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-live-dot {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-left, .hero-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .nc-cat-img {
        width: 50px;
        height: 50px;
    }
}


/* --- FOOTER STYLING (WHITE BACKGROUND) --- */
.footer-section {
    background-color: #ffffff; /* keep white */
    color: #1f2d3d;
    padding: 60px 20px 40px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e0e0e0;
}

    .footer-section a {
        color: #27ae60; /* Ennova green highlights */
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-section a:hover {
            color: #1e8449;
        }

.footer-top.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2d3d;
}

    .footer-logo img {
        height: 36px;
    }

.footer-brand p {
    color: #34495e;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2px 0;
}

.footer-links {
    flex: 1 1 400px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #1f2d3d;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-links ul li {
            margin-bottom: 10px;
        }

            .footer-links ul li a {
                color: #34495e;
                transition: color 0.3s;
            }

                .footer-links ul li a:hover {
                    color: #27ae60;
                }

/* Bottom footer */
.footer-bottom.container {
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.footer-bottom a {
    color: #27ae60;
}

    .footer-bottom a:hover {
        color: #1e8449;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer-top.container {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom.container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Terms & Conditions Styling */
.terms-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    background: #ffffff; /* keep white background */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.terms-title {
    font-weight: 700;
    color: #27ae60; /* Ennova green */
}

.terms-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.terms-list {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2d3d;
    margin-left: 20px;
}

    .terms-list li {
        margin-bottom: 12px;
    }

.btn-outline-success {
    border-color: #27ae60;
    color: #27ae60;
    transition: all 0.3s ease;
}

    .btn-outline-success:hover {
        background-color: #27ae60;
        color: #ffffff;
        transform: translateY(-2px);
    }

/* Privacy Policy Styling */
.privacy-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    background: #ffffff; /* white card background */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.privacy-title {
    font-weight: 700;
    color: #27ae60; /* Ennova green */
}

.privacy-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.privacy-list {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2d3d;
    margin-left: 20px;
}

    .privacy-list li {
        margin-bottom: 12px;
    }

.btn-outline-success {
    border-color: #27ae60;
    color: #27ae60;
    transition: all 0.3s ease;
}

    .btn-outline-success:hover {
        background-color: #27ae60;
        color: #ffffff;
        transform: translateY(-2px);
    }


/* --- LEGAL SECTION TABS --- */
.legal-section {
    padding: 60px 20px;
}

.legal-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: #fff;
    color: #27ae60; /* Ennova green */
    border: 2px solid #27ae60;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .tab-btn:hover {
        background: #27ae60;
        color: #fff;
    }

    .tab-btn.active {
        background: #27ae60;
        color: #fff;
    }

.tab-content .tab-pane {
    display: none;
    font-size: 1rem;
    color: #34495e;
}

    .tab-content .tab-pane.active {
        display: block;
    }

.tab-content ol,
.tab-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.tab-content p {
    margin-top: 15px;
    line-height: 1.6;
}

/* NTUMA SECTION */

.ntuma-section {
    text-align: center;
}

.how-ntuma-works {
    padding: 60px 0;
}

.ntuma-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Ntuma Steps Section */
.ntuma-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.ntuma-step {
    flex: 1 1 220px; /* responsive width */
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    .ntuma-step:hover {
        transform: translateY(-5px);
    }

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 15px;
}

    .payment-methods img {
        width: 80px; /* fixed width */
        height: 80px; /* fixed height */
        object-fit: contain; /* keep aspect ratio without stretching */
        display: inline-block;
        margin: 0 5px; /* optional spacing if multiple images */
    }
       /* .payment-methods img:hover {
            transform: scale(1.1);
        }*/

.ft-col ul {
    list-style: none;
    padding: 0;
}

    .ft-col ul li {
        margin-bottom: 0.5rem;
    }

.ft-col a {
    color: #fff;
    text-decoration: none;
}

    .ft-col a:hover {
        text-decoration: underline;
    }

.legal-section {
    padding: 80px 20px;
}

.legal-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

    .legal-header h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .legal-header p {
        color: #666;
        font-size: 18px;
    }

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.legal-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all .35s ease;
}

    .legal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

.legal-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.legal-card h3 {
    margin-bottom: 10px;
}

/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 520px;
    width: 90%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

    .cookie-banner.show {
        opacity: 1;
        visibility: visible;
    }

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
}

    .cookie-text a {
        color: #00A859;
        text-decoration: none;
    }

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

    .cookie-btn.accept {
        background: #00A859;
        color: #fff;
    }

    .cookie-btn.decline {
        background: #444;
        color: #fff;
    }

    .cookie-btn:hover {
        opacity: 0.9;
    }

/* grid layout */

.ntuma-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

/* step card */

.ntuma-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all .35s ease;
}

    .ntuma-step:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* icon */

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

/* floating animation */

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* button animation */

.ntuma-btn {
    padding: 12px 28px;
    border-radius: 8px;
    transition: all .3s ease;
}

    .ntuma-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* payment images */

.payment-methods img {
    height: 35px;
    margin: 10px 10px 0 0;
}

/* layout */

.about-section {
    padding: 90px 20px;
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* responsive */

@media(max-width:900px) {
    .grid-two-col {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* image */

.about-image img {
    width: 100%;
    border-radius: 12px;
    transition: transform .4s ease;
}

    .about-image img:hover {
        transform: scale(1.04);
    }

/* floating effect */

.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* delays */

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

/* button */

.about-btn {
    display: inline-block;
    margin-top: 15px;
    transition: all .3s ease;
}

    .about-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* paragraph styling */

.about-paragraph {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    transition: all .6s ease;
}

/* title style */

.about-title {
    position: relative;
    margin-bottom: 20px;
}

    /* animated underline */

    .about-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 3px;
        background: #00A859;
        transition: width .8s ease;
    }

.reveal.active.about-title::after {
    width: 80px;
}

/* reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* stagger delays */

.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .3s;
}

.delay-3 {
    transition-delay: .45s;
}

.delay-4 {
    transition-delay: .6s;
}

.delay-5 {
    transition-delay: .75s;
}

/* button animation */

.about-btn {
    margin-top: 10px;
    transition: all .3s ease;
}

    .about-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

/* stats section */
/* stats section grid */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 30px;
    text-align: center;
}

/* stat card styling */

.stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* icon styling */

.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

/* number styling */

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #00A859;
    margin-bottom: 5px;
}

    .stat-num em {
        font-size: 18px;
        color: #00A859;
        font-style: normal;
        vertical-align: top;
    }

/* label styling */

.stat-label {
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* floating animation for icons */

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Wrapper for background */
.about-stats-wrapper {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(135deg,#f0f9ff,#ffffff);
    border-radius: 20px;
}

/* Background shapes */
.stats-bg .shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    animation: float-shape 15s linear infinite;
}

.stats-bg .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #00A859;
}

.stats-bg .square {
    width: 60px;
    height: 60px;
    background: #0074D9;
}

.stats-bg .triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #FF851B;
}

/* random positioning */
.stats-bg .shape:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-duration: 18s;
}

.stats-bg .shape:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 20s;
}

.stats-bg .shape:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 22s;
}

.stats-bg .shape:nth-child(4) {
    top: 50%;
    left: 50%;
    animation-duration: 17s;
}

.stats-bg .shape:nth-child(5) {
    top: 15%;
    left: 60%;
    animation-duration: 19s;
}

/* float animation */
@keyframes float-shape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Bring stats above shapes */
.about-stats {
    position: relative;
    z-index: 1;
}

/* Grid remains same */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 30px;
    text-align: center;
}

/* Stat cards styling remains modern */
.stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

/* Icons floating */
.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Numbers and labels styling */
.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #00A859;
    margin-bottom: 5px;
}

    .stat-num em {
        font-size: 18px;
        color: #00A859;
        font-style: normal;
        vertical-align: top;
    }

.stat-label {
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay classes */
    .reveal.delay-1 {
        transition-delay: 0.2s;
    }

    .reveal.delay-2 {
        transition-delay: 0.4s;
    }

    .reveal.delay-3 {
        transition-delay: 0.6s;
    }

    .reveal.delay-4 {
        transition-delay: 0.8s;
    }

    .reveal.delay-5 {
        transition-delay: 1s;
    }

    .reveal.delay-6 {
        transition-delay: 1.2s;
    }

    .reveal.delay-7 {
        transition-delay: 1.4s;
    }

    .reveal.delay-8 {
        transition-delay: 1.6s;
    }

/* Floating effect for info/form elements */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
}

/* Form styling */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    input:focus, textarea:focus {
        border-color: #00A859;
        box-shadow: 0 4px 12px rgba(0,168,89,0.15);
        outline: none;
    }

button.btn-primary {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    background: #00A859;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    button.btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,168,89,0.3);
    }

.ntuma-categories {
    columns: 2;
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

    .ntuma-categories li {
        margin-bottom: 6px;
        font-size: 14px;
    }