/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --accent-red: #c61218; /* Logo Accent Red */
    --text-light: #ffffff;
    
    /* Logo Navy Blue Shades */
    --logo-navy-dark: #02122c;
    --logo-navy-light: #07234e;
    
    /* Glass Pill Colors */
    --glass-pill-bg: rgba(255, 255, 255, 0.12);
    --glass-pill-border: rgba(255, 255, 255, 0.28);
}

/* --- Container Width (Edge-to-Edge Spacing) --- */
.container {
    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ==========================================================================
   TOP BAR - PROFESSIONAL & MODERN GLASS DESIGN
   ========================================================================== */

:root {
    --topbar-navy-dark: #070d19;
    --topbar-navy-light: #121e36;
    --accent-red-glow: #e63946;
    --glass-pill-bg: rgba(255, 255, 255, 0.08);
    --glass-pill-border: rgba(255, 255, 255, 0.15);
    --glass-pill-hover: rgba(255, 255, 255, 0.18);
    --text-light: #f8fafc;
}

/* --- Professional Top Bar Container --- */
.top-bar {
    background: linear-gradient(135deg, var(--topbar-navy-dark) 0%, var(--topbar-navy-light) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 2px solid var(--accent-red-glow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    
    color: var(--text-light);
    font-size: 12.5px;
    padding: 7px 0;
    position: relative;
    z-index: 100;
}

.top-bar-content {
    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Elements Styling (Modern Glass Pills) */
.top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-left > span, 
.top-left > div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--glass-pill-bg);
    border: 1px solid var(--glass-pill-border);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.3px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease-in-out;
}

.top-left > span:hover, 
.top-left > div:hover {
    background: var(--glass-pill-hover);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
}

.top-left i {
    color: #38bdf8; /* Subtle Sky Blue Icon Accent */
    font-size: 12px;
}

/* Pipe Dividers Hidden */
.divider {
    display: none; 
}

/* Right Elements Alignment */
.top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.follow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Social Icons with Glassy Round Design */
.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    width: 28px;
    height: 28px;
    background: var(--glass-pill-bg);
    border: 1px solid var(--glass-pill-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}

.social-icon:hover {
    background: var(--accent-red-glow);
    border-color: var(--accent-red-glow);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

/* Hide Top Bar on Mobile Devices */
@media screen and (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}
/* ==========================================================================
   HEADER & NAVBAR COMPACT STYLES - AWADH OWL (CLEAN & SYNCED)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

:root {
    --news-red: #c60a11;
    --news-red-hover: #e50d15;
    --news-navy: #02112a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

/* ==========================================================================
   1. GOOGLE TRANSLATE WIDGET OVERRIDES & BODY FIX
   ========================================================================== */
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-yA0T2d-y133bf-O12hlc,
.VIpgJd-Z2vnSb-r421-y133bf-O12hlc,
.VIpgJd-yA0T2d-y133bf-m9215c,
body > div[style*="z-index: 2000000000"],
iframe[id*=":1.container"],
iframe[id*=":2.container"],
.goog-te-spinner-pos,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* ==========================================================================
   2. STICKY UNIFIED HEADER & EXACT WIDTH CONTAINER SYNC
   ========================================================================== */
.unified-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 100% !important;
}

/* ⚡️ MAIN FIX: Max-width exact 1320px setup to match Election Panel & Main Grid */
.header-container {
    width: 100% !important;
    max-width: 1320px !important;
    height: 60px;
    margin: 0 auto !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box !important;
}

/* ==========================================================================
   3. LEFT LOGO & BURGER ICON
   ========================================================================== */
.header-left {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.burger-icon-btn {
    background: transparent;
    border: none;
    color: var(--news-navy);
    font-size: 19px;
    cursor: pointer;
    padding: 5px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.burger-icon-btn:hover {
    background: var(--bg-light);
    color: var(--news-red);
}

.main-logo .logo-img {
    height: 100%;
    max-height: 44px;
    width: auto;
    min-width: 120px;
    max-width: 210px;
    display: block;
    object-fit: contain;
    margin-left: 35px;
    margin-top: 2px;
}

/* ==========================================================================
   4. MIDDLE CENTER NAVBAR LINKS
   ========================================================================== */
.header-center-nav {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-item {
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 100%;
    padding: 0 6px !important;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--news-red);
    background: var(--bg-light);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--news-red);
}

/* Dropdown Menu */
.nav-item.dropdown-item {
    position: relative;
}

.caret-icon {
    font-size: 8px;
    transition: transform 0.2s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 160px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    display: none;
    z-index: 1005;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item:hover .caret-icon {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--news-red);
}

/* ==========================================================================
   5. RIGHT WIDGETS (SEARCH, WEATHER, LANG, LIVE TV)
   ========================================================================== */
.header-right-widgets {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0 !important;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2px 4px 2px 8px;
    width: 115px;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    width: 140px;
    background: #ffffff;
    border-color: var(--news-navy);
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 11px;
    font-weight: 500;
    width: 100%;
    color: var(--text-dark);
}

.search-form button {
    border: none;
    background: var(--news-navy);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

/* Weather Box */
.weather-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3px 6px;
    border-radius: 16px;
    white-space: nowrap;
}

.weather-icon { font-size: 14px; }
.weather-details { display: flex; flex-direction: column; line-height: 1; }
.weather-details .temp { font-size: 11px; font-weight: 800; color: var(--news-navy); }
.weather-details .city { font-size: 8.5px; font-weight: 700; color: var(--news-red); text-transform: uppercase; }

/* Lang Switcher & Live TV Button */
.lang-switcher button {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
}

.lang-switcher button:hover { background: var(--border-color); }

.live-tv-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--news-red);
    color: #ffffff;
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 16px;
    white-space: nowrap;
    flex-shrink: 0 !important;
}

.live-tv-btn:hover { background: var(--news-red-hover); }

/* ==========================================================================
   6. BURGER SIDEBAR DRAWER STYLES
   ========================================================================== */
.burger-drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-drawer-overlay.active { display: block; opacity: 1; }

.burger-drawer {
    position: fixed;
    top: 0; left: -300px;
    width: 270px; height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
    transition: left 0.3s ease;
    overflow-y: auto;
}

.burger-drawer.active { left: 0; }

.drawer-header {
    background: var(--news-navy);
    color: #fff;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h4 { margin: 0; font-size: 15px; font-weight: 700; }
.close-drawer-btn { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.drawer-menu-list { list-style: none; padding: 10px 0; margin: 0; }
.drawer-heading { font-size: 10.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 800; padding: 10px 18px 4px 18px; background: var(--bg-light); }

.drawer-menu-list li a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 18px; color: var(--text-dark);
    text-decoration: none; font-size: 13.5px; font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-menu-list li a:hover { background: var(--bg-light); color: var(--news-red); }

.drawer-social-links { padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.drawer-social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; text-decoration: none !important; color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.drawer-social-btn.wa { background: #25D366; }
.drawer-social-btn.fb { background: #1877F2; }
.drawer-social-btn.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.drawer-social-btn.yt { background: #FF0000; }

/* Mobile Search Expandable Dropdown */
.mobile-search-btn { display: none; background: transparent; border: none; font-size: 16px; color: var(--news-navy); cursor: pointer; }
.mobile-search-dropdown { display: none; background: #ffffff; padding: 8px 15px; border-top: 1px solid var(--border-color); }
.mobile-search-dropdown.active { display: block; }
.mobile-search-form { display: flex; gap: 8px; }
.mobile-search-form input { flex: 1; padding: 6px 12px; border: 1px solid var(--border-color); border-radius: 4px; outline: none; font-size: 13px; }
.mobile-search-form button { background: var(--news-navy); color: #ffffff; border: none; padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: bold; cursor: pointer; }

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1280px) {
    .nav-link { font-size: 10.5px !important; padding: 0 4px !important; }
}

@media (max-width: 1100px) {
    .header-center-nav { display: none; }
    .desktop-only-search { display: none; }
    .mobile-search-btn { display: flex; }
}

@media (max-width: 767px) {
    .header-container { padding-left: 12px !important; padding-right: 12px !important; }
}

@media (max-width: 600px) {
    .desktop-only-widget { display: none; }
    .weather-box { padding: 2px 5px; }
}
/* ==========================================================================
   MOBILE EXPANDABLE SEARCH & PERFECT RESPONSIVE NAVBAR
   ========================================================================== */

/* Mobile Search Icon Button */
.mobile-search-btn {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--news-navy);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Expandable Mobile Search Dropdown */
.mobile-search-dropdown {
    display: none;
    background: #ffffff;
    padding: 10px 15px;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.mobile-search-dropdown.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    background: #f8fafc;
}

.mobile-search-form button[type="submit"] {
    background: var(--news-navy);
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.close-mobile-search {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 4px;
}

/* ==========================================================================
   MOBILE BREAKPOINT (< 992px)
   ========================================================================== */
@media (max-width: 992px) {
    .header-container {
        padding-left: 10px;
        padding-right: 10px;
        gap: 6px;
        height: 55px;
    }

    /* Hide Desktop Middle Bar & Extra Widgets */
    .header-center-nav,
    .desktop-only-search,
    .desktop-only-widget {
        display: none !important;
    }

    /* Show Mobile Search Button */
    .mobile-search-btn {
        display: flex;
    }

    /* Logo Fit */
    .main-logo .logo-img {
        max-height: 38px;
        min-width: 100px;
        max-width: 160px;
    }

    /* Mobile Compact Weather Box - Zero Overlap Fix */
    .weather-box {
        padding: 2px 6px;
        border-radius: 12px;
        gap: 4px;
    }

    .weather-icon {
        font-size: 13px;
    }

    .weather-details .temp {
        font-size: 11px;
        font-weight: 800;
    }

    .weather-details .condition {
        display: none;
    }

    .weather-details .city {
        font-size: 8px;
    }
}
/* --- Dynamic Breaking News Ticker Styling --- */
.breaking-ticker {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.ticker-container {
    width: 98%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ==========================================================================
   BREAKING NEWS TICKER - FULL RESPONSIVE & PADDING STYLES
   ========================================================================== */

/* Main Outer Ticker Wrapper Container */
.breaking-news-bar,
.breaking-news-container {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

/* Breaking News Title Badge (Desktop View) */
.ticker-title {
    background: linear-gradient(135deg, #e63946 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.25);
    position: relative;
    margin-left: 77px; /* Desktop Alignment */
}

/* Red Title Pulsing Animation Dot */
.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    flex-shrink: 0;
    animation: pulseGlow 1.2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.4; }
}

/* Scrolling Text Wrapper */
.ticker-content {
    flex: 1;
    overflow: hidden;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
}

.ticker-content marquee {
    display: flex;
    align-items: center;
}

/* Links inside Ticker */
.ticker-content a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ticker-content a:hover {
    color: #e63946;
    text-decoration: underline;
}

/* Separator Dots between Headlines */
.ticker-separator {
    color: #e63946;
    margin: 0 14px;
    font-weight: 800;
    font-size: 15px;
    vertical-align: middle;
}

/* ==========================================================================
   AWESOME MOBILE RESPONSIVE TICKER STYLES (< 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .breaking-news-bar,
    .breaking-news-container {
        padding: 5px 8px !important;
        gap: 8px !important;
        background: #fafafa !important; /* Soft premium background */
        border-top: 1px solid #cbd5e1 !important;
        border-bottom: 1px solid #cbd5e1 !important;
    }

    /* Mobile Badge - Reset Margin & Premium Padding */
    .ticker-title {
        margin-left: 0 !important; /* 👈 Desktop 77px margin removed on mobile */
        padding: 4px 8px !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        letter-spacing: 0.6px !important;
        border-radius: 3px !important;
        gap: 5px !important;
        background: linear-gradient(135deg, #e63946 0%, #991b1b 100%) !important;
        box-shadow: 0 2px 6px rgba(230, 57, 70, 0.35) !important;
    }

    .pulse-icon {
        width: 6px !important;
        height: 6px !important;
        background-color: #34d399 !important; /* Neon green live indicator for contrast */
        box-shadow: 0 0 6px #34d399;
    }

    .ticker-content {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
    }

    .ticker-separator {
        margin: 0 8px !important;
        font-size: 12px !important;
        color: #e63946 !important;
    }
}
/* ==========================================================================
   AWADH OWL - COMPLETE INDEX PAGE & CONTAINER ALIGNMENT STYLES
   ========================================================================== */

/* 1. GLOBAL & BODY SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: clip; /* Horizontal scrollbar overflow rokne aur sticky fit rakhne ke liye */
    overflow-y: visible;
    background-color: #f4f6f9;
    color: #1e293b;
}

/* 2. MAIN CONTAINER & WIDTH SYNC (100% ALIGNMENT FIX) */
.full-page-container,
.election-panel-container,
.footer-top-ads-wrapper,
.unified-header {
    width: 100% !important;
    max-width: 1320px !important; /* Perfect Center Width Sync */
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Core Outer Container Spacing */
.full-page-container {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 0 25px; /* Side paddings */
}

/* 3. ELECTION PANEL STYLES & ALIGNMENT FIX */
.election-panel-container {
    margin-top: 15px;
    margin-bottom: 15px;
    background: #0a192f;
    border-radius: 8px;
    border: 2px solid #e63946;
    padding: 14px 20px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.election-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.election-live-tag {
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: blink-live 1.2s infinite;
}

@keyframes blink-live {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.election-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.election-parties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    align-items: center;
}

.party-score-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.party-score-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--p-color);
}

.party-name {
    font-size: 12px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
}

.party-seats {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 4px;
}

/* 4. MAIN LAYOUT FLEX & SIDEBARS */
.page-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.main-sidebar-left {
    width: 260px;
    flex-shrink: 0;
}

.main-content-left {
    flex: 1;
    min-width: 0; /* Text break fix */
}

.main-sidebar-right {
    width: 300px;
    flex-shrink: 0;
}

/* 5. HEADINGS & BADGES */
.section-title-badge, .section-heading-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #0052cc;
}
.section-title-badge h2 { font-size: 15px; font-weight: 800; margin: 0; color: #0a2540; }

.pulse-icon {
    width: 9px;
    height: 9px;
    background-color: #e63946;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* 6. HERO BREAKING NEWS GRID */
.hero-breaking-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    background: #000;
}

.hero-card-large { grid-row: span 2; height: 300px !important; }
.hero-card-sub { height: 144px !important; }
.hero-img-wrapper { width: 100%; height: 100%; position: relative; }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.hero-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; color: #fff; z-index: 2;
}

.hero-cat-tag {
    background: #e63946; color: #fff; font-size: 10px; font-weight: 800;
    text-transform: uppercase; padding: 2px 7px; border-radius: 4px; display: inline-block; margin-bottom: 5px;
}

.hero-card-content h3 { font-size: 13.5px; font-weight: 700; line-height: 1.35; margin: 0 0 4px 0; color: #ffffff; }
.hero-card-large .hero-card-content h3 { font-size: 16.5px; font-weight: 800; }
.hero-time { font-size: 11px; color: #cbd5e1; display: flex; align-items: center; gap: 4px; }

/* 7. LATEST 2x2 SLIM RECTANGLES GRID */
.latest-2x2-section { margin: 20px 0 25px 0; }
.latest-2x2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.slim-rect-card {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px;
    overflow: hidden; display: flex; align-items: center; height: 95px;
    text-decoration: none; transition: all 0.2s ease;
}

.slim-rect-card:hover { border-color: #0052cc; box-shadow: 0 3px 10px rgba(0,0,0,0.06); transform: translateY(-2px); }
.slim-rect-img { width: 115px; height: 100%; flex-shrink: 0; position: relative; overflow: hidden; }
.slim-rect-img img { width: 100%; height: 100%; object-fit: cover; }

.slim-rect-body {
    padding: 8px 12px; flex: 1; min-width: 0; display: flex;
    flex-direction: column; justify-content: space-between; height: 100%; box-sizing: border-box;
}

.slim-rect-cat { font-size: 9.5px; font-weight: 800; color: #0052cc; text-transform: uppercase; display: block; }
.slim-rect-title {
    font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.35; margin: 2px 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.slim-rect-footer { display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.slim-rect-time { color: #64748b; }
.slim-rect-more { color: #e63946; font-weight: 700; }

/* 8. VIDEO BULLETIN SECTION */
.video-bulletin-section { margin: 25px 0; }
.video-grid-compact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.video-card-sm a { text-decoration: none; }
.video-thumb-box-sm { position: relative; border-radius: 6px; overflow: hidden; height: 100px; background: #000; }
.video-thumb-box-sm img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.3s; }
.video-card-sm:hover .video-thumb-box-sm img { transform: scale(1.05); opacity: 1; }

.play-overlay-sm {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 30px; height: 32px; background: rgba(230, 57, 70, 0.9); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px;
}

.video-title-sm {
    font-size: 11.5px; font-weight: 700; color: #1e293b; margin-top: 5px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 9. TODAY'S BULLETIN GRID */
.todays-bulletin-section { margin: 25px 0; }
.bulletin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.bulletin-card-inner {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 8px;
    overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
    height: 100%; transition: transform 0.2s;
}

.bulletin-card-inner:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.bulletin-img { height: 105px; width: 100%; }
.bulletin-img img { width: 100%; height: 100%; object-fit: cover; }
.bulletin-info { padding: 8px 10px; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.bulletin-cat { font-size: 9.5px; font-weight: 800; color: #0052cc; text-transform: uppercase; }
.bulletin-info h4 {
    font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.35; margin: 3px 0 6px 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bulletin-date { font-size: 10px; color: #64748b; }

.more-btn-wrapper { text-align: center; margin-top: 22px; }
.btn-more-news {
    background: #0052cc; color: #fff; padding: 9px 22px; border-radius: 20px;
    font-size: 12.5px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.2s;
}
.btn-more-news:hover { background: #0a2540; }

/* 10. RIGHT SIDEBAR LIVE FEED WIDGET */
.live-updates-sidebar-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.live-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid #e63946;
}

.live-badge {
    font-size: 13px; font-weight: 800; color: #e63946; display: flex; align-items: center; gap: 6px;
}
.live-subtext { font-size: 10.5px; color: #64748b; font-weight: 600; }

.live-feed-container {
    display: flex; flex-direction: column; gap: 10px; position: relative;
}

.live-feed-container::before {
    content: ''; position: absolute; left: 4px; top: 8px; bottom: 8px;
    width: 2px; background: #e2e8f0; z-index: 1;
}

.live-item {
    display: flex; align-items: flex-start; gap: 10px; padding: 6px 8px 6px 12px;
    border-radius: 6px; background: #ffffff; border: 1px solid #f1f5f9;
    position: relative; z-index: 2; transition: all 0.2s ease;
}

.live-item:hover { background: #f8fafc; border-color: #cbd5e1; transform: translateX(2px); }
.live-dot {
    position: absolute; left: -3px; top: 12px; width: 6px; height: 6px;
    background-color: #e63946; border-radius: 50%; z-index: 3;
}

.live-time-badge {
    background: #fee2e2; color: #991b1b; font-size: 10px; font-weight: 800;
    padding: 3px 6px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; border: 1px solid #fca5a5;
}

.live-details { flex: 1; min-width: 0; }
.live-details h4 {
    font-size: 12px; font-weight: 700; color: #0f172a; line-height: 1.35; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.live-details a { text-decoration: none; }
.live-details a:hover h4 { color: #0052cc; }

/* 11. FOOTER ADS PANEL SYNC */
.footer-top-ads-wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 25px;
}

.footer-top-ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.footer-ad-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    overflow: hidden;
}

.footer-ad-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.3s ease;
}

.footer-ad-card:hover img { transform: scale(1.02); }
.ad-label-tag {
    font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px;
}

/* ==========================================================================
   12. 100% RESPONSIVE MEDIA QUERIES (MOBILE, TABLET, LAPTOP)
   ========================================================================== */

/* Laptop Screens (1024px - 1200px) */
@media (max-width: 1200px) {
    .full-page-container, .election-panel-container, .footer-top-ads-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .main-sidebar-left { width: 230px; }
    .main-sidebar-right { width: 280px; }
}

/* Tablet Screens (768px - 1023px) */
@media (max-width: 1023px) {
    .page-layout {
        flex-direction: column;
    }
    .main-sidebar-left, .main-content-left, .main-sidebar-right {
        width: 100% !important;
    }
    .main-content-left { order: 1; }
    .main-sidebar-left { order: 2; }
    .main-sidebar-right { order: 3; }
    
    .video-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Screens (up to 767px) */
@media (max-width: 767px) {
    .full-page-container,
    .election-panel-container,
    .footer-top-ads-wrapper {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Election Panel Mobile */
    .election-parties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .party-score-box { padding: 6px; }
    .party-seats { font-size: 20px; }

    /* Breaking Grid Mobile */
    .hero-breaking-grid {
        grid-template-columns: 1fr;
    }
    .hero-card-large { height: 220px !important; }
    .hero-card-sub { height: 140px !important; }

    /* News Grids Mobile */
    .latest-2x2-grid,
    .video-grid-compact,
    .bulletin-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Footer Ads Mobile */
    .footer-top-ads-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-ad-card img { height: 90px; }
}

/* Small Mobile Screens (up to 420px) */
@media (max-width: 420px) {
    .latest-2x2-grid, 
    .bulletin-cards-grid {
        grid-template-columns: 1fr;
    }
    .election-parties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ==========================================
   AWADH OWL - SIDEBAR COMPONENT STYLES
   ========================================== */

.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 14px;
    font-weight: 800;
    color: #0a2540;
    border-left: 4px solid #e63946;
    padding-left: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* 1. Advertisement Box */
.ad-widget {
    padding: 10px;
    text-align: center;
    background: #fafafa;
}

.ad-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.ad-box img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* 2. Trending News with Image Thumbnails */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
    transition: transform 0.2s;
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-item:hover {
    transform: translateX(3px);
}

.trending-num {
    font-size: 16px;
    font-weight: 900;
    color: #cbd5e1;
    min-width: 20px;
}

.trending-item:hover .trending-num {
    color: #e63946;
}

.trending-img-box {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    background: #e2e8f0;
}

.trending-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-info h5 {
    font-size: 12px;
    color: #0a2540;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-info span {
    font-size: 10px;
    color: #94a3b8;
}

/* 3. Social Connect Buttons */
.social-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.social-btn-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
}

.social-fb { background: #1877f2; }
.social-yt { background: #ff0000; }
.social-tw { background: #000000; }
.social-insta { background: #e4405f; }
/* ==========================================================================
   MAIN FOOTER STYLING (FULL WIDTH & ALIGNED)
   ========================================================================== */
.main-footer {
    background: #081d33;
    color: #cbd5e1;
    font-size: 14px;
    border-top: 4px solid #e63946;
    
    /* Top & Bottom Spacings */
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 25px;
    
    /* 🚀 Side Spacing: Isko 0 hi rakhein, saara left/right control container handle karega */
    padding-left: 20px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
    
    box-sizing: border-box;
    width: 100%;
}

/* Container stretch fix */
.main-footer .footer-container {
    width: 100%;
    max-width: 100%; 
    
    /* 👈 FIX 1: Is padding se decide hota hai ki Left Logo & Right Subscribe Buttons kitne andar rahenge */
    /* Agar aapko left/right se aur jagah chhodni ho toh 35px ko 45px ya 50px kar lein */
    padding-left: 70px;  
    padding-right: 35px; 
    
    margin: 0 auto;
    box-sizing: border-box;
}

/* Footer Main Grid Layout (4 Columns) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr 1.2fr;
    gap: 30px; /* 👈 FIX 2: Gap ko 40px se 30px kiya taaki right buttons ko poori jagah mile */
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 22px;
    font-weight: 700;
    border-left: 4px solid #e63946;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 14px;
    margin-left: 0; /* 👈 FIX 3: Ensures text negative margin se bahar Na kategi */
}

/* Footer Brand Logo Styling Fix */
.footer-brand-logo {
    display: inline-block;
    margin-bottom: 18px;
    margin-left: 0; /* 👈 FIX 4: Negative margin reset kar diya hai */
    margin-top: 0;
}

.footer-brand-logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Category & Quick Links Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links li a i {
    font-size: 12px;
    color: #e63946;
}

/* Social Subscribe & Follow Buttons Box (Column 4) */
.footer-social-subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-sub-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.social-sub-btn .left-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-sub-btn i {
    font-size: 18px;
}

.social-sub-btn .sub-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Brand Button Gradient Colors */
.btn-yt {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.btn-fb {
    background: linear-gradient(135deg, #1877f2, #0d5cb6);
}

.btn-insta {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}

/* Bottom Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 25px;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom strong {
    color: #cbd5e1;
}

/* 📱 👈 FIX 5: Mobile aur tablet ke liye responsive behavior add kiya gaya hai */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-footer .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 📱 Responsive Mobile Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .main-footer .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* Logo ke neeche waale text ke liye */
.footer-about-text {
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 14px;
    
    /* 🚀 Logo ke barabar Left Shift karne ke liye */
    margin-left: -65px; 
}
/* ==========================================================================
   MOBILE RESPONSIVE CLEANUP & APP-LIKE BOTTOM BAR
   ========================================================================== */

/* Default Desktop: Mobile Bottom Nav Hidden */
.mobile-bottom-nav,
.category-drawer,
.category-drawer-overlay {
    display: none;
}

/* --------------------------------------------------------------------------
   MOBILE SCREENS ONLY (MAX-WIDTH: 768PX)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* 1. Sidebars Hide on Mobile for Pure App-like Feed */
    .main-sidebar-left,
    .main-sidebar-right {
        display: none !important;
    }

    /* Container Full Width */
    .full-page-container {
        padding: 0 10px;
        margin-bottom: 70px; /* Bottom Nav Space */
    }

    /* 2. Show Mobile Sticky Bottom Nav Bar */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        border-top: 1px solid #e2e8f0;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #64748b;
        font-size: 10px;
        font-weight: 700;
        background: none;
        border: none;
        width: 25%;
        height: 100%;
        cursor: pointer;
        position: relative;
    }

    .nav-item i {
        font-size: 18px;
        margin-bottom: 3px;
        transition: transform 0.2s;
    }

    .nav-item.active, .nav-item:hover {
        color: #0052cc;
    }

    .nav-item.live-item {
        color: #e63946;
    }

    /* Red Pulse Dot for Live */
    .pulse-dot {
        position: absolute;
        top: 8px;
        right: 28px;
        width: 7px;
        height: 7px;
        background-color: #e63946;
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
        animation: pulse-red 1.5s infinite;
    }

    /* 3. Slide-up Category Drawer Modal */
    .category-drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .category-drawer-overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .category-drawer {
        display: block;
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 16px 16px 0 0;
        z-index: 10001;
        transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 75vh;
        overflow-y: auto;
    }

    .category-drawer.active {
        bottom: 0;
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
        font-weight: 800;
        color: #0a2540;
        font-size: 15px;
    }

    .close-drawer {
        background: none;
        border: none;
        font-size: 24px;
        color: #64748b;
        cursor: pointer;
    }

    .drawer-content {
        padding: 15px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .drawer-content a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        text-decoration: none;
        color: #0f172a;
        font-size: 12.5px;
        font-weight: 700;
    }

    .drawer-content a.highlight-job {
        background: #ecfdf5;
        border-color: #a7f3d0;
        color: #047857;
    }

    .drawer-content a.highlight-exam {
        background: #f5f3ff;
        border-color: #ddd6fe;
        color: #6d28d9;
    }
}
/* Prevent Google Translate Iframe / Tooltip from taking top-left space */
#goog-gt-tt,
.goog-te-balloon-frame,
iframe[id*=":1.container"],
iframe[id*=":2.container"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    left: -9999px !important;
    top: -9999px !important;
}
/* =========================================================
   1. GLOBAL STYLES & STICKY FIX
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

:root {
    --news-red: #c60a11;
    --news-red-hover: #e50d15;
    --news-navy: #02112a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

/* ⚡️ MAIN FIX: 'overflow-x: clip' scrollbar rokega BINA sticky tode */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip; 
    overflow-y: visible;
    background-color: #f4f6f9;
}

/* =========================================================
   2. STICKY NAVBAR
   ========================================================= */
.unified-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

/* =========================================================
   3. LAYOUT & CONTAINERS
   ========================================================= */
.full-page-container {
    width: 98%;
    max-width: 1800px;
    margin: 0 auto !important;
    padding: 10px 0;
}

.page-layout {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.main-sidebar-left {
    width: 230px;
    flex-shrink: 0;
}

.main-content-left {
    flex: 1;
    min-width: 0;
}

.main-sidebar-right {
    width: 300px;
    flex-shrink: 0;
}

/* =========================================================
   4. RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
    .main-sidebar-left { 
        display: none; 
    }
}

@media (max-width: 992px) {
    .page-layout {
        flex-direction: column;
    }
    .main-sidebar-right {
        width: 100%;
    }
}
/* NAVBAR FULL WIDTH BACKGROUND (PEHLE KI TARAH) */
.unified-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 100% !important; /* Pure screen par background phelyega */
    left: 0;
    right: 0;
}

/* NAVBAR INNER CONTENT CENTERED FIT */
.header-container {
    width: 100% !important;
    max-width: 1750px !important; /* Pehle jaisa wide layout */
    height: 60px;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box !important;
}
/* ==========================================
   NAVBAR CLEAN FULL WIDTH RESET
   ========================================== */

/* Outer white background - Entire screen width without shifting */
.unified-header {
    width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    transform: none !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    z-index: 1000 !important;
}

/* Inner content alignment */
.unified-header .header-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}
/* ==========================================================================
   NAVBAR CLEAN ALIGNMENT & OVERLAP FIX
   ========================================================================== */

/* 1. Outer White Bar Full Screen Width */
.unified-header {
    width: 100% !important;
    max-width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    z-index: 1000 !important;
}

/* 2. Inner Container Space Distribution */
.header-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 60px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    box-sizing: border-box !important;
}

/* 3. Left Brand Logo */
.header-left {
    flex-shrink: 0 !important;
}

/* 4. Middle Navigation Links (Prevent Overlap & Overflow) */
.header-center-nav {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    overflow: hidden !important; /* Overlap se rokne ke liye */
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link {
    padding: 0 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* 5. Right Side Widgets (Weather, Search, Lang, Live) - Force No Shrink */
.header-right-widgets {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
}