/* ==========================================
   ARTICLE PAGE
   SolarPedia.in
========================================== */

/* Breadcrumb */

.breadcrumb{
    background:#f5f7fa;
    padding:15px 0;
    font-size:15px;
}

.breadcrumb a{
    color:#0B5ED7;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb a:hover{
    text-decoration:underline;
}

/* ==========================================
   Article Hero
========================================== */

.article-hero{
    padding:50px 0;
    background:#ffffff;
}

.article-hero .category{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.article-hero h1{
    font-size:42px;
    line-height:1.3;
    color:#222;
    margin-bottom:20px;
}

.article-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:30px;
    color:#666;
    font-size:15px;
}

.article-hero img{
    width:100%;
    border-radius:15px;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ==========================================
   Main Layout
========================================== */

.article-content{
    padding:60px 0;
}

.article-layout{
    display:grid;
    grid-template-columns:250px 1fr 280px;
    gap:35px;
    align-items:start;
}

/* ==========================================
   Table of Contents
========================================== */

.toc{
    position:sticky;
    top:100px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.toc h3{
    margin-bottom:20px;
    color:#222;
}

.toc ul{
    list-style:none;
    padding:0;
}

.toc li{
    margin-bottom:12px;
}

.toc a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.toc a:hover{
    color:#0B5ED7;
}

/* ==========================================
   Article Content
========================================== */

.article{
    background:#fff;
}

.article h2{
    font-size:32px;
    margin:45px 0 20px;
    color:#222;
}

.article h3{
    font-size:24px;
    margin:30px 0 15px;
}

.article p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
}

.article ul,
.article ol{
    padding-left:25px;
    margin-bottom:25px;
}

.article li{
    margin-bottom:12px;
    line-height:1.8;
    font-size:17px;
}
/* ==========================================
   Tables
========================================== */

.article-table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.article-table th{
    background:#0B5ED7;
    color:#fff;
    padding:16px;
    text-align:left;
}

.article-table td{
    padding:15px;
    border-bottom:1px solid #e5e5e5;
}

.article-table tr:last-child td{
    border-bottom:none;
}

/* ==========================================
   Images
========================================== */

.article-image{
    margin:40px 0;
}

.article-image img{
    width:100%;
    border-radius:15px;
    display:block;
}

.article-image figcaption{
    text-align:center;
    color:#777;
    font-size:14px;
    margin-top:10px;
}

/* ==========================================
   Info Box
========================================== */

.info-box{
    background:#E8F4FF;
    border-left:5px solid #0B5ED7;
    padding:20px;
    margin:30px 0;
    border-radius:10px;
}

/* ==========================================
   Warning Box
========================================== */

.warning-box{
    background:#FFF4E5;
    border-left:5px solid #ff9800;
    padding:20px;
    margin:30px 0;
    border-radius:10px;
}

/* ==========================================
   FAQ
========================================== */

.faq-section{
    margin-top:60px;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-item h3{
    margin-bottom:12px;
    color:#222;
}

.faq-item p{
    margin:0;
}

/* ==========================================
   Tags
========================================== */

.article-tags{
    margin-top:40px;
}

.article-tags a{
    display:inline-block;
    margin:8px 8px 0 0;
    padding:8px 16px;
    background:#f2f2f2;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.article-tags a:hover{
    background:#0B5ED7;
    color:#fff;
}

/* ==========================================
   Share Buttons
========================================== */

.share-article{
    margin-top:50px;
}

.share-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.share-buttons a{
    text-decoration:none;
    background:#0B5ED7;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    transition:.3s;
}

.share-buttons a:hover{
    background:#084298;
}
/* ==========================================
   Sidebar
========================================== */

.article-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.sidebar-box{
    background:#ffffff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.sidebar-box h3{
    margin-bottom:18px;
    color:#222;
    font-size:22px;
}

.sidebar-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-box li{
    margin-bottom:12px;
}

.sidebar-box li:last-child{
    margin-bottom:0;
}

.sidebar-box a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.sidebar-box a:hover{
    color:#0B5ED7;
    padding-left:6px;
}

.sidebar-box p{
    color:#555;
    line-height:1.8;
}

/* ==========================================
   Smooth Hover Effects
========================================== */

.article-image img,
.article-table,
.faq-item,
.sidebar-box{
    transition:.3s ease;
}

.article-image img:hover{
    transform:scale(1.02);
}

.article-table:hover,
.faq-item:hover,
.sidebar-box:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* ==========================================
   Selection Color
========================================== */

::selection{
    background:#0B5ED7;
    color:#fff;
}

/* ==========================================
   Responsive
========================================== */

@media(max-width:1100px){

.article-layout{

grid-template-columns:1fr;

}

.toc{

position:relative;

top:0;

order:1;

}

.article{

order:2;

}

.article-sidebar{

order:3;

}

}

@media(max-width:768px){

.article-hero{

padding:35px 0;

}

.article-hero h1{

font-size:30px;

}

.article-meta{

font-size:14px;

gap:15px;

}

.article h2{

font-size:26px;

}

.article p,
.article li{

font-size:16px;

}

.article-table{

display:block;

overflow-x:auto;

}

.share-buttons{

flex-direction:column;

}

.share-buttons a{

text-align:center;

}

.sidebar-box{

padding:20px;

}

}

@media(max-width:480px){

.article-hero h1{

font-size:24px;

}

.article h2{

font-size:22px;

}

.toc{

padding:18px;

}

.article-tags a{

font-size:14px;

padding:6px 12px;

}

}

/* ==========================================
   End of Article CSS
========================================== */
/* ==========================================
   SolarPedia Article Enhancement
========================================== */

.page-content {
    margin: 40px 0;
}

.content-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #edf0f2;
}

.content-card h2 {
    font-size: 32px;
    line-height: 1.35;
    margin: 0 0 20px;
    color: #172033;
}

.content-card h3 {
    font-size: 23px;
    line-height: 1.45;
    margin: 28px 0 14px;
    color: #172033;
}

.content-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #444444;
    margin: 0 0 20px;
}

.content-card ul,
.content-card ol {
    padding-left: 25px;
    margin: 0 0 25px;
}

.content-card li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #222222;
}

.content-card strong {
    color: #111827;
}

/* ==========================================
   Article Hero
========================================== */

.article-hero {
    position: relative;
    padding: 70px 0 65px;
    background:
        linear-gradient(
            135deg,
            #087f3f 0%,
            #119447 45%,
            #16a34a 100%
        );
    overflow: hidden;
}

.article-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    top: -180px;
    right: -100px;
}

.article-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    bottom: -150px;
    left: -100px;
}

.article-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.article-category,
.article-hero .category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.15);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.18);
}

.article-hero h1 {
    max-width: 1050px;
    margin: 0 auto 20px;
    color: #ffffff !important;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 700;
}

.article-subtitle {
    max-width: 900px;
    margin: 0 auto 25px !important;
    color: rgba(255,255,255,.92) !important;
    font-size: 19px;
    line-height: 1.8;
}

.article-meta {
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
}

/* ==========================================
   Breadcrumb
========================================== */

.breadcrumb {
    background: #f5f7fa;
    border-bottom: 1px solid #e8edf1;
}

.breadcrumb .container {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* ==========================================
   Article Page Background
========================================== */

.page-content {
    background: transparent;
}

body {
    background: #f7f9fb;
}

/* ==========================================
   Table of Contents
========================================== */

.toc {
    border-left: 4px solid #198754;
}

.toc h2 {
    font-size: 25px;
    margin-bottom: 18px;
}

.toc ul {
    margin: 0;
    padding-left: 20px;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: #198754 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: .2s ease;
}

.toc a:hover {
    color: #146c43 !important;
    padding-left: 4px;
}

/* ==========================================
   Price Tables
========================================== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
}

.comparison-table {
    width: 100%;
    min-width: 650px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(0,0,0,.07);
}

.comparison-table th {
    background: #198754 !important;
    color: #ffffff !important;
    padding: 16px 14px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border: none;
}

.comparison-table td {
    padding: 15px 14px;
    color: #222222 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
    border-right: none;
}

.comparison-table tr:nth-child(even) td {
    background: #f6faf8 !important;
}

.comparison-table tr:hover td {
    background: #e8f5e9 !important;
}

.comparison-table strong {
    color: #146c43 !important;
}

/* ==========================================
   Table Note
========================================== */

.table-note {
    background: #f1f8f4;
    border-left: 4px solid #198754;
    padding: 15px 18px;
    border-radius: 8px;
    font-size: 15px !important;
}

/* ==========================================
   Information / Highlight Boxes
========================================== */

.info-box {
    background: #eef9f2;
    border-left: 5px solid #198754;
    padding: 20px 22px;
    margin: 28px 0;
    border-radius: 10px;
}

.warning-box {
    background: #fff7e8;
    border-left: 5px solid #f59e0b;
    padding: 20px 22px;
    margin: 28px 0;
    border-radius: 10px;
}

/* ==========================================
   Lists – Better Visual Style
========================================== */

.content-card ul li::marker {
    color: #198754;
    font-weight: 700;
}

/* ==========================================
   FAQ
========================================== */

#faq .content-card h3 {
    background: #f5f9f7;
    border-left: 4px solid #198754;
    padding: 14px 17px;
    border-radius: 8px;
    margin-top: 25px;
}

#faq hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 25px 0;
}

/* ==========================================
   Hidden Cost Section
========================================== */

#hidden-costs .content-card h2:not(:first-child) {
    font-size: 24px;
    padding-top: 8px;
}

#hidden-costs .content-card h2:not(:first-child)::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #198754;
    font-size: 15px;
}

/* ==========================================
   Avoid Overpaying
========================================== */

#avoid-overpaying .content-card h3 {
    color: #146c43;
}

#avoid-overpaying .content-card h3::first-letter {
    color: #198754;
}

/* ==========================================
   Quick Checklist
========================================== */

#quick-checklist .content-card {
    background: linear-gradient(
        135deg,
        #f0faf4,
        #ffffff
    );
    border: 1px solid #cfe8d8;
}

#quick-checklist li {
    list-style: none;
    margin-bottom: 13px;
}

#quick-checklist ul {
    padding-left: 5px;
}

/* ==========================================
   Conclusion
========================================== */

#conclusion .content-card {
    border-top: 5px solid #198754;
}

/* ==========================================
   Related Articles
========================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(260px, 1fr)
    );
    gap: 25px;
    margin-top: 25px;
}

.related-card {
    display: block;
    text-decoration: none;
    color: #222;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    transition: .3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-card h3 {
    padding: 18px 18px 8px;
    margin: 0;
    font-size: 20px;
}

.related-card p {
    padding: 0 18px 20px;
    margin: 0;
    color: #198754;
    font-weight: 600;
}

/* ==========================================
   Previous / Next Navigation
========================================== */

.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.nav-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    color: #222;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s ease;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.nav-card span {
    display: block;
    color: #198754;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.nav-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
}

.next {
    text-align: right;
}

/* ==========================================
   Share Buttons
========================================== */

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.share-buttons a,
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #198754;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: .25s ease;
}

.share-buttons a:hover,
.share-btn:hover {
    background: #146c43;
    transform: translateY(-2px);
}

/* ==========================================
   Article Images
========================================== */

.article-image {
    width: 100%;
    display: block;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 768px) {

    .article-hero {
        padding: 45px 0 42px;
    }

    .article-hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .article-subtitle {
        font-size: 16px;
        line-height: 1.75;
    }

    .article-meta {
        gap: 8px;
    }

    .article-meta span {
        font-size: 13px;
        padding: 8px 12px;
    }

    .page-content {
        margin: 25px 0;
    }

    .content-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .content-card h2 {
        font-size: 26px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .content-card p,
    .content-card li {
        font-size: 16px;
        line-height: 1.8;
    }

    .comparison-table {
        min-width: 620px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .next {
        text-align: left;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons a,
    .share-btn {
        width: 100%;
    }

}

/* ==========================================
   Small Mobile
========================================== */

@media (max-width: 480px) {

    .article-hero h1 {
        font-size: 25px;
    }

    .article-category {
        font-size: 13px;
        padding: 8px 14px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .content-card h2 {
        font-size: 23px;
    }

    .content-card h3 {
        font-size: 19px;
    }

    .toc {
        padding: 20px;
    }

}
/* ==========================================
   Previous / Next Navigation
========================================== */

.article-navigation{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:40px 0;
}

.nav-card{
    display:block;
    text-decoration:none;
    background:#fff;
    padding:25px;
    border-radius:15px;
    color:#222;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.nav-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.nav-card span{
    display:block;
    color:#198754;
    font-size:14px;
    margin-bottom:10px;
    font-weight:600;
}

.nav-card h3{
    margin:0;
    font-size:22px;
    line-height:1.4;
}

.next{
    text-align:right;
}

@media(max-width:768px){

.article-navigation{

grid-template-columns:1fr;

}

.next{

text-align:left;

}

}
/* ==========================================
   Share Buttons
========================================== */

.share-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.share-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    padding:14px 20px;
    border-radius:10px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
    border:none;
    cursor:pointer;
    font-size:16px;
}

.facebook{
    background:#1877F2;
}

.whatsapp{
    background:#25D366;
}

.twitter{
    background:#000;
}

.copy{
    background:#198754;
}

.share-btn:hover{
    transform:translateY(-3px);
    opacity:.9;
}

/* ===========================
   ARTICLE HERO
=========================== */

.article-hero{
    background: linear-gradient(135deg,#16a34a,#15803d);
    color:#fff;
    padding:70px 20px;
    text-align:center;
}

.article-category{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.article-hero h1{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.3;
}

.article-subtitle{
    max-width:850px;
    margin:0 auto 30px;
    font-size:18px;
    opacity:.95;
}

.article-meta{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    font-size:15px;
}

.article-meta span{
    background:rgba(255,255,255,.12);
    padding:8px 16px;
    border-radius:30px;
}

@media(max-width:768px){

.article-hero{
    padding:50px 20px;
}

.article-hero h1{
    font-size:30px;
}

.article-subtitle{
    font-size:16px;
}

.article-meta{
    gap:12px;
}

}
/* ==========================================
   SolarPedia Article CSS
   Version 1.0
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
font-size:16px;
line-height:1.8;
background:#f7f8fa;
color:#222;
}

/* ===============================
Container
================================ */

.article-container{
max-width:1100px;
margin:40px auto;
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ===============================
Breadcrumb
================================ */

.breadcrumb{
font-size:14px;
margin-bottom:20px;
color:#777;
}

.breadcrumb a{
color:#0b6efd;
text-decoration:none;
}

.breadcrumb a:hover{
text-decoration:underline;
}

/* ===============================
Article Header
================================ */

.article-header{
margin-bottom:35px;
}

.article-header h1{
font-size:42px;
line-height:1.3;
font-weight:700;
margin-bottom:15px;
color:#111;
}

.article-meta{
font-size:14px;
color:#777;
margin-bottom:25px;
}

/* ===============================
Featured Image
================================ */

.featured-image{
    width:100%;
    display:block;
    border-radius:15px;
    margin:25px 0 40px;
    object-fit:cover;
}


/* ===============================
Headings
================================ */

h2{
font-size:30px;
margin-top:45px;
margin-bottom:20px;
padding-left:15px;
border-left:6px solid #16a34a;
color:#111827;
}

h3{
font-size:22px;
margin-top:25px;
margin-bottom:15px;
color:#1f2937;
}

h4{
font-size:18px;
margin-top:20px;
margin-bottom:12px;
}

/* ===============================
Paragraph
================================ */

p{
margin-bottom:18px;
font-size:17px;
}

/* ===============================
Lists
================================ */

ul,
ol{
padding-left:25px;
margin-bottom:25px;
}

li{
margin-bottom:12px;
}

/* ===============================
Links
================================ */

a{
color:#0b6efd;
transition:.3s;
}

a:hover{
color:#084298;
}

/* ===============================
Strong
================================ */

strong{
font-weight:700;
color:#111;
}

/* ===============================
Blockquote
================================ */

blockquote{
background:#eef8ff;
border-left:5px solid #0b6efd;
padding:20px;
margin:25px 0;
border-radius:8px;
font-style:italic;
}

/* ===============================
Horizontal Line
================================ */

hr{
margin:40px 0;
border:none;
height:1px;
background:#ddd;
}

/* ===============================
Selection
================================ */

::selection{
background:#16a34a;
color:#fff;
}
/* Reading Progress */

#reading-progress{

position:fixed;

top:0;

left:0;

width:0;

height:4px;

background:#16a34a;

z-index:99999;

transition:.2s;

}

/* Back To Top */

#backToTop{

position:fixed;

right:20px;

bottom:20px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#16a34a;

color:#fff;

font-size:20px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.3s;

box-shadow:0 5px 20px rgba(0,0,0,.2);

}

#backToTop.show{

opacity:1;

visibility:visible;

}

#backToTop:hover{

transform:translateY(-4px);

}
.table-responsive{
    overflow-x:auto;
    margin:30px 0;
}

.article-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.article-table th{
    background:#198754;
    color:#fff;
    padding:15px;
    text-align:left;
    font-size:17px;
}

.article-table td{
    padding:14px 15px;
    border-bottom:1px solid #e5e5e5;
    font-size:16px;
}

.article-table tbody tr:nth-child(even){
    background:#f8f9fa;
}

.article-table tbody tr:hover{
    background:#e8f5e9;
}

@media(max-width:768px){

.article-table th,
.article-table td{
    padding:12px;
    font-size:15px;
}

}

#readingProgress{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

background:#16a34a;

z-index:99999;

transition:.15s;

}
/* =====================================================
   SOLARPEDIA NAVIGATION + SVG ICONS
===================================================== */

#navbar > ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar > ul > li {
    position: relative;
}

/* Navigation links */

#navbar > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    text-decoration: none;
    white-space: nowrap;
}

/* SVG icons */

#navbar a img {
    width: 20px;
    height: 20px;

    object-fit: contain;
    display: block;
    flex-shrink: 0;

    transition: transform .2s ease, opacity .2s ease;
}

/* Hover */

#navbar a:hover img {
    transform: translateY(-1px);
    opacity: .85;
}


/* =====================================================
   DROPDOWN
===================================================== */

#navbar .dropdown {
    position: relative;
}

#navbar .dropdown > a {
    cursor: pointer;
}

#navbar .dropdown-arrow {
    width: 13px !important;
    height: 13px !important;

    margin-left: 2px;
}


/* Dropdown box */

#navbar .dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 270px;

    display: none;

    padding: 10px 0;
    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 12px 35px rgba(0,0,0,.15);

    z-index: 9999;
}


/* Show dropdown */

#navbar .dropdown:hover > .dropdown-menu,
#navbar .dropdown.active > .dropdown-menu {
    display: block;
}


/* Dropdown links */

#navbar .dropdown-menu li {
    width: 100%;
}

#navbar .dropdown-menu li a {
    display: flex;
    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 11px 16px;

    text-decoration: none;

    white-space: nowrap;
}


/* Dropdown SVG */

#navbar .dropdown-menu li a img {
    width: 19px;
    height: 19px;

    flex-shrink: 0;
}


/* Dropdown hover */

#navbar .dropdown-menu li a:hover {
    background: rgba(25,135,84,.08);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    #navbar > ul {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    #navbar > ul > li {
        width: 100%;
    }

    #navbar > ul > li > a {
        display: flex;

        width: 100%;

        padding: 13px 15px;
    }

    #navbar a img {
        width: 20px;
        height: 20px;
    }


    /* Mobile dropdown */

    #navbar .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        padding: 0 0 5px 15px;

        background: transparent;

        box-shadow: none;

        border-radius: 0;
    }

    #navbar .dropdown.active > .dropdown-menu {
        display: block;
    }

    #navbar .dropdown-menu li a {
        padding: 11px 15px;
    }

}
/* =========================================================
   SOLARPEDIA ARTICLE CONTENT FIX
   Put this at the VERY BOTTOM of the article CSS
   ========================================================= */

/* Article main area */
.article-content,
.article-body,
.post-content,
.blog-content {
    color: #172033 !important;
    background: #ffffff;
}

/* All normal paragraphs */
.article-content p,
.article-body p,
.post-content p,
.blog-content p {
    color: #172033 !important;
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 22px;
}

/* Headings */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #172033 !important;
}

/* Lists */
.article-content ul,
.article-content ol,
.article-body ul,
.article-body ol,
.post-content ul,
.post-content ol,
.blog-content ul,
.blog-content ol {
    color: #172033 !important;
    margin: 15px 0 25px;
    padding-left: 35px;
}

/* List items */
.article-content li,
.article-body li,
.post-content li,
.blog-content li {
    color: #172033 !important;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 10px;
}

/* Make sure nested list text is also visible */
.article-content li *,
.article-body li *,
.post-content li *,
.blog-content li * {
    color: inherit !important;
}

/* =========================================================
   TABLE FIX
   ========================================================= */

.article-content table,
.article-body table,
.post-content table,
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
}

/* Table header */
.article-content table th,
.article-body table th,
.post-content table th,
.blog-content table th {
    background: #198754 !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 14px;
    border: 1px solid #198754;
    text-align: center;
}

/* Table cells */
.article-content table td,
.article-body table td,
.post-content table td,
.blog-content table td {
    color: #172033 !important;
    background: #ffffff !important;
    padding: 15px 14px;
    border: 1px solid #d9dee5;
    text-align: center;
    vertical-align: middle;
}

/* Table alternating rows */
.article-content table tr:nth-child(even) td,
.article-body table tr:nth-child(even) td,
.post-content table tr:nth-child(even) td,
.blog-content table tr:nth-child(even) td {
    background: #f7f9fb !important;
}

/* Table strong/bold text */
.article-content table strong,
.article-body table strong,
.post-content table strong,
.blog-content table strong {
    color: #172033 !important;
}

/* =========================================================
   ARTICLE LINKS
   ========================================================= */

.article-content a,
.article-body a,
.post-content a,
.blog-content a {
    color: #198754 !important;
    text-decoration: underline;
}

/* =========================================================
   ARTICLE BLOCKQUOTES / INFO BOXES
   ========================================================= */

.article-content blockquote,
.article-body blockquote,
.post-content blockquote,
.blog-content blockquote {
    color: #172033 !important;
    background: #f4f8f6;
    border-left: 5px solid #198754;
    padding: 18px 22px;
    margin: 25px 0;
}

/* =========================================================
   ARTICLE STRONG / BOLD
   ========================================================= */

.article-content strong,
.article-body strong,
.post-content strong,
.blog-content strong {
    color: #172033 !important;
}

/* =========================================================
   ARTICLE IMAGES
   ========================================================= */

.article-content img,
.article-body img,
.post-content img,
.blog-content img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   ARTICLE MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .article-content p,
    .article-body p,
    .post-content p,
    .blog-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .article-content li,
    .article-body li,
    .post-content li,
    .blog-content li {
        font-size: 16px;
        line-height: 1.8;
    }

    .article-content table,
    .article-body table,
    .post-content table,
    .blog-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .article-content table th,
    .article-content table td,
    .article-body table th,
    .article-body table td {
        padding: 12px 10px;
    }
}
/* =====================================================
   FINAL ARTICLE TEXT VISIBILITY FIX
   SolarPedia.in
===================================================== */

/* Main article text */
.content-card {
    color: #222222;
}

/* Paragraphs */
.content-card p {
    color: #444444;
}

/* Lists - FIX INVISIBLE TEXT */
.content-card ul li,
.content-card ol li {
    color: #222222 !important;
}

/* List text inside all article sections */
.page-content ul li,
.page-content ol li {
    color: #222222 !important;
}

/* Headings */
.content-card h2,
.content-card h3,
.content-card h4 {
    color: #222222;
}

/* Comparison table */
.comparison-table {
    color: #222222;
}

.comparison-table th {
    background: #198754;
    color: #ffffff !important;
}

.comparison-table td {
    color: #222222 !important;
    background: #ffffff;
    padding: 14px;
    border: 1px solid #dddddd;
}

/* Alternating table rows */
.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

/* Table hover */
.comparison-table tr:hover td {
    background: #e8f5e9;
}

/* Recommendation table */
.content-card table td,
.content-card table th {
    color: #222222;
}

.content-card table th {
    color: #ffffff !important;
}

/* Tip boxes */
.tip-box {
    color: #222222;
}

.tip-box p,
.tip-box li {
    color: #333333 !important;
}

/* Strong text */
.content-card strong {
    color: #111111;
}

/* Links */
.content-card a {
    color: #198754;
}

.content-card a:hover {
    color: #146c43;
}

/* Mobile */
@media (max-width: 768px) {

    .content-card {
        color: #222222;
    }

    .content-card p,
    .content-card li {
        color: #333333 !important;
    }

    .comparison-table td {
        color: #222222 !important;
    }
}
/* ==========================================
   SolarPedia Price Table
========================================== */

.comparison-table {
    width: 100%;
    min-width: 650px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(0,0,0,.08);
}

.comparison-table th {
    background: #198754;
    color: #ffffff;
    padding: 16px 14px;
    text-align: center;
    font-weight: 700;
    border: none;
}

.comparison-table td {
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    background: #ffffff;
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tbody tr:nth-child(even) td {
    background: #f6faf8;
}

.comparison-table tbody tr:hover td {
    background: #e8f5e9;
}

.comparison-table tbody tr td:first-child {
    font-weight: 700;
    color: #087f3f;
    font-size: 18px;
}

.comparison-table tbody tr {
    transition: .2s ease;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Mobile table */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {

    .comparison-table {
        min-width: 620px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .comparison-table tbody tr td:first-child {
        font-size: 16px;
    }

}
/* ==========================================
   PM Surya Ghar Subsidy Section
========================================== */

#subsidy .content-card {
    border-top: 5px solid #198754;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f3faf6 100%
    );
}

#subsidy .content-card h2 {
    color: #087f3f;
}

#subsidy .comparison-table {
    box-shadow: 0 8px 25px rgba(25,135,84,.12);
}

#subsidy .comparison-table tbody tr td:last-child {
    font-weight: 600;
    color: #087f3f;
}

#subsidy .comparison-table tbody tr:nth-child(3) td {
    background: #e8f5e9 !important;
}

#subsidy .comparison-table tbody tr:hover td {
    background: #dff3e7 !important;
}

#subsidy .content-card > p:last-child {
    margin-top: 25px;
    padding: 18px 20px;
    background: #fff8e8;
    border-left: 5px solid #f59e0b;
    border-radius: 10px;
}

@media (max-width: 768px) {

    #subsidy .content-card {
        padding: 22px 18px;
    }

    #subsidy .comparison-table {
        min-width: 550px;
    }

}
