/* Styling for Industry & Services Profile Page - SLBC Odisha */
.slbc-industry-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    padding: 30px 0 60px;
    background-color: #f6f8fb;
}

@media (min-width: 1200px) {
    .slbc-industry-page .container {
        width: 1500px;
    }
}

/* Sidebar & Grid Layout */
@media (min-width: 992px) {
    .slbc-industry-page .row {
        display: flex;
        flex-wrap: wrap;
    }
    .slbc-industry-page .row::before,
    .slbc-industry-page .row::after {
        display: none;
    }
}

.slbc-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    z-index: 5;
}

.admin-bar .slbc-sidebar {
    top: 140px;
}

.slbc-sidebar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 22px;
    margin-bottom: 25px;
}

.slbc-sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0a5994;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slbc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slbc-nav-item {
    margin-bottom: 8px;
}

.slbc-nav-link {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    border-radius: 0 6px 6px 0;
}

.slbc-nav-link:hover,
.slbc-nav-link.active {
    color: #0a5994;
    background-color: #f0f7fc;
    border-left-color: #0a5994;
    padding-left: 15px;
}

/* Quick Links Card */
.slbc-quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slbc-quick-links-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 8px;
}

.slbc-quick-links-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.slbc-quick-link {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #2d3748;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.slbc-quick-link i {
    color: #0a5994;
    margin-right: 8px;
    font-size: 13px;
}

.slbc-quick-link:hover {
    color: #0a5994;
}

/* Hero Stat Grid */
.slbc-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.slbc-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slbc-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.slbc-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.slbc-stat-label {
    font-size: 12.5px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.slbc-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #f0f7fc;
    color: #0a5994;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slbc-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0a5994;
    margin-top: 5px;
}

.slbc-stat-meta {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
    border-top: 1px solid #edf2f7;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}

.slbc-trend-badge {
    font-weight: 700;
    color: #38a169; /* green */
}

/* Content Card Styling */
.slbc-industry-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 100px;
}

.slbc-industry-card:hover {
    box-shadow: 0 8px 25px rgba(10, 89, 148, 0.06);
}

.slbc-card-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.slbc-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a5994;
    margin: 0;
}

.slbc-card-subtitle {
    font-size: 13.5px;
    color: #718096;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slbc-card-body p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.slbc-highlight-box {
    background-color: #fdf5e6;
    border-left: 4px solid #b85d06;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.slbc-highlight-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
}

/* Info Box Grids */
.slbc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.slbc-info-box {
    background-color: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 15px;
    transition: background-color 0.2s ease;
}

.slbc-info-box:hover {
    background-color: #f1f5f9;
}

.slbc-info-title {
    font-size: 12px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.slbc-info-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
}

/* Feature List */
.slbc-feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.slbc-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.slbc-feature-list li::before {
    content: "\f105"; /* caret-right in FontAwesome */
    font-family: FontAwesome;
    position: absolute;
    left: 8px;
    top: 0;
    color: #0a5994;
    font-size: 14px;
    font-weight: 800;
}

.slbc-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* --- Premium PDF Graph & Layout Recreations --- */

.slbc-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.slbc-chart-box-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slbc-chart-box-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
}

/* Donut Chart Visual Styles */
.slbc-donut-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.slbc-donut-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
}

.slbc-donut-block-title {
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 12px;
}

.slbc-donut-svg-wrap {
    position: relative;
    width: 150px;
    height: 150px;
}

.slbc-donut-svg-wrap svg {
    width: 100%;
    height: 100%;
}

.slbc-donut-legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
}

.slbc-donut-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
}

.slbc-donut-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.slbc-donut-legend-color.mfg { background-color: #e74c3c; }
.slbc-donut-legend-color.const { background-color: #3182ce; }
.slbc-donut-legend-color.mining { background-color: #ecc94b; }
.slbc-donut-legend-color.elec { background-color: #319795; }

/* Vertical Bar Chart Layouts */
.slbc-v-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 100%;
    height: 180px;
    margin: 20px 0;
    border-bottom: 2px solid #cbd5e0;
    padding-bottom: 5px;
}

.slbc-v-chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    max-width: 80px;
}

.slbc-v-chart-bar-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 140px;
    width: 100%;
    position: relative;
}

.slbc-v-chart-val {
    font-size: 12px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.slbc-v-chart-bar {
    width: 28px;
    background-color: #e74c3c;
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease-out;
}

.slbc-v-chart-bar.india-blue {
    background-color: #1a5276;
}

.slbc-v-chart-label {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-top: 8px;
    text-align: center;
}

/* Grouped Multi-Category Vertical Chart */
.slbc-v-chart-multi {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    gap: 10px;
}

.slbc-v-chart-cat-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slbc-v-chart-cat-bars {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 185px; /* overall height covering positive and negative */
    position: relative;
    width: 100%;
}

.slbc-v-chart-baseline {
    position: absolute;
    left: 0;
    right: 0;
    top: 135px; /* height of positive area */
    height: 2px;
    background-color: #718096;
    z-index: 2;
}

.slbc-v-chart-col-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    margin: 0 4px;
}

.slbc-v-chart-col-pos {
    height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.slbc-v-chart-col-neg {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.slbc-v-chart-bar-fill {
    width: 100%;
    background-color: #e74c3c;
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease-out;
}

.slbc-v-chart-bar-fill.india-blue {
    background-color: #1a5276;
}

.slbc-v-chart-bar-fill.neg-fill {
    border-radius: 0 0 4px 4px;
}

.slbc-v-chart-lbl-below {
    font-size: 11px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-top: 10px;
    line-height: 1.2;
    min-height: 26px;
}

.slbc-v-chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Manufacturing Pill Containers (Page 4 Layout) */
.slbc-mfg-capsules {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.slbc-mfg-capsule {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slbc-mfg-capsule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.slbc-mfg-capsule-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #0a5994;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(10, 89, 148, 0.25);
    margin-bottom: 8px;
}

.slbc-mfg-capsule-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.slbc-mfg-capsule-body {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.slbc-mfg-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 10px;
    text-align: center;
}

.slbc-mfg-block.total {
    background-color: #ffecc8;
    color: #8c4302;
    border-bottom: 1px solid rgba(140, 67, 2, 0.1);
}

.slbc-mfg-block.organised {
    background-color: #e27a3f;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slbc-mfg-block.unorganised {
    background-color: #0a2540;
    color: #fff;
}

.slbc-mfg-block .lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.slbc-mfg-block .val {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.slbc-mfg-block .sublbl {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 2px;
}

/* Skyline Silhouette Decoration */
.slbc-skyline-deco {
    width: 100%;
    height: 70px;
    margin-top: 30px;
    opacity: 0.15;
    display: flex;
    align-items: flex-end;
}

.slbc-skyline-deco svg {
    width: 100%;
    height: 100%;
}

/* Industry Sector Vision Hub Design (Page 4 layout) */
.slbc-vision-hub-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

@media (min-width: 992px) {
    .slbc-vision-hub-layout {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

.slbc-vision-hub-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    width: 100%;
}

.slbc-vision-hub-center-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-shrink: 0;
}

.slbc-vision-center-graphic {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(10, 89, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #e2e8f0;
}

.slbc-vision-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slbc-vision-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10, 89, 148, 0.05);
    border-color: #cbd5e0;
}

.slbc-vision-card-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e27a3f;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.slbc-vision-card.blue-num .slbc-vision-card-num {
    background-color: #0a5994;
}

.slbc-vision-card-text {
    flex-grow: 1;
}

.slbc-vision-card-text p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

/* Growth of Services Subsectors Double Vertical Bar Layout */
.slbc-v-services-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-top: 20px;
}

.slbc-v-services-item {
    flex: 1;
    min-width: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 12px 6px;
    background-color: #fafbfe;
}

.slbc-v-services-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 130px;
    gap: 4px;
    width: 100%;
    margin-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 4px;
    position: relative;
}

.slbc-v-services-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18px;
}

.slbc-v-services-bar-val {
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 2px;
}

.slbc-v-services-bar-fill {
    width: 100%;
    border-radius: 2px 2px 0 0;
    transition: height 0.8s ease-out;
}

.slbc-v-services-bar-fill.cagr { background-color: #f6b036; }
.slbc-v-services-bar-fill.current { background-color: #e74c3c; }

.slbc-v-services-label {
    font-size: 10px;
    font-weight: 700;
    color: #4a5568;
    text-align: center;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.slbc-v-services-share-badge {
    background-color: #e27a3f;
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 10px;
    margin-top: 8px;
    white-space: nowrap;
    text-align: center;
}

.slbc-v-services-share-lbl {
    font-size: 8px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
}

.slbc-v-services-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* Purple Banner Headers to match PDF */
.slbc-purple-banner {
    background: #764b8e !important;
    color: #fff !important;
    padding: 15px 24px !important;
    font-weight: 700 !important;
    border-radius: 12px 12px 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: -30px -30px 25px -30px; /* fills out the card header fully */
    border-bottom: 2px solid #5f3b73 !important;
}

.slbc-purple-banner h2 {
    color: #fff !important;
    margin: 0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.slbc-purple-banner span {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11.5px !important;
    text-transform: none !important;
    display: block;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 0;
}

/* Vision number badge specific colors matching PDF */
.slbc-vision-card-num.maroon {
    background-color: #8c2520 !important;
}

.slbc-vision-card-num.orange {
    background-color: #e27a3f !important;
}

.slbc-vision-card-num.brown {
    background-color: #8c4302 !important;
}

/* Bold text inside Vision cards */
.slbc-vision-card-text strong {
    color: #8c2520;
    font-weight: 700;
}
.slbc-vision-card.blue-num .slbc-vision-card-text strong {
    color: #8c4302;
}

/* Custom Double-Toned SVG Skyline */
.slbc-skyline-deco svg path.bg-tan {
    fill: #a89a78 !important;
    opacity: 0.5;
}

.slbc-skyline-deco svg path.fg-orange {
    fill: #b85d06 !important;
    opacity: 0.9;
}

/* Gold Banner Headers to match PDF */
.slbc-gold-banner {
    background: #b3985a !important;
    color: #fff !important;
    padding: 15px 24px !important;
    font-weight: 700 !important;
    border-radius: 12px 12px 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: -30px -30px 25px -30px; /* fills out the card header fully */
    border-bottom: 2px solid #9c824c !important;
}

.slbc-gold-banner h2 {
    color: #fff !important;
    margin: 0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.slbc-gold-banner span {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11.5px !important;
    text-transform: none !important;
    display: block;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 0;
}


