/* =========================================================
   VARTAASTRA - COMPLETE STYLE.CSS (UPDATED)
   Header + Navigation + Breaking News + Slider + Sidebar + Article
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #222;
    font-family:
        Arial,
        "Noto Sans Devanagari",
        "Nirmala UI",
        sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button,
input {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   TOP HEADER
   ========================================================= */

.top-header {
    width: 100%;
    height: 88px;
    background: #fff;
    border-top: 2px solid #c90000;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}


/* =========================================================
   MENU BUTTON
   ========================================================= */

.menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: none;
    border-radius: 5px;
    background: #c90000;
    color: #fff;
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.menu-toggle:hover {
    background: #a80000;
    transform: scale(1.03);
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    margin-right: auto;
}

.logo > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}



.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    margin: 0;
    color: #b90000;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
}

.logo-text p {
    margin-top: 4px;
    color: #333;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================================================
   DATE
   ========================================================= */

.today-date {
    white-space: nowrap;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}


/* =========================================================
   SEARCH
   ========================================================= */

.header-search {
    width: 320px;
    height: 42px;
    display: flex;
    position: relative;
}

.header-search input {
    width: 100%;
    height: 42px;
    padding: 0 55px 0 14px;
    border: 1px solid #d4d4d4;
    border-right: none;
    outline: none;
    background: #fff;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
}

.header-search input:focus {
    border-color: #c90000;
    box-shadow: 0 0 0 2px rgba(201,0,0,0.08);
}

.header-search button {
    width: 50px;
    min-width: 50px;
    height: 42px;
    border: none;
    background: #c90000;
    color: #fff;
    font-size: 19px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.header-search button:hover {
    background: #a80000;
}


/* =========================================================
   LIVE SEARCH
   ========================================================= */

#searchResult {
    display: none;
    position: absolute;
    top: 47px;
    left: 0;
    right: 50px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: 350px;
    overflow-y: auto;
}

#searchResult a {
    display: block;
    padding: 11px 13px;
    color: #222;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

#searchResult a:hover {
    background: #f7f7f7;
    color: #c90000;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    width: 100%;
    height: 50px;
    background: #111;
    border-bottom: 3px solid #c90000;
    position: relative;
    z-index: 900;
}

.main-nav .container {
    height: 100%;
}

.nav-menu {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu li a {
    height: 100%;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s ease;
}

.nav-menu li a:hover {
    background: #c90000;
    color: #fff;
}


/* =========================================================
   BREAKING NEWS (ONE BAR)
   ========================================================= */

.breaking-wrapper {
    width: 100%;
    height: 44px;
    display: flex;
    background: #d90000;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 800;
    border-bottom: 1px solid #a90000;
    margin: 0 !important;
    padding: 0 !important;
}

.breaking-label {
    width: 145px;
    min-width: 145px;
    height: 44px;
    background: #b40000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    box-shadow: 5px 0 10px rgba(0,0,0,0.08);
}

.breaking-ticker {
    flex: 1;
    height: 44px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breaking-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 44px;
    white-space: nowrap;
    animation: varttaBreaking 45s linear infinite;
}

.breaking-track:hover {
    animation-play-state: paused;
}

.breaking-item {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 32px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
}

.breaking-item::after {
    content: "•";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
}

.breaking-item:hover {
    color: #ffe5e5;
}

@keyframes varttaBreaking {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}


/* =========================================================
   AUTO NEWS SLIDE BAR (HERO SLIDER)
   ========================================================= */

.slider-container {
    position: relative;
    width: 100%;
    max-height: 460px;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px 0 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    background: #000;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-item {
    min-width: 100%;
    position: relative;
}

.slide-item img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 20px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 65%, transparent 100%);
    color: #ffffff;
}

.slide-tag {
    background: #c90000;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.slide-caption h2 {
    font-size: 22px;
    line-height: 1.35;
    margin: 4px 0 6px 0;
    font-weight: 700;
}

.slide-caption p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-caption span {
    font-size: 12px;
    color: #94a3b8;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #ffffff;
    border: none;
    font-size: 18px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #c90000;
}

.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #c90000;
    width: 22px;
    border-radius: 8px;
}


/* =========================================================
   NEWS CARD & FOOTER ACTIONS (सविस्तर वाचा + सोशल शेअर)
   ========================================================= */

.news-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.10);
}

.news-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    gap: 8px;
}

.btn-read-more {
    background: #1e293b;
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s ease;
}

.btn-read-more:hover {
    background: #c90000;
}

.share-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.15);
}

.share-whatsapp { background-color: #25D366; }
.share-facebook { background-color: #1877F2; }
.share-native   { background-color: #64748b; }


/* =========================================================
   SIDEBAR (DRAWER / OFF-CANVAS) & LOGIN BUTTONS
   ========================================================= */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: 5px 0 25px rgba(0,0,0,0.20);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    height: 72px;
    padding: 0 18px;
    background: #c90000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
}

.sidebar-header h2 {
    font-size: 21px;
    font-weight: 800;
}

.sidebar-header button {
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 21px;
    border-radius: 4px;
    cursor: pointer;
}

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

.sidebar li {
    border-bottom: 1px solid #eee;
}

.sidebar li a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 20px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

.sidebar li a:hover {
    background: #fff1f1;
    color: #c90000;
    padding-left: 27px;
}

/* 🔐 SIDEBAR LOGIN BUTTONS (DRAWER MENU MADHYE) */
.sidebar-auth-section {
    list-style: none !important;
    padding: 18px 15px 20px 15px !important;
    margin-top: 15px;
    border-top: 2px dashed #e2e8f0;
    background: #f8fafc;
}

.sidebar-auth-title {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-auth-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-sidebar-login {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    width: 100%;
    box-sizing: border-box;
}

.btn-sidebar-reporter {
    background-color: #e7f1ff !important;
    color: #0d6efd !important;
    border: 1px solid #b6d4fe !important;
}

.btn-sidebar-reporter:hover {
    background-color: #0d6efd !important;
    color: #ffffff !important;
}

.btn-sidebar-admin {
    background-color: #c90000 !important;
    color: #ffffff !important;
    border: 1px solid #c90000 !important;
}

.btn-sidebar-admin:hover {
    background-color: #a80000 !important;
    box-shadow: 0 4px 10px rgba(201, 0, 0, 0.3);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   RIGHT SIDEBAR WIDGETS (PHOTO AUTO-SIZE ADJUSTMENT)
   ========================================================= */

.sidebar-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #c90000;
    color: #1e293b;
}

.sidebar-news-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

/* Sidebar Auto-Size Thumbnail Container */
.sidebar-thumb {
    width: 80px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
}

.sidebar-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* फोटो ताणला जाणार नाही */
    display: block !important;
}

.sidebar-info {
    flex: 1;
    min-width: 0;
}

.sidebar-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px 0;
    color: #334155;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-info h4 a:hover {
    color: #c90000;
}

.sidebar-meta {
    font-size: 11px;
    color: #94a3b8;
}


/* =========================================================
   SCROLLBAR & SAFETY
   ========================================================= */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eee; }
::-webkit-scrollbar-thumb { background: #999; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #c90000; }

body, html {
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Hide duplicate elements */
.secondary-nav, .sub-navigation, .duplicate-nav, .faded-nav {
    display: none !important;
}


/* =========================================================
   RESPONSIVE MEDIA QUERIES (TABLET + MOBILE)
   ========================================================= */

@media (max-width: 900px) {
    .top-header { height: 78px; }
    .header-container { gap: 12px; }
    .logo img { width: 52px; height: 52px; }
    .logo-text h1 { font-size: 23px; }
    .today-date { display: none; }
    .header-search { width: 260px; }
    .nav-menu li a { padding: 0 9px; font-size: 13px; }
    .breaking-label { width: 130px; min-width: 130px; }
    .slider-container { height: 350px; }
}

@media (max-width: 700px) {
    .top-header { height: 72px; }
    .header-container { padding-left: 10px; padding-right: 10px; gap: 8px; }
    .menu-toggle { width: 40px; height: 40px; min-width: 40px; font-size: 24px; }
    .logo > a { gap: 6px; }
    .logo img { width: 45px; height: 45px; }
    .logo-text h1 { font-size: 20px; }
    .header-right { margin-left: auto; }
    .header-search { width: 150px; height: 38px; }
    .header-search input { height: 38px; padding-left: 9px; font-size: 12px; }
    .header-search button { width: 40px; min-width: 40px; height: 38px; font-size: 16px; }
    .main-nav { display: none; }
    .breaking-wrapper { height: 42px; }
    .breaking-label { width: 105px; min-width: 105px; height: 42px; font-size: 12px; }
    .sidebar { width: 290px; }
    .slider-container { height: 260px; }
}

@media (max-width: 450px) {
    .logo img { width: 40px; height: 40px; }
    .logo-text h1 { font-size: 17px; }
    .header-search { width: 125px; }
    .breaking-label { width: 92px; min-width: 92px; font-size: 11px; }
}
/* =========================================================
   DUPLICATE HEADER FIX (फक्त पहिला हेडर दिसेल)
   ========================================================= */

/* पहिल्या top-header नंतर येणारा कोणताही दुसरा top-header लगेच लपवा */
.top-header ~ .top-header,
header.top-header + header.top-header,
.header-container ~ .header-container {
    display: none !important;
}

/* मेनू बार व्यवस्थित दिसण्यासाठी */
.main-nav {
    display: block !important;
    visibility: visible !important;
}

.breaking-wrapper {
    display: flex !important;
    visibility: visible !important;
}

/* =========================================================
   VARTAASTRA - PROFESSIONAL FOOTER STYLING
========================================================= */

.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  margin-top: 40px;
  font-family: 'Noto Sans Devanagari', Arial, sans-serif;
  border-top: 4px solid #c90000;
}

/* 1. Action Bar (Send Your News + Join Us) */
.footer-top-action-bar {
  background: linear-gradient(135deg, #c90000 0%, #8b0000 100%);
  padding: 22px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-action-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.action-text h3 {
  margin: 0 0 5px 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-text p {
  margin: 0;
  color: #fed7d7;
  font-size: 13px;
}

.action-buttons-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-footer-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Send Your News Button (Green) */
.btn-send-news {
  background-color: #25D366;
  color: #ffffff !important;
}

.btn-send-news:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

/* Join Us Button (White/Dark) */
.btn-join-us {
  background-color: #ffffff;
  color: #111827 !important;
}

.btn-join-us:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

/* 2. Main 4-Column Grid */
.footer-main-content {
  padding: 40px 15px 30px 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  padding: 3px;
}

.footer-logo-text h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.footer-logo-text p {
  margin: 2px 0 0 0;
  color: #9ca3af;
  font-size: 11px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 18px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f2937;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.fb:hover { background: #1877F2; }
.social-icon.tw:hover { background: #000000; }
.social-icon.wa:hover { background: #25D366; }
.social-icon.yt:hover { background: #FF0000; }
.social-icon.ig:hover { background: #E4405F; }

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  position: relative;
  border-bottom: 2px solid #374151;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 35px;
  height: 2px;
  background-color: #c90000;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.footer-links li a i {
  font-size: 10px;
  color: #c90000;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Contact Info */
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #9ca3af;
  font-size: 13px;
}

.footer-contact-info li i {
  color: #c90000;
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-info span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
}

.footer-contact-info a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-contact-info a:hover {
  color: #ffffff;
}

/* 3. Bottom Bar */
.footer-bottom-bar {
  background-color: #0b0f19;
  padding: 15px 0;
  border-top: 1px solid #1f2937;
  font-size: 12px;
  color: #6b7280;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-action-flex {
    flex-direction: column;
    text-align: center;
  }
  .action-buttons-group {
    justify-content: center;
    width: 100%;
  }
  .btn-footer-action {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
}
/* =========================================================
   STICKY BOTTOM BAR (खालील आडव्या पट्टीचे डिझाईन)
   ========================================================= */

.bottom-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    border-top: 2px solid #c90000;
    padding: 8px 12px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    z-index: 99999;
}

.sticky-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.sticky-btn {
    flex: 1;
    max-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* बातमी पाठवा (हिरवा रंग) */
.btn-send-news-bottom {
    background-color: #25D366;
    color: #ffffff !important;
}

/* ग्रुप जॉईन करा (लाल रंग) */
.btn-join-us-bottom {
    background-color: #c90000;
    color: #ffffff !important;
}

/* पट्टीमुळे फुटर झाकले जाऊ नये म्हणून खाली जागा देणे */
body {
    padding-bottom: 55px !important;
}

/* मोबाईल व्ह्यू */
@media (max-width: 600px) {
    .bottom-sticky-bar {
        padding: 6px 8px;
    }
    
    .sticky-btn {
        font-size: 12px;
        padding: 8px 10px;
        gap: 5px;
    }
}

/* =========================================================
   VARTAASTRA - FINAL QUALITY OVERRIDES
   First CSS + Mukta
   Mobile News Card + Auto Responsive Image
   Sticky Bottom Bar + Responsive Fixes
   ========================================================= */

/* ---------------------------------------------------------
   1. MARATHI FONT SYSTEM
   --------------------------------------------------------- */
html,
body {
    font-family: "Mukta", "Nirmala UI",
                 Arial, sans-serif !important;
    font-variant-ligatures: normal;
    font-feature-settings: "kern", "liga";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
body *,
button,
input,
textarea,
select,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
li,
label,
small,
strong {
    font-family: "Mukta",  "Nirmala UI",
                 Arial, sans-serif !important;
}

/* Keep icon fonts working if the website uses Font Awesome. */
.fa,
.fas,
.far,
.fal,
.fab,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands",
                 sans-serif !important;
}


/* ---------------------------------------------------------
   2. DESKTOP HEADER — CLEAN & CONNECTED
   --------------------------------------------------------- */
@media (min-width: 901px) {
    .menu-toggle {
        display: none !important;
    }

    .logo {
        margin-right: 0 !important;
    }

    .header-right {
        margin-left: 40px !important;
    }
}


/* ---------------------------------------------------------
   3. MOBILE / TABLET BASE
   --------------------------------------------------------- */
@media (max-width: 900px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-container {
        width: 100%;
        min-width: 0;
    }

    .logo {
        min-width: 0;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text h1 {
        white-space: nowrap;
    }

    .header-right {
        min-width: 0;
    }
}


/* ---------------------------------------------------------
   4. MOBILE HEADER — SPACE SAVING
   --------------------------------------------------------- */
@media (max-width: 700px) {
    body {
        padding-bottom: 64px !important;
    }

    .top-header {
        height: 66px !important;
    }

    .header-container {
        height: 66px !important;
        padding-left: 9px !important;
        padding-right: 9px !important;
        gap: 8px !important;
    }

    .menu-toggle {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        font-size: 23px !important;
    }

    .logo > a {
        gap: 6px !important;
    }

    .logo img {
        width: 42px !important;
        height: 42px !important;
    }

    .logo-text h1 {
        font-size: 19px !important;
        line-height: 1.05 !important;
    }

    .logo-text p {
        display: none !important;
    }

    .header-right {
        margin-left: auto !important;
        gap: 0 !important;
    }

    .today-date {
        display: none !important;
    }

    .header-search {
        width: clamp(112px, 31vw, 155px) !important;
        height: 36px !important;
    }

    .header-search input {
        height: 36px !important;
        padding: 0 6px !important;
        font-size: 12px !important;
        min-width: 0 !important;
    }

    .header-search button {
        width: 36px !important;
        min-width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
    }

    .main-nav {
        display: none !important;
    }
}


/* ---------------------------------------------------------
   5. BREAKING NEWS — MOBILE
   --------------------------------------------------------- */
@media (max-width: 700px) {
    .breaking-wrapper {
        height: 40px !important;
    }

    .breaking-label {
        width: 92px !important;
        min-width: 92px !important;
        height: 40px !important;
        font-size: 12px !important;
    }

    .breaking-track,
    .breaking-ticker,
    .breaking-item {
        height: 40px !important;
    }

    .breaking-item {
        padding: 0 20px !important;
        font-size: 12px !important;
    }
}


/* ---------------------------------------------------------
   6. HERO SLIDER — RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 700px) {
    .slider-container {
        height: auto !important;
        max-height: none !important;
        margin: 10px 0 18px !important;
        border-radius: 8px !important;
    }

    .slide-item img {
        width: 100% !important;
        height: clamp(210px, 56vw, 290px) !important;
        object-fit: cover !important;
    }

    .slide-caption {
        padding: 35px 14px 15px !important;
    }

    .slide-caption h2 {
        font-size: clamp(17px, 4.6vw, 22px) !important;
        line-height: 1.3 !important;
    }

    .slide-caption p {
        font-size: 12px !important;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        padding: 0 !important;
        font-size: 15px !important;
    }
}


/* ---------------------------------------------------------
   7. MOBILE NEWS CARDS — PREMIUM HORIZONTAL LAYOUT
   Left: responsive image
   Right: title + optional meta
   --------------------------------------------------------- */
@media (max-width: 700px) {

    .news-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .news-card,
    .card,
    article.news-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 100px !important;
        margin: 0 0 10px 0 !important;
        padding: 9px !important;
        gap: 11px !important;
        background: #ffffff !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.055) !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Mobile image automatically follows screen width.
       It remains proportional and never stretches. */
    .news-card > img,
    .news-card .news-image,
    .news-card .card-image,
    .news-card img:first-child,
    .card > img,
    .card img:first-child,
    .category-news-image {
        flex: 0 0 clamp(92px, 30vw, 118px) !important;
        width: clamp(92px, 30vw, 118px) !important;
        height: clamp(72px, 23vw, 90px) !important;
        max-width: 118px !important;
        max-height: 90px !important;
        min-width: 92px !important;
        min-height: 72px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }

    /* Content area must be allowed to shrink. */
    .news-card .news-content,
    .news-card .card-content,
    .news-card .news-info,
    .news-card > div:not(.news-footer-actions):not(.share-buttons),
    .card .card-content,
    .card > div:not(.news-footer-actions):not(.share-buttons) {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    /* Best mobile title — readable, compact and never overflows. */
    .news-card h2,
    .news-card h3,
    .news-card h4,
    .news-card .news-title,
    .card h2,
    .card h3,
    .card h4 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #111827 !important;
        font-size: clamp(14px, 3.7vw, 16px) !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        letter-spacing: 0 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        overflow: hidden !important;
    }

    /* Keep meta/date small and clean when present. */
    .news-card .news-meta,
    .news-card time,
    .news-card .date {
        display: block !important;
        width: 100% !important;
        margin: 0 0 3px 0 !important;
        padding: 0 !important;
        color: #64748b !important;
        font-size: 10px !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Home cards stay clean — description is hidden on mobile. */
    .news-card p:not(.news-meta):not(.date) {
        display: none !important;
    }

    /* Prevent footer/share row from breaking the compact card. */
    .news-card .news-footer-actions {
        display: none !important;
    }

    .news-card:hover {
        transform: none !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.07) !important;
    }
}


/* ---------------------------------------------------------
   8. VERY SMALL PHONES
   --------------------------------------------------------- */
@media (max-width: 480px) {
    .container {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .news-card {
        min-height: 88px !important;
        padding: 8px !important;
        gap: 9px !important;
        border-radius: 7px !important;
    }

    .news-card > img,
    .news-card .news-image,
    .news-card .card-image,
    .news-card img:first-child,
    .card > img,
    .card img:first-child,
    .category-news-image {
        flex-basis: 31vw !important;
        width: 31vw !important;
        height: 22vw !important;
        min-width: 86px !important;
        min-height: 64px !important;
        max-width: 108px !important;
        max-height: 78px !important;
    }

    .news-card h2,
    .news-card h3,
    .news-card h4,
    .news-card .news-title,
    .card h2,
    .card h3,
    .card h4 {
        font-size: 13.5px !important;
        line-height: 1.32 !important;
        -webkit-line-clamp: 2 !important;
    }

    .news-card .news-meta,
    .news-card time,
    .news-card .date {
        font-size: 9.5px !important;
    }

    .breaking-label {
        width: 82px !important;
        min-width: 82px !important;
        font-size: 11px !important;
    }

    .header-search {
        width: 108px !important;
    }
}


/* ---------------------------------------------------------
   9. ULTRA SMALL PHONES — NO HORIZONTAL SCROLL
   --------------------------------------------------------- */
@media (max-width: 360px) {
    .header-container {
        gap: 5px !important;
    }

    .menu-toggle {
        width: 36px !important;
        min-width: 36px !important;
        height: 36px !important;
        font-size: 21px !important;
    }

    .logo img {
        width: 38px !important;
        height: 38px !important;
    }

    .logo-text h1 {
        font-size: 17px !important;
    }

    .header-search {
        width: 96px !important;
    }

    .news-card {
        gap: 8px !important;
        padding: 7px !important;
    }

    .news-card > img,
    .news-card .news-image,
    .news-card .card-image,
    .news-card img:first-child,
    .card > img,
    .card img:first-child,
    .category-news-image {
        min-width: 82px !important;
        width: 29vw !important;
        height: 21vw !important;
        min-height: 60px !important;
        max-height: 70px !important;
    }

    .news-card h2,
    .news-card h3,
    .news-card h4,
    .news-card .news-title,
    .card h2,
    .card h3,
    .card h4 {
        font-size: 12.8px !important;
    }
}


/* ---------------------------------------------------------
   10. STICKY BOTTOM BAR — MUKTA + MOBILE PERFECT
   --------------------------------------------------------- */
.bottom-sticky-bar {
    font-family: "Mukta",  "Nirmala UI",
                 Arial, sans-serif !important;
}

.bottom-sticky-bar *,
.bottom-sticky-bar a,
.bottom-sticky-bar button,
.sticky-btn {
    font-family: "Mukta", "Nirmala UI",
                 Arial, sans-serif !important;
}

@media (max-width: 700px) {
    .bottom-sticky-bar {
        display: block !important;
        padding: 6px 8px !important;
        padding-bottom: calc(6px + env(safe-area-inset-bottom)) !important;
        background: #111827 !important;
        border-top: 2px solid #c90000 !important;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.24) !important;
    }

    .sticky-bar-container {
        width: 100% !important;
        max-width: 100% !important;
        gap: 8px !important;
    }

    .sticky-btn {
        min-width: 0 !important;
        max-width: none !important;
        min-height: 38px !important;
        padding: 7px 9px !important;
        border-radius: 24px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}


/* ---------------------------------------------------------
   11. FOOTER — SAME MARATHI FONT
   --------------------------------------------------------- */
.site-footer,
.site-footer *,
.footer-top-action-bar,
.footer-main-content,
.footer-bottom-bar {
    font-family: "Mukta", "Nirmala UI",
                 Arial, sans-serif !important;
}


/* ---------------------------------------------------------
   12. GLOBAL MOBILE SAFETY
   --------------------------------------------------------- */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

img,
video,
iframe {
    max-width: 100%;
}

input,
button,
textarea,
select {
    max-width: 100%;
}

@media (max-width: 700px) {
    .sidebar {
        width: min(290px, 86vw) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-action-flex {
        flex-direction: column !important;
        text-align: center !important;
    }

    .action-buttons-group {
        width: 100% !important;
        flex-direction: column !important;
    }

    .btn-footer-action {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* =========================================================
   VARTAASTRA - MENU BUTTON FINAL FIX
   Desktop + Mobile दोन्ही ठिकाणी Menu Button दिसेल
   ========================================================= */

.menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop */
@media (min-width: 901px) {
    .menu-toggle {
        display: flex !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
    }
}

/* Tablet + Mobile */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 700px) {
    .menu-toggle {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        font-size: 23px !important;
    }
}



/* =========================================================
   VARTAASTRA NEWS PORTAL — CLEAN PREMIUM LOGO ANIMATION
   Real logo image + broadcast pulse + light scan.
   No full-logo spinning; designed for a news header.
   ========================================================= */
.logo > a .logo-animation-wrap {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: visible;
    isolation: isolate;
}

.logo > a .logo-animation-wrap .logo-animated {
    position: relative;
    z-index: 3;
    width: 58px;
    height: 58px;
    object-fit: contain;
    transform-origin: center;
    animation: newsLogoReveal 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.16));
    will-change: transform, opacity, filter;
}

/* Broadcast rings stay subtle so the actual logo remains readable. */
.logo-orbit {
    position: absolute;
    inset: 5px;
    border: 1.5px solid rgba(201,0,0,.55);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: newsOrbit 6s ease-out infinite;
}
.logo-orbit-2 {
    inset: 9px;
    border-color: rgba(0,72,180,.42);
    animation-delay: .35s;
}

.logo-scan {
    position: absolute;
    z-index: 4;
    width: 3px;
    height: 76%;
    border-radius: 99px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.95), transparent);
    transform: translateX(-34px) rotate(18deg);
    opacity: 0;
    pointer-events: none;
    animation: newsLogoScan 6s ease-in-out infinite;
}

@keyframes newsLogoReveal {
    0%, 100% { opacity: .92; transform: scale(.98) rotate(-2deg); filter: drop-shadow(0 2px 4px rgba(0,0,0,.16)); }
    8% { opacity: 0; transform: scale(.62) rotate(-10deg); filter: blur(3px); }
    22% { opacity: 1; transform: scale(1.10) rotate(2deg); filter: blur(0) drop-shadow(0 4px 8px rgba(201,0,0,.18)); }
    30% { transform: scale(1) rotate(0); }
    62% { transform: scale(1) rotate(0); }
    70% { transform: scale(1.035) rotate(-1deg); }
    78% { transform: scale(1) rotate(0); }
}

@keyframes newsOrbit {
    0%, 15%, 100% { opacity: 0; transform: scale(.72) rotate(0deg); }
    22% { opacity: .8; transform: scale(1.02) rotate(35deg); }
    42% { opacity: .18; transform: scale(1.18) rotate(180deg); }
    58% { opacity: .55; transform: scale(.96) rotate(300deg); }
    72% { opacity: 0; transform: scale(1.18) rotate(360deg); }
}

@keyframes newsLogoScan {
    0%, 28% { opacity: 0; transform: translateX(-34px) rotate(18deg); }
    38% { opacity: .9; }
    54% { opacity: 0; transform: translateX(34px) rotate(18deg); }
    100% { opacity: 0; transform: translateX(34px) rotate(18deg); }
}

/* Keep “सविस्तर वाचा” and Share buttons completely normal. */
.btn-read-more,
.share-btn {
    animation: none !important;
    transform: none;
}

.btn-read-more:hover,
.share-btn:hover {
    animation: none !important;
}

@media (max-width: 900px) {
    .logo > a .logo-animation-wrap,
    .logo > a .logo-animation-wrap .logo-animated {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
}
@media (max-width: 700px) {
    .logo > a .logo-animation-wrap,
    .logo > a .logo-animation-wrap .logo-animated {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }
}
@media (max-width: 450px) {
    .logo > a .logo-animation-wrap,
    .logo > a .logo-animation-wrap .logo-animated {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo > a .logo-animation-wrap .logo-animated,
    .logo > a .logo-animation-wrap .logo-orbit,
    .logo > a .logo-animation-wrap .logo-scan {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
