﻿body {
    margin: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: #f3f5f7;
    color: #222;
}

/* HEADER */
/* ================== SITE HEADER ================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    height: auto;                 /* flexible height */
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* LOGO */
.site-header img {
    width: auto;
    height: 70px;                 /* fixed logo height */
    max-width: 220px;             /* large screens */
    object-fit: contain;
    display: block;
    transition: none;             /* no shrink animation */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .site-header img {
        height: 55px;             /* smaller logo for mobile */
        max-width: 180px;
    }
}


/* SLOGAN */
.slogan {
    background: #c62828;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 15px;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
    padding: 15px;
}

/* MAIN CONTENT */
.content {
    width: 75%;
    background: #ffffff;
    padding: 22px;
    border-radius: 6px;
}

/* SIDEBAR */
.sidebar {
    width: 25%;
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
}

.sidebar h3 {
    border-left: 4px solid #c62828;
    padding-left: 8px;
}
.sidebar img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ARTICLE */
.news-article h1 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.description {
    background: #f9f9f9;
    border-left: 4px solid #c62828;
    padding: 10px;
    margin-bottom: 20px;
   display:none;
}


.news-article p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.news-article img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;   /* VERY IMPORTANT */
}


/* SHARE BUTTONS */
.share a {
    display: inline-block;
    padding: 8px 12px;
    margin-right: 8px;
    margin-bottom: 6px;
    background: #1877f2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.share a.wa { background: #25d366; }
.share a.tw { background: #000000; }
.share a.tg { background: #0088cc; }

/* FOOTER */
.site-footer {
    background: #111111;
    color: #cccccc;
    text-align: center;
    padding: 22px;
    margin-top: 30px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .content,
    .sidebar {
        width: 100%;
    }
    .news-article h1 {
        font-size: 22px;
    }
}
/* heading image */
.heading-image {
    text-align: center; /* centers image */
    margin: 15px 0;
}

.heading-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}













/* FIX STICKY HEADER + LOGO */
header.nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}

/* ensure holder doesn't break sticky */
.nav__holder {
    position: relative;
}

/* logo size safety */
.logo__img {
    max-height: 60px;
}



/* STICKY SERVICES BAR */
.sticky-services {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    overflow-x: auto;   /* horizontal scroll */
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top: 2px solid #c40000;
    padding: 6px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.sticky-services::-webkit-scrollbar {
    display: none;
}

/* SERVICE LINKS */
.sticky-services a {
    flex: 0 0 auto; /* do not shrink */
    width: 70px;
    margin: 0 6px;
    text-align: center;
    text-decoration: none;
    color: #111;
   
}

/* ICON */
.sticky-services img {
    width: 28px;
    height: 28px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
}

/* SCALE ON HOVER / TAP */
.sticky-services a:hover img,
.sticky-services a:active img {
    transform: scale(1.3);
}

/* TEXT */
.sticky-services span {
    font-size: 11px;
    transition: color 0.3s;
}

.sticky-services a:hover span,
.sticky-services a:active span {
    color: #c40000;
    font-weight: bold;
}

/* BOUNCE ANIMATION KEYFRAMES */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* MOBILE FLEX ADJUSTMENT */
@media (max-width: 768px) {
    .sticky-services a {
        animation: bounce 1.5s infinite alternate;
    }
}










/* video side baar style*/
.video-sidebar {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
}

.video-sidebar h3 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e63946;
    padding-bottom: 5px;
}

.video-box {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

/* Sticky sidebar (desktop only) */
@media (min-width: 992px) {
    .video-sidebar {
        position: sticky;
        top: 80px;
    }
}



/* Sidebar general styling */
.sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* Headings */
.sidebar h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 5px;
}

/* About / Tags - Responsive Grid */
.tags {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.tags li {
    text-align: center;
}

.tags li a {
    display: block;
    background: #007bff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px; /* space between image and text */
    transition: background 0.3s;
}

.tags li a:hover {
    background: #0056b3;
}

.tag-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto; /* center the image */
}

/* Contact Info */
.contact-info p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .tags li a {
        font-size: 12px;
        padding: 5px 10px;
    }
    .tag-img {
        width: 40px;
        height: 40px;
    }
}













.aside-news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.aside-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.aside-news-link {
    display: block;
    text-decoration: none;
    color: #111;
}

.aside-news-thumb {
    position: relative;
}

.aside-news-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.city-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.breaking-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff9800;
    color: #000;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 700;
}

.aside-news-body {
    padding: 10px 12px;
}

.aside-news-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.aside-news-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.aside-news-card:hover .aside-news-text {
    color: #e53935;
}
