﻿html, body {
    overflow-x: clip;
}

:root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --navy-light: #1a3260;
    --blue-accent: #2563eb;
    --blue-bright: #3b82f6;
    --white: #ffffff;
    --off-white: #f4f6fa;
    --gray-light: #e2e8f0;
    --gray-mid: #94a3b8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #cbd5e1;
    --teal: #0ea5e9;
}


/* ── HERO ── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(5,15,35,0.55) 0%, rgba(5,15,35,0.80) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 64px 48px;
    width: 100%;
}

.breadcrumb {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

    .breadcrumb span {
        color: rgba(255,255,255,0.85);
    }

.badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    font-weight: 300;
}


/* ── MAIN CONTENT ── */
.main-content {
    background: var(--off-white);
    padding: 56px 48px;
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

/* Data source box */
.data-source-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 40px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

    .data-source-box strong {
        color: var(--text-dark);
    }

    .data-source-box a {
        color: var(--blue-accent);
        text-decoration: none;
        font-weight: 600;
    }

        .data-source-box a:hover {
            text-decoration: underline;
        }

/* ══════════════════════════════════════════════
   DB CONTENT STYLES
══════════════════════════════════════════════ */

.db-content {
    /* wrapper for all DB HTML */
}

    /* ── Normal paragraph ── */
    .db-content p,
    .db-content .section-body {
        font-size: 15px;
        color: #475569;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    /* ── H2 heading ── */
    .db-content h2 {
        font-family: 'Merriweather', serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 8px;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }

        .db-content h2 b,
        .db-content h2 strong {
            font-weight: 700;
            font-size: inherit;
            color: inherit;
            text-transform: none;
            letter-spacing: normal;
            display: inline;
            margin: 0;
        }

    /* ── H3 sub heading ── */
    .db-content h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
        margin-top: 7px;
        border-left: 3px solid var(--blue-accent);
        padding-left: 12px;
        line-height: 1.5;
    }

        .db-content h3 b,
        .db-content h3 strong,
        .db-content h3 span {
            font-weight: 700;
            font-size: inherit;
            color: inherit;
            text-transform: none;
            letter-spacing: normal;
            display: inline;
        }

    /* ── <p><b>Section Label</b></p> ── */
    .db-content p:has(> b:only-child),
    .db-content p:has(> strong:only-child) {
        margin-bottom: 4px;
        margin-top: 20px;
    }

        .db-content p:has(> b:only-child) > b,
        .db-content p:has(> strong:only-child) > strong {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--blue-accent);
            display: block;
            margin: 0;
        }

    .db-content p:has(> strong:only-child) {
        margin-bottom: 2px !important;
        margin-top: 22px;
    }

        .db-content p:has(> strong:only-child) > strong {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            display: block;
            text-transform: none;
            letter-spacing: normal;
        }

        .db-content p:has(> strong:only-child) + p {
            margin-top: 4px !important;
        }

    /* ── UL LIST ── */
    .db-content ul {
        margin: 8px 0 20px 0;
        padding: 0;
        list-style: none;
    }

        .db-content ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 15px;
            color: #475569;
            line-height: 1.75;
        }

            .db-content ul li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 10px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: black;
                flex-shrink: 0;
            }

            .db-content ul li b,
            .db-content ul li strong {
                font-weight: 700;
                color: var(--text-dark);
            }

    /* ── OL LIST ── */
    .db-content ol {
        margin: 8px 0 20px 20px;
        padding: 0;
        list-style: decimal;
    }

        .db-content ol li {
            margin-bottom: 10px;
            font-size: 15px;
            color: #475569;
            line-height: 1.75;
            padding-left: 6px;
        }

    /* ── <p>&bull; text bullet points ── */
    .db-content p:has(> br) {
        padding-left: 14px;
        text-indent: -14px;
        line-height: 2.1;
        margin-bottom: 16px;
    }

    /* ── .bull-item ── */
    .db-content .bull-item {
        position: relative;
        padding-left: 18px;
        text-indent: -18px;
        margin-bottom: 20px;
        margin-top: 0;
        font-size: 15px;
        color: #475569;
        line-height: 1.75;
    }

        .db-content .bull-item::first-letter {
            color: var(--blue-accent);
            font-weight: 700;
        }

        .db-content .bull-item > b,
        .db-content .bull-item > strong {
            font-size: 14px !important;
            font-weight: 700 !important;
            letter-spacing: 1.3px !important;
            color: var(--blue-accent) !important;
            display: inline !important;
            text-indent: 0;
        }

    /* ── HR DIVIDER ── */
    .db-content hr,
    .db-content div[align="center"] hr {
        border: none;
        border-top: 1px solid var(--border);
        margin: 36px 0;
        width: 100% !important;
        height: auto !important;
        size: auto !important;
    }

    .db-content div[align="center"] {
        margin: 0;
        padding: 0;
    }

    /* ══════════════════════════════════════════════
       QUOTE BLOCK
       
       DB mein HTML format:
       <p>
         <b><i>"Quote text here..."</i></b>
         <br>
         <span style="letter-spacing:0.3px">— Dimension Market Research, Source</span>
       </p>

       Poora <p> ek navy card ban jaata hai.
       <i> = italic white quote text
       <span> = muted white attribution niche
    ══════════════════════════════════════════════ */

    /* Poora paragraph — navy card wrapper */
    .db-content p:has(> b > i),
    .db-content p:has(> b > em) {
        background: var(--navy);
        border-left: 5px solid #b45309;
        border-radius: 8px;
        padding: 24px 28px 22px 28px;
        margin: 24px 0;
        line-height: 1;
        color: transparent; /* br aur extra whitespace hide */
    }

    /* Quote italic text */
    .db-content p > b > i,
    .db-content p > b > em {
        display: block;
        font-family: 'Merriweather', serif;
        font-size: 15px;
        font-style: italic;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.8;
        margin: 0;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
    }

    /* Attribution — <span style="letter-spacing:..."> inside quote <p> */
    .db-content p:has(> b > i) > span,
    .db-content p:has(> b > em) > span,
    .db-content p > b > span[style*="letter-spacing"] {
        display: block;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.50);
        margin-top: 14px;
        letter-spacing: 0.3px;
        background: none;
        border: none;
        padding: 0;
        line-height: 1.5;
        text-align:end;
    }

    /* ── Links inside DB content ── */
    .db-content a,
    .db-content .custom-link {
        color: var(--blue-accent);
        text-decoration: none;
        font-weight: 600;
    }

        .db-content a:hover,
        .db-content .custom-link:hover {
            text-decoration: underline;
        }


/* ══ STATIC SECTION STYLES ══ */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-accent);
    margin-bottom: 10px;
}

.db-content .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-accent);
    margin-bottom: 4px;
    margin-top: 36px;
    display: block;
}

    .db-content .section-label b {
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        text-transform: inherit;
        letter-spacing: inherit;
        display: inline;
    }

.section-heading {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-body {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}


/* ── SIDEBAR ── */
.report-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header {
    padding: 14px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.sidebar-rows {
    padding: 0;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 13.5px;
}

    .sidebar-row:last-child {
        border-bottom: none;
    }

.sidebar-key {
    color: var(--text-muted);
}

.sidebar-val {
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

    .sidebar-val.sector {
        font-size: 12px;
        color: var(--blue-accent);
    }

/* Sticky sidebar */
.content-grid {
    align-items: start;
}

.sidebar-col {
    align-self: start;
    position: sticky;
    top: 20px;
}

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ── DIVIDER ── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* ── CHALLENGE BLOCK ── */
.challenge-block {
    margin-top: 28px;
}

.challenge-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-left: 3px solid var(--blue-accent);
    padding-left: 12px;
    display: inline-block;
}

/* ── COVERAGE LIST ── */
.coverage-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
}

.coverage-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.coverage-quote {
    margin-top: 24px;
    border-left: 3px solid var(--border);
    padding-left: 16px;
}

.coverage-quote-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── OUTCOMES LIST ── */
.outcomes-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

.outcome-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.outcome-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    margin-top: 1px;
}

.outcome-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ── QUOTE BLOCK (static HTML classes) ── */
.quote-block {
    display: flex;
    gap: 0;
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy);
}

.quote-bar {
    width: 5px;
    flex-shrink: 0;
    background: #b45309;
}

.quote-inner {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-text {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
}

.quote-attr {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

/* ── KEY FINDINGS GRID ── */
.findings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.finding-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.finding-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.finding-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.finding-icon--amber {
    background: #fffbeb;
    color: #d97706;
}

.finding-icon--red {
    background: #fff1f2;
    color: #e11d48;
}

.finding-icon--teal {
    background: #f0fdf4;
    color: #059669;
}

.finding-title {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ── CTA BOX ── */
.cta-box {
    background: var(--navy);
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-title {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    text-align: justify;
}

.cta-btn {
    display: block;
    text-align: center;
    background: var(--blue-accent);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 16px;
    border-radius: 5px;
    margin-top: 4px;
    transition: background 0.2s;
}

    .cta-btn:hover {
        background: #1d4ed8;
    }

.cta-sample {
    display: block;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

    .cta-sample:hover {
        color: var(--white);
    }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .hero-content {
        padding: 48px 20px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .main-content {
        padding: 36px 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-col {
        position: static;
    }
}

@media (max-width: 700px) {
    .findings-grid {
        grid-template-columns: 1fr;
    }

    .db-content h2,
    .db-content .section-heading {
        font-size: 22px;
    }
}

.left-col {
    margin-top: -27px;
}