/*=============================================
  #TABLE OF CONTENTS
  ===============================================
  1.  :root & Global Styles
  2.  Utility Classes
  3.  Header & Navigation
      - Top Bar
      - Main Navigation
      - Mobile Menu
  4.  Trending Bar & Ticker
      - Trending Bar
      - Top News Ticker
  5.  Homepage: 3-Column Layout
  6.  Homepage: Live Updates Section
  7.  Homepage: Stories Slider
  8.  Homepage: Grid Layout
  9.  Homepage: Horizontal Scroll Section
  10. Homepage: 3-Column Widget Style
  11. Global Effects (Image Hover)
===============================================*/

/*=============================================
  #1 :root & Global Styles
===============================================*/
:root {
    --nav-bg-color: #f0f0f0;
    --border-color: #e0e0e0;
    --text-color: #333;
    --local-red: #d92424;
}

body {
    margin: 0;
    font-family: 'Tiro Devanari Hindi', serif;
    background-color: #ffffff;
    font-size: 16px;
    color: var(--text-color);
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

/*=============================================
  #2 Utility Classes
===============================================*/
.view-desktop {
    display: none !important;
}

.truncate-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*=============================================
  #3 Header & Navigation
===============================================*/

/* --- Top Bar --- */
.top-bar {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
    justify-content: space-between;
}

.logo img,
.custom-logo {
    height: auto;
    max-width: 150px;
    display: block;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-follow {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 12px;
}

.whatsapp-follow i {
    color: #25D366;
    font-size: 17px;
    margin-right: 4px;
}

.local-link i {
    color: var(--local-red);
    font-size: 25px;
}

/* --- Main Navigation --- */
.main-navigation {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.main-navigation .container {
    padding: 0 10px;
    gap: 10px;
}

.home-icon {
    font-size: 20px;
    padding: 10px 5px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    flex-grow: 1;
}

.nav-links li a {
    display: block;
    padding: 10px 12px;
    font-size: 18px;
}

.nav-links::-webkit-scrollbar {
    height: 4px;
}

.nav-links::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-links::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* --- Hamburger & Mobile Menu --- */
.hamburger-menu {
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c00000;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-menu-btn i {
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

.mobile-nav ul {
    list-style: none;
    padding: 80px 30px 30px 30px;
    margin: 0;
}

.mobile-nav li a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Desktop Navigation Styles --- */
@media (min-width: 992px) {
    .view-mobile {
        display: none !important;
    }
    .view-desktop {
        display: flex !important;
    }
    .container {
        max-width: 1280px;
        padding: 0 15px;
    }
    .top-bar {
        padding: 10px 0;
        border: none;
    }
    .top-bar .container {
        justify-content: space-between;
    }
    .logo {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }
    .top-bar-left-placeholder,
    .top-actions {
        flex-basis: 250px;
        flex-shrink: 0;
    }
    .top-actions {
        justify-content: flex-end;
    }
    .main-navigation {
        background-color: var(--nav-bg-color);
    }
    .main-navigation .container {
        justify-content: space-between;
        gap: 0;
    }
    .home-icon {
        display: none !important;
    }
    .nav-links {
        overflow: visible;
        flex-grow: 0;
        padding: 0;
        align-items: center;
    }
    .nav-links::before {
        content: '\f015';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 18px;
        color: var(--text-color);
        cursor: pointer;
        margin-right: 20px;
    }
    .desktop-nav-links {
        display: contents;
    }
    .nav-links li {
        padding: 0 10px;
    }
    .nav-links li a {
        padding: 8px 0;
        font-size: 16px;
        font-weight: bold;
    }
    .nav-links li a i.fa-angle-down {
        font-size: 12px;
        margin-left: 4px;
    }
    .nav-search {
        font-size: 16px;
        cursor: pointer;
    }
}

/*=============================================
  #4 Trending Bar & Ticker
===============================================*/

/* --- Trending Bar --- */
.trending-bar {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
}

.trending-bar .container {
    gap: 5px;
}

.trending-bar .title {
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.trending-bar .title i {
    margin-right: 5px;
}

.trends-list {
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    flex-grow: 1;
}

.trends-list a {
    font-size: 14px;
    padding: 0 8px;
    border-right: 1px solid #ccc;
    font-family: sans-serif;
}

.trends-list a:last-child {
    border-right: none;
}

.trends-list::-webkit-scrollbar {
    height: 4px;
}

.trends-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.trends-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .trending-bar {
        padding: 10px 0;
    }
    .trending-bar .container {
        justify-content: space-between;
    }
    .trends-list {
        overflow: visible;
        white-space: normal;
    }
    .social-section {
        align-items: center;
        font-family: sans-serif;
        font-size: 12px;
        color: #666;
    }
    .social-section span {
        font-weight: bold;
        margin-right: 8px;
    }
    .social-section i.fa-chevron-right {
        font-size: 10px;
    }
    .social-section a {
        margin-left: 15px;
    }
}

/* --- Top News Ticker --- */
.top-news-ticker {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 2px 0;
    padding: 0 8px;
    overflow: hidden;
    height: 36px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ticker-label {
    background: #fdb900; /* पुराना Yellow-Orange वाला रंग */
    color: #fff;
    font-weight: 600;
    padding: 0 12px;
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-news {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.ticker-news ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-news ul:hover {
    animation-play-state: paused;
}

.ticker-news li {
    padding: 0 15px;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 36px;
    white-space: nowrap;
}

.ticker-news li:last-child {
    border-right: none;
}

.ticker-news li a {
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ticker-news li a:hover {
    color: #fdb900;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .top-news-ticker { height: 32px; }
    .ticker-label { font-size: 11px; padding: 0 8px; height: 20px; line-height: 20px; }
    .ticker-news li { font-size: 12px; padding: 0 10px; }
}

@media (max-width: 480px) {
    .top-news-ticker { height: 30px; }
    .ticker-label { font-size: 10px; padding: 0 6px; }
    .ticker-news li { font-size: 11px; padding: 0 6px; }
}


/*=============================================
  #5 Homepage: 3-Column Layout
===============================================*/
.home-layout-container {
    width: 100%;
    background-color: #fff;
}

.featured-post-container {
    max-width: 100%;
    margin-bottom: 8px;
}

.featured-post {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-post img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.strip {
    position: absolute;
    top: -4px;
    left: 15px;
    width: 80px;
    height: 7px;
    background-color: #ffc700;
    border-radius: 5px;
}

.caption h2 {
    margin: 0;
    padding-top: 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
}
.caption h2.truncate-text {
    -webkit-line-clamp: 2;
}

.article-list .article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-list .article-item:last-child {
    border-bottom: none;
}

.article-list .article-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    flex-grow: 1;
}
.article-item p.truncate-text {
    -webkit-line-clamp: 3;
}

.article-list .article-item img {
    width: 100px;
    height: auto;
    object-fit: cover;
    margin-left: 15px;
    border-radius: 5px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .home-layout-container {
        display: flex;
        max-width: 1250px;
        margin: 10px auto;
        align-items: stretch;
    }
    .leftCol,
    .centerCol,
    .rightCol {
        padding: 5px;
        box-sizing: border-box;
    }
    .leftCol {
        width: 35%;
        border-right: 1px solid #f0f0f0;
    }
    .centerCol {
        width: 40%;
        border-right: 1px solid #f0f0f0;
    }
    .rightCol {
        width: 28%;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .home-layout-container { display: block; }
    .leftCol,
    .centerCol,
    .rightCol {
        width: 95%;
        padding: 8px;
        border-right: none;
    }
    .rightCol { display: none; }
    .caption h2 { font-size: 14px; }
    .article-list .article-item p { font-size: 14px; }
}

/*=============================================
  #6 Homepage: Live Updates Section
===============================================*/
.live-updates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.live-header-left {
    display: flex;
    align-items: center;
}

.live-button {
    background-color: #d92429;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 2px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    animation: blinkDot 1.5s infinite;
}

.live-button::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 6px;
}

.live-updates-header .title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.refresh-icon {
    font-size: 20px;
    cursor: pointer;
    color: #b0b0b0;
    transition: transform 0.3s ease;
}

.refresh-icon:hover {
    color: #d92429;
    transform: rotate(90deg);
}

.live-updates-list-wrapper {
    margin-top: 8px;
    overflow-y: auto;
    max-height: 500px;
    padding-right: 6px;
    flex-grow: 1;
    min-height: 0;
}

.live-updates-list-wrapper::-webkit-scrollbar { width: 6px; }
.live-updates-list-wrapper::-webkit-scrollbar-track { background: #f1f1f1; }
.live-updates-list-wrapper::-webkit-scrollbar-thumb { background: #d92429; border-radius: 3px; }

.live-updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 25px;
}

.live-updates-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f0f0f0;
}

.live-updates-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 5px;
}

.live-updates-list li:last-child {
    margin-bottom: 5px;
}

.live-updates-list li::before {
    content: '';
    position: absolute;
    left: -17px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #d92429;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #f0f0f0;
}

.live-updates-list .date {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 13px;
    color: #333;
}

.live-updates-list p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@keyframes blinkDot {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .live-updates-list-wrapper {
        max-height: 300px;
    }
}


/*=============================================
  #7 Homepage: Stories Slider
===============================================*/
.stories-section {
    max-width: 1250px;
    width: 95%;
    margin: 10px auto;
    padding: 0 8px;
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.section-heading span {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
    color: #001963;
}

.section-heading::after {
    content: '';
    flex-grow: 1;
    border-bottom: 1px dotted #ddd;
    margin-left: 8px;
}

.carousel-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -ms-overflow-style: auto;
    scrollbar-width: thin;
}

.carousel-wrapper::-webkit-scrollbar { height: 6px; }
.carousel-wrapper::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 6px; }
.carousel-wrapper::-webkit-scrollbar-thumb { background: #ff0044; border-radius: 6px; }
.carousel-wrapper::-webkit-scrollbar-thumb:hover { background: #cc0036; }

.carousel {
    display: flex;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px;
}

.story-card {
    flex-shrink: 0;
    width: 230px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    scroll-snap-align: start;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.card-content {
    padding: 10px;
}

.story-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}

@media (min-width: 768px) {
    .story-card { width: 200px; }
    .story-card img { height: 170px; }
}

@media (min-width: 1024px) {
    .story-card { width: 280px; }
    .story-card img { height: 190px; }
}

/*=============================================
  #8 Homepage: Grid Layout
===============================================*/
.news-container {
    max-width: 1250px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.big-news-header { grid-column: 1 / 9; }
.more-header { grid-column: 9 / 13; }
.col-1 { grid-column: 1 / 5; }
.col-2 { grid-column: 5 / 9; }
.col-3 { grid-column: 9 / 13; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
}

.title-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-right: 12px;
    white-space: nowrap;
}

.title-line {
    height: 3px;
    background-color: #d43c38;
    width: 100%;
}

.read-more {
    color: #d43c38;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    padding-left: 20px;
}

.read-more:hover {
    opacity: 0.8;
}

.featured-story img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-story-caption {
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.3;
}

.featured-story-caption a,
.news-item-text h3 a {
    color: #333;
    transition: color 0.2s;
}

.featured-story-caption a:hover,
.news-item-text h3 a:hover {
    color: #d43c38;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid #ddd;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item .image-container {
    flex-shrink: 0;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    width: 100px;
    height: 70px;
}

.news-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-text h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 2px 0;
}

.news-item-text .date {
    color: #888;
    font-size: 13px;
    font-family: sans-serif;
}

.mobile-more-section {
    display: none;
}

@media (max-width: 992px) {
    .news-container { display: block; padding: 0 9px; }
    .more-header, .col-2, .col-3 { display: none; }
    .mobile-more-section { display: block; margin-top: 30px; }
    .section-header { margin-bottom: 15px; }
    .section-header::after { display: none; }
    .section-title {
        padding-left: 10px;
        border-left: 4px solid #d43c38;
        font-size: 18px;
    }
    .title-line { height: 2px; margin: 0 10px; }
    .news-item { border-bottom: 1px solid #ddd; }
    .news-item:last-child { border-bottom: none; padding: 8px; }
    .news-item .image-container { width: 95px; height: 70px; }
    .news-item-text h3 { font-size: 15px; }
}

/*=============================================
  #9 Homepage: Horizontal Scroll Section
===============================================*/
.horizontal-scroll-section {
    max-width: 1250px;
    margin: 10px auto;
    padding: 10px;
    background: #ff7101;
    border-radius: 8px;
    position: relative;
}

.horizontal-scroll-section h3 {
    margin: 0 0 10px 5px;
    font-size: 19px;
    color: #fff;
}

.horizontal-posts-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #fff rgba(255, 255, 255, 0.2);
}

.horizontal-posts-scroll::-webkit-scrollbar { height: 6px; }
.horizontal-posts-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.2); border-radius: 3px; }
.horizontal-posts-scroll::-webkit-scrollbar-thumb { background: #fff; border-radius: 3px; }

.horizontal-post-item {
    flex: 0 0 180px;
    width: 180px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 5px;
}

.horizontal-post-item img,
.horizontal-post-item .attachment-medium {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.horizontal-post-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    font-size: 15px;
    margin-top: 8px;
    padding: 5px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    min-height: 63px;
}

@media (max-width: 768px) {
    .horizontal-scroll-section { border-radius: 0; }
    .horizontal-scroll-section h3 { font-size: 16px; }
    .horizontal-post-item { flex-basis: 150px; width: 150px; }
    .horizontal-post-item img,
    .horizontal-post-item .attachment-medium { height: 80px; }
    .horizontal-post-title { font-size: 14px; min-height: 60px; }
}



/*=============================================
  #10 Homepage: 3-Column Widget Style
===============================================*/
.main-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1250px;
    margin: 20px auto;
    padding: 10px;
}

/* --- MODIFIED SECTION START --- */
.section-header-webinshot {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative; 
    padding-right: 85px; 
}

.section-header-webinshot .title-wrapper {
    border-left: 4px solid #ffc700;
    padding-left: 8px;
    flex-shrink: 0;
}


.section-header-webinshot h1 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #222;
}


.section-header-webinshot .line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
    margin: 0 10px; 
}

.section-header-webinshot a {
    position: absolute;        
    right: 0;                  
    top: 50%;                   
    transform: translateY(-50%);

   
    text-decoration: none;
    color: #fff;
    background-color: #ff7101;
    padding: 2px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

/* --- MODIFIED SECTION END --- */

.widget-column .featured-post-container { max-width: 100%; margin-bottom: 8px; }
.widget-column .featured-post { position: relative; margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.widget-column .featured-post img,
.widget-column .featured-post .attachment-large { width: 100%; height: auto; display: block; }
.widget-column .caption { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 95%; background-color: white; border-radius: 8px; padding: 8px; box-sizing: border-box; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.widget-column .strip { position: absolute; top: -4px; left: 15px; width: 80px; height: 7px; background-color: #ffc700; border-radius: 5px; }
.widget-column .caption h2 { margin: 0; padding-top: 5px; font-size: 16px; font-weight: 500; line-height: 1.5; color: #333; }
.widget-column .article-list .article-item { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #f0f0f0; }
.widget-column .article-list .article-item:last-child { border-bottom: none; }
.widget-column .article-list .article-item p { margin: 0; font-size: 15px; font-weight: 400; line-height: 1.4; flex-grow: 1; }
.widget-column .article-list .article-item img,
.widget-column .article-list .article-item .attachment-thumbnail { width: 100px; height: 65px; object-fit: cover; margin-left: 15px; border-radius: 5px; flex-shrink: 0; }

/* Responsive styles for wider screens */
@media (min-width: 768px) {
    .main-container {
        flex-direction: row;
        padding: 0;
    }
    .widget-column {
        flex: 1;
    }
}
/*=============================================
  #11 Global Effects (Image Hover)
===============================================*/
img:hover {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

/* =================================================================
   #COMPONENT: BREADCRUMBS
   =================================================================
   - Styling for the breadcrumb navigation trail.
   - Includes styles for links, separators, and the current/active page.
   ================================================================= */

/* --- Variables (to manage colors and fonts from one place) --- */
:root {
    --breadcrumb-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --breadcrumb-link-color: #0056b3;      /* Blue color, matching the screenshot */
    --breadcrumb-link-hover-color: #003d82; /* Darker blue for hover state */
    --breadcrumb-separator-color: #666;   /* Color for the separator */
    --breadcrumb-current-color: #0056b3;  /* Color for the current page item */
}

/* --- Main breadcrumb container --- */
.archive-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 10px 0;
    font-family: var(--breadcrumb-font);
    font-size: 14px;
}

/* --- Navigation links (e.g., 'Home', 'Parent Category') --- */
.archive-breadcrumbs a {
    color: var(--breadcrumb-link-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease-in-out; /* Adds a smooth color transition on hover */
}

.archive-breadcrumbs a:hover {
    color: var(--breadcrumb-link-hover-color);
    text-decoration: underline;
}

/* --- Separator icon or text (e.g., ›) --- */
.archive-breadcrumbs .sep {
    margin: 0 8px; /* Slightly increased spacing for better readability */
    color: var(--breadcrumb-separator-color);
    font-size: 16px;
    line-height: 1; /* Ensures proper vertical alignment */
}

/* --- Current/active page (which is typically not a link) --- */
.archive-breadcrumbs .current {
    color: var(--breadcrumb-current-color); /* Kept blue to match the links as requested */
    font-weight: 400;
}


/* ================================================= */
/* === FOOTER STYLES (Exact Demo Match)          === */
/* ================================================= */

/* --- Footer Container --- */
.site-footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 30px 15px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    /* Remove flex direction column here to match your demo structure */
    display: block; 
}

/* --- 1. Follow Us Section --- */
.follow-heading {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #f2f2f2;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: #ddd;
}

/* --- 2. Footer Menu (Responsive Wrapping) --- */
/* Note: WordPress wraps menu in div or nav, we target .footer-nav ul */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap; /* Magic for mobile wrapping */
    justify-content: center;
    line-height: 1.8;
}

.footer-nav li {
    padding: 0;
    margin: 0;
}

.footer-nav li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer-nav li a:hover {
    color: #000;
}

/* The Pipe Separator (|) */
.footer-nav li::after {
    content: '|';
    color: #ccc;
    font-size: 12px;
    vertical-align: middle;
}

/* Remove pipe from the very last item */
.footer-nav li:last-child::after {
    display: none;
}

/* --- 3. Copyright Section --- */
.copyright-text {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.copyright-text a {
    color: #0056b3;
    text-decoration: none;
}

/* --- Mobile Adjustments --- */
@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px;
    }
    
    .footer-nav li a {
        font-size: 13px;
        padding: 0 4px;
    }

    /* Lighter pipe color on mobile */
    .footer-nav li::after {
        color: #ddd; 
    }
    
    .copyright-text {
        font-size: 12px;
        margin-top: 10px;
    }
}



/* ================================================= */
/* === SINGLE POST PAGE STYLES       === */
/* ================================================= */

.single-page-container { background-color: #fff; padding: 20px 0; margin-top: 0; }
.single-layout-grid { display: flex; gap: 40px; }
.single-main-col { width: 68%; }
.single-sidebar-col { width: 32%; }

/* 1. Breadcrumbs */
.post-breadcrumbs { font-size: 13px; color: #0056b3; margin-bottom: 15px; font-family: sans-serif; }
.post-breadcrumbs a { text-decoration: none; color: #0056b3; }
.post-breadcrumbs .sep { color: #666; margin: 0 6px; }
.post-breadcrumbs .current { color: #333; }

/* 2. Title */
h1.entry-title { font-family: 'Tiro Devanagari Hindi', serif; font-size: 30px; font-weight: 700; line-height: 1.3; margin-bottom: 20px; color: #000; }

/* 3. Summary Box */
.post-summary-box { background-color: #f0f0f0; padding: 10px 10px; border-radius: 8px; font-size: 16px; color: #444; line-height: 1.6; margin-bottom: 15px; }
.post-summary-box p { margin: 0; }

/* 4. Meta Info */
.post-meta-info { font-size: 12px; color: #666; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.post-meta-info strong { color: #000; }

/* 5. Featured Image */
.single-featured-image { margin-bottom: 10px; position: relative; }
.single-featured-image img { width: 100%; height: auto; border-radius: 8px; display: block; }
.image-caption { background: #f5f5f5; color: #666; font-size: 13px; padding: 6px 8px; text-align: center; margin-bottom: 5px; }

/* 6. Content */
.entry-content p { font-size: 16px; line-height: 1.7; margin-bottom: 30px; color: #222; font-family: 'Noto Sans', sans-serif; }

/* 7. Topics */
.post-topics-wrapper { margin: 30px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 20px; border-top: 1px solid #eee; }
.topics-label { font-weight: 800; font-size: 16px; color: #000; margin-right: 5px; }
.topic-tag { background-color: #f5f5f5; color: #333; padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid #e0e0e0; text-decoration: none; }

/* 8. Social Share */
.social-share-box { display: flex; gap: 10px; margin: 30px 0; }
.share-btn { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 6px; border: 1px solid #ddd; font-size: 16px; color: #555; transition: 0.3s; text-decoration: none; }
.share-btn:hover { background-color: #f0f0f0; color: #000; }
.share-btn.fb { color: #1877f2; border-color: #1877f2; }
.share-btn.wa { color: #25d366; border-color: #25d366; }

/* 9. Related News */
.related-news-numbered { margin-top: 20px; }
.related-heading { font-size: 18px; font-weight: 700; border-bottom: 1px solid #000; display: inline-block; margin-bottom: 10px; padding-bottom: 4px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.related-item-num { display: flex; gap: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; align-items: flex-start; }
.related-item-num .num { font-size: 40px; font-weight: 800; color: #e0e0e0; line-height: 0.8; }
.related-item-num .content h4 { margin: 0; font-size: 15px; line-height: 1.4; font-weight: 600; }
.related-item-num .content h4 a { color: #000; text-decoration: none; }
.related-item-num .thumb img { width: 100px; height: 60px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }

/* Sidebar Styles */
.sidebar-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 10px; }
.sidebar-title { font-size: 20px; font-weight: 700; border-left: 4px solid #f1c40f; padding-left: 10px; margin: 0; color: #000; }
.sidebar-btn { background: #000; color: #fff; padding: 4px 12px; border-radius: 15px; font-size: 12px; font-weight: bold; text-decoration: none; }

.sidebar-post-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-item .thumb img { width: 100px; height: 65px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.sidebar-post-item .details .title { font-size: 14px; margin: 0 0 5px 0; font-weight: 600; line-height: 1.4; color: #222; }
.sidebar-post-item .details .title a { color: #000; text-decoration: none; }
.sidebar-post-item .details .date { font-size: 11px; color: #888; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .single-layout-grid { flex-direction: column; gap: 0; }
    .single-main-col, .single-sidebar-col { width: 100%; }
    .related-grid { grid-template-columns: 1fr; }
    .single-sidebar-col { margin-top: 40px; border-top: 4px solid #eee; padding-top: 20px; }
}




/* ================================================= */
/* === VIDEO PLAY ICON STYLES (Fixed)            === */
/* ================================================= */

/* 1. Parent Container must be relative */
.single-featured-image {
    position: relative !important;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

/* 2. The Play Icon Circle */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center exactly */
    width: 60px;           /* Size of the circle */
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent Black */
    border: 3px solid #fff; /* White Border */
    border-radius: 50%;    /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;           /* Icon Color */
    font-size: 24px;       /* Icon Size */
    z-index: 10;           /* On top of image */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    pointer-events: none;  /* Let clicks pass through */
}

/* 3. Adjust Icon Center (Visual correction) */
.play-icon-overlay i {
    margin-left: 4px; 
}

/* 4. Hover Effect (Turns Red) */
.single-featured-image:hover .play-icon-overlay {
    background-color: #d92429;
    border-color: #d92429;
    transform: translate(-50%, -50%) scale(1.1);
}