@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Devanagari', 'Roboto', Arial, sans-serif;
    text-decoration: none;
    user-select: none;
}

 /* Header Container */
        header {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        /* Inner Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }

        /* Top Header: Site Name + Social Links */
        .top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .site-name {
            font-size: 28px;
            font-weight: bold;
            color: #222;
            text-decoration: none;
        }

        .social-links a {
            text-decoration: none;
            color: #555;
            margin-left: 15px;
            font-size: 18px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #f00;
        }

        /* Category Menu */
        .category-menu {
            display: flex;
            justify-content: center;
            background-color: #f7f7f7;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

        .category-menu a {
            text-decoration: none;
            color: #333;
            padding: 10px 15px;
            font-size: 16px;
            transition: background 0.3s, color 0.3s;
        }

        .category-menu a:hover {
            background-color: #e0e0e0;
            color: #000;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
            
            padding: 10px 10px;
        }
            .top-header {
        justify-content: space-between;
    }

            .social-links, 
    .category-menu {
        display: none; /* Hide social links and categories */
    }

            
        }
/* Sidebar Button */
.sidebar-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 15px;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -260px; /* Hidden by default */
    width: 260px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
    z-index: 9999;
}

/* Show Sidebar */
.sidebar.show {
    left: 0;
}
/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-site-name {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}
/* Close Button */
.close-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 10px;
}

/* Categories */
.sidebar-categories h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #222;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.sidebar-categories a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 5px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.sidebar-categories a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Social Links */
.sidebar-social h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.sidebar-social a {
    display: block;
    text-decoration: none;
    color: #555;
    padding: 8px 5px;
    transition: color 0.3s;
}

.sidebar-social a:hover {
    color: #f00;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 220px;
    }
}
/* Container */
.hero-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0px;
    font-family: "Noto Sans", sans-serif;
}

/* Hero Top */
.hero-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Left News */
.left-news {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.left-news .flex-card {
    display: flex;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.left-news .flex-card img { width: 40%; object-fit: cover; }
.left-news .flex-card .news-info { padding: 12px; display: flex; flex-direction: column; justify-content: center; }
.left-news .flex-card .category { color: #d32f2f; font-weight: bold; font-size: 14px; margin-bottom: 5px; }
.left-news .flex-card .title { font-size: 16px; font-weight: bold; color: #222; margin-bottom: 5px; }
.left-news .flex-card .date { font-size: 13px; color: #555; }

/* Right Featured News */
.right-news {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.right-news .news-card.featured {
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.right-news .news-card.featured .featured-img {
    position: relative;
    height: 60%;
}
.right-news .news-card.featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-news .category-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d32f2f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}
.right-news .news-card.featured .news-info {
    height: 40%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.right-news .news-card.featured .title {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}
.right-news .news-card.featured .date { font-size: 13px; color: #555; }

/* Responsive */
@media (max-width: 992px) {
    .hero-top { flex-direction: column; }
    .right-news { order: -1; }
}
@media (max-width: 768px) {
    .left-news .flex-card { 
        flex-direction: row;
        gap: 0px;
    }
    .left-news .flex-card img {
        width: 30%;
        height: auto; 
    }
    .right-news .news-card.featured { height: 360px; }
    .right-news .news-card.featured .featured-img { height: 60%; }
}
.hero-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-bottom .news-card.small {
    flex: 1;
    min-width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}


.hero-bottom .news-card.small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero-bottom .news-card.small .news-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
}

.hero-bottom .news-card.small .category {
    color: #d32f2f;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.hero-bottom .news-card.small .title {
    font-weight: bold;
    color: #222;
    font-size: 16px;
    margin-bottom: 5px;
}

.hero-bottom .news-card.small .date {
    font-size: 13px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-bottom {
        flex-direction: column;
    }
    .hero-bottom .news-card.small {
        min-width: 100%;
    }
}
.recent-news-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: "Noto Sans", sans-serif;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    padding-bottom: 5px;
}

.recent-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}

.recent-news-list li:hover {
    background: #f9f9f9;
}

.recent-news-list li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    display: block;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }
    .recent-news-list li a {
        font-size: 14px;
    }
}
.category-news-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: "Noto Sans", sans-serif;
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.category-news {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Featured News */
.news-card.featured {
    flex: 1.2;
    min-width: 250px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.news-card.featured:hover { transform: translateY(-5px); }
.news-card.featured img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-card.featured .news-info {
    padding: 10px 15px;
}
.news-card.featured .title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}
.news-card.featured .date {
    font-size: 13px;
    color: #555;
}

/* Other News with Image */
.other-news {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.other-news .news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.other-news .news-item img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.other-news .news-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.other-news .news-item a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 4px;
}

.other-news .news-item a:hover { color: #d32f2f; }

.other-news .news-date {
    font-size: 12px;
    color: #555;
}

/* View More Link */
.view-more {
    margin-top: 10px;
    text-align: right;
}
.view-more a {
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}
.view-more a:hover { color: #b71c1c; }

/* Responsive */
@media (max-width: 992px) {
    .category-news { flex-direction: column; }
    .news-card.featured { width: 100%; }
}

.site-footer {
    background: #222;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    padding: 40px 0 20px;
}
.site-footer a { color: #fff; text-decoration: none; transition: color 0.3s; }
.site-footer a:hover { color: #d32f2f; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Footer Top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-about {
    flex: 2;
}
.footer-about h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.footer-about p { font-size: 14px; line-height: 1.6; }

.footer-links {
    flex: 1;
}
.footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    padding-bottom: 5px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 14px; }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; }
.footer-social a { margin-left: 15px; font-size: 14px; }

/* Responsive */
@media (max-width: 992px) {
    .footer-top { flex-direction: column; }
    .footer-links, .footer-about { flex: 1; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-social a { margin-left: 10px; }
}
.other-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.other-news .news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}
.other-news .news-item:hover {
    background: #f9f9f9;
}
.other-news .news-item img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}
.other-news .news-item a {
    font-weight: bold;
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}
.other-news .news-item a:hover { color: #d32f2f; }

/* No image style */
.other-news .news-item.no-image {
    justify-content: flex-start;
    padding-left: 0;
}
.other-news .news-item.no-image a {
    font-size: 15px;
}
/* Container */
.news-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}


/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #d32f2f;
    text-decoration: none;
    margin-right: 5px;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #222; }

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Main Content */
.news-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-article .category {
    color: #d32f2f;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}
.news-article .title {
    font-size: 26px;
    margin: 10px 0;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}
.news-article .date {
    font-size: 13px;
    color: #555;
}
.news-article img {
    width: 100%;
    margin: 15px 0;
    border-radius: 6px;
    object-fit: cover;
}
.news-article p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Professional Share Links */
.share-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.share-links span {
    font-weight: bold;
    color: #222;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border: 1px solid #d32f2f;
    border-radius: 4px;
    color: #d32f2f;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.share-links a:hover {
    background-color: #d32f2f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}


/* Comments Section */
.comments-section {
    margin-top: 30px;
}

.comments-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #d32f2f; /* red background */
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-transform: uppercase;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-header .user-name {
    font-weight: bold;
    color: #222;
}

.comment-header .comment-date {
    font-size: 12px;
    color: #555;
}

.comment-content p {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

/* News Details Sidebar */
.news-details-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-details-sidebar .sidebar-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
    display: inline-block;
    padding-bottom: 5px;
}

.news-details-sidebar .sidebar-news-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.news-details-sidebar .sidebar-news-item img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.news-details-sidebar .sidebar-news-item a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #222;
}

.news-details-sidebar .sidebar-news-item a:hover {
    color: #d32f2f;
}


/* Responsive */
@media (max-width: 992px) {
    .content-wrapper { flex-direction: column; }
    .news-details-sidebar { flex: unset; }
}
.sidebar-news-item .news-info {
    display: flex;
    flex-direction: column;
}

.sidebar-news-item .news-date {
    font-size: 12px;
    color: #555;
    margin-top: 3px;
}
/* Article Content Styling */
.article-content {
    margin-top: 20px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.article-content h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    color: #222;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 5px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px 0;
    color: #222;
}

.article-content ul {
    margin: 10px 0 15px 20px;
}

.article-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.article-content table th,
.article-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.article-content table th {
    background: #f5f5f5;
    font-weight: bold;
}

.article-content table tr:nth-child(even) {
    background: #fafafa;
}

.article-content table tr:hover {
    background: #f1f1f1;
}

/* Figure Image Styling */
.sv-article-image {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.sv-article-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    margin: 0px;
    border-radius: 0px;
}

.sv-article-image figcaption {
    font-size: 14px;
    color: #555;
    padding: 10px 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
    line-height: 1.5;
}