


:root {
    --dbn-green: #008751;
    --dbn-green-dark: #006b41;
    --dbn-green-soft: #e9f8f1;
    --dbn-blue: #177dc0;
    --dbn-navy: #173b57;
    --dbn-gold: #f4b400;
    --dbn-brown: #8b4513;
    --ink: #17202a;
    --muted: #667085;
    --surface: #ffffff;
    --page: #f5f8fb;
    --border: #e7edf3;
    --shadow: 0 16px 40px rgba(16, 24, 40, .08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(0, 135, 81, .12), transparent 34rem), radial-gradient(circle at top right, rgba(23, 125, 192, .12), transparent 30rem), var(--page);
}

a {
    text-decoration: none;
}

.dbn-header {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231, 237, 243, .9);
    box-shadow: 0 8px 30px rgba(16, 24, 40, .04);
    z-index: 1030;
}

.brand-logo img {
    max-height: 54px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #344054;
    font-weight: 700;
    font-size: .94rem;
    padding: .65rem .9rem !important;
    border-radius: 999px;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--dbn-green);
        background: var(--dbn-green-soft);
    }

.btn-dbn {
    --bs-btn-bg: var(--dbn-green);
    --bs-btn-border-color: var(--dbn-green);
    --bs-btn-hover-bg: var(--dbn-green-dark);
    --bs-btn-hover-border-color: var(--dbn-green-dark);
    --bs-btn-color: #fff;
    border-radius: 999px;
    font-weight: 800;
    padding: .75rem 1.15rem;
    box-shadow: 0 12px 26px rgba(0, 135, 81, .2);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 78, 48, .94), rgba(0, 135, 81, .86)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center; /*/cover*/
    color: #fff;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: auto -10% -40% -10%;
        height: 220px;
        background: #f5f8fb;
        border-radius: 50% 50% 0 0;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #eafff5;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: Poppins, Inter, sans-serif;
    font-size: clamp(2.15rem, 4vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.02;
    margin: 1.2rem 0;
}

.hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .85);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-search {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    padding: 1rem;
    margin-top: 1.8rem;
}

    .hero-search .form-select,
    .hero-search .form-control {
        border-radius: 16px;
        border-color: #d0d5dd;
        min-height: 54px;
    }

.section-shell {
    position: relative;
    z-index: 4;
    margin-top: -2rem;
    padding-bottom: 4rem;
}

.glass-panel {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(231, 237, 243, .9);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.dashboard-tabs {
    gap: .5rem;
    padding: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
    overflow-x: auto;
    flex-wrap: nowrap;
}

    .dashboard-tabs .nav-link {
        white-space: nowrap;
        border-radius: 999px;
        color: #475467;
        font-weight: 800;
        padding: .75rem 1.05rem;
    }

        .dashboard-tabs .nav-link.active {
            color: #fff;
            background: linear-gradient(135deg, var(--dbn-green), var(--dbn-blue));
            box-shadow: 0 14px 25px rgba(0, 135, 81, .22);
        }

.metric-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    color: #fff;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .metric-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 54px rgba(16, 24, 40, .15);
    }

    .metric-card::before {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        right: -80px;
        top: -80px;
        background: rgba(255, 255, 255, .16);
    }

    .metric-card .card-body {
        position: relative;
        z-index: 2;
        padding: 1.35rem;
    }

    .metric-card .metric-title {
        font-weight: 800;
        font-size: .95rem;
        color: rgba(255,255,255,.82);
    }

    .metric-card .metric-value {
        font-family: Poppins, Inter, sans-serif;
        font-weight: 800;
        font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    }

    .metric-card .metric-sub {
        color: rgba(255,255,255,.78);
        font-weight: 600;
    }

    .metric-card .metric-icon {
        font-size: 2.75rem;
        opacity: .88;
    }

    .metric-card .more-info {
        color: #fff;
        font-weight: 800;
        font-size: .9rem;
    }

.bg-navy {
    background: linear-gradient(135deg, #173b57, #486d7f);
}

.bg-blue {
    background: linear-gradient(135deg, #065f9e, #177dc0);
}

.bg-green {
    background: linear-gradient(135deg, #006b41, #00a263);
}

.bg-brown {
    background: linear-gradient(135deg, #6e360f, #a45519);
}

.bg-gold {
    background: linear-gradient(135deg, #b7791f, #f4b400);
}

.chart-card,
.side-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--surface);
    overflow: hidden;
    height: 100%;
}

    .chart-card .card-header,
    .side-card .card-header {
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1.15rem 1.25rem;
    }

.chart-title {
    margin: 0;
    font-family: Poppins, Inter, sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--dbn-navy);
}

.chart-container {
    min-height: 330px;
    width: 100%;
}

.card-footer {
    background: #fbfcfe;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

    .card-footer a {
        color: var(--dbn-green);
        font-weight: 800;
    }

.sub-tabs .nav-link {
    white-space: nowrap;
    border-radius: 999px;
    font-weight: 800;
    color: #475467;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
    border: 1px solid var(--border);
}

    .sub-tabs .nav-link.active {
        background: linear-gradient(135deg, var(--dbn-green), var(--dbn-blue));
        box-shadow: 0 14px 25px rgba(0, 135, 81, .22);
        color: #fff;
    }
/*.sub-tabs .nav-link {
    border-radius: 999px;
    font-weight: 800;
    color: #475467;
    background: #fff;
    border: 1px solid var(--border);
}

    .sub-tabs .nav-link.active {
        background: var(--dbn-navy);
        border-color: var(--dbn-navy);
        color: #fff;
    }*/

.state-grid,
.sector-list {
    max-height: 440px;
    overflow: auto;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.state-chip {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    border-radius: 999px;
    padding: .48rem .75rem;
    margin: .25rem;
    font-weight: 800;
    font-size: .8rem;
}

    .state-chip:hover,
    .state-chip.active {
        background: var(--dbn-green);
        border-color: var(--dbn-green);
        color: #fff;
    }

.map-placeholder {
    min-height: 440px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 135, 81, .12), rgba(23, 125, 192, .12)), #fff;
    border: 1px dashed rgba(0, 135, 81, .35);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow);
}

    .map-placeholder i {
        font-size: 4rem;
        color: var(--dbn-green);
    }

.latest-list a {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
    color: #344054;
    font-weight: 700;
}

    .latest-list a:hover {
        color: var(--dbn-green);
    }

.footer {
    background: #0f2f25;
    color: rgba(255,255,255,.74);
    padding: 2rem 0;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .dashboard-tabs {
        border-radius: 22px;
    }

    .metric-card {
        min-height: 175px;
    }

    .chart-container {
        min-height: 280px;
    }
}


