/*
Theme Name: SkyNews360 
Theme URI: https://skynews360.com
Description: Optimized, Segmented, and Admin-Ready News Theme
Version: 6.5 (Mobile Gap Fixed & Zero Margin)
Author: SkyNews360
Requires PHP: 7.4
*/

/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;700;800&display=swap');

:root {
    /* Colors */
    --primary: #d32f2f;       /* Bhaskar Red */
    --dark: #1a1a1a;          /* Main Text */
    --light-gray: #f4f4f4;    /* Backgrounds */
    --border-color: #e0e0e0;
    
    /* Social Colors */
    --wa-color: #25D366;
    --fb-color: #1877F2;
    
    /* Layout */
    --container-width: 1180px;
    --header-height: 50px;
    
    /* Fonts */
    --font-main: 'Mukta', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body { font-family: var(--font-main); background: #fff; color: var(--dark); line-height: 1.4; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. LAYOUT SKELETON & RESPONSIVENESS
   ========================================= */
.container { 
    max-width: var(--container-width); 
    margin: 0 auto; 
    padding: 0 15px; 
    position: relative;
}

/* Main Grid: Left (20%) - Center (55%) - Right (25%) */
.main-grid {
    display: grid;
    grid-template-columns: 15fr 60fr 25fr; 
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* --- MOBILE LAYOUT & SIDEBAR HIDING --- */
@media screen and (max-width: 600px) { 
    .main-grid { 
        display: flex;
        flex-direction: column;
        gap: 30px;
    } 
}

@media screen and (max-width: 600px) {
    /* 1. Force Hide Sidebars on Mobile/Tablet */
    #sidebar-left, #sidebar-right, #secondary, #tertiary,
    .sidebar, .left-sidebar, .right-sidebar, .widget-area,
    aside, div[class*="sidebar"], div[id*="sidebar"] {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. Content Area Full Width */
    #primary, .content-area, .site-main, .primary-content, main, .main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 !important;
        padding: 0 5px !important;
        border: none !important;
    }
    
    /* 3. Container Padding Fix */
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* =========================================
   3. HEADER SYSTEM (DESKTOP & MOBILE)
   ========================================= */

/* A. Main Header Container */
.site-header {
    position: sticky;        
    position: -webkit-sticky;
    top: 0;
    z-index: 99999;
    background: #fff;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* B. Top Bar */
.top-bar { 
    background: #f4f4f4; 
    border-bottom: 1px solid #ddd; 
    padding: 5px 0; 
    font-size: 12px; 
    color: #555; 
    flex-shrink: 0; 
}
.top-right ul { display: flex; gap: 15px; }

/* C. Logo Area */
.logo-area { 
    padding: 10px 0; 
    background: #fff; 
    flex-shrink: 0; 
}
.logo-area .container { display: flex; justify-content: space-between; align-items: center; }
.text-logo a { 
    color: var(--primary); font-size: 40px; font-weight: 800; line-height: 1; text-transform: uppercase; 
}

/* Header Icons */
.header-actions { display: flex; align-items: center; gap: 15px; }
.icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: #f0f2f5; color: #333;
    border-radius: 50%; text-decoration: none; transition: all 0.2s ease;
}
.icon-btn .dashicons { font-size: 24px; width: 24px; height: 24px; line-height: 24px; }
.icon-btn:hover { background: var(--primary); color: #fff; transform: scale(1.1); }
.user-avatar-btn { width: 44px; height: 44px; padding: 0; overflow: hidden; background: transparent; border: 2px solid #eee; }

/* D. Navigation */
.main-nav-sticky {
    background: var(--primary);
    position: relative; 
    z-index: 20; 
    width: 100%;
    flex-shrink: 0;
}
.nav-wrapper { display: flex; align-items: center; height: 40px; }
.home-icon { 
    color: #fff; font-size: 22px; padding: 0 15px; 
    border-right: 1px solid rgba(255,255,255,0.2); height: 100%; 
    display: flex; align-items: center; 
}
.bhaskar-menu { display: flex; height: 100%; margin: 0; padding: 0; list-style: none; }
.bhaskar-menu > li { height: 100%; display: flex; align-items: center; position: relative; }
.bhaskar-menu > li > a {
    color: #fff; font-weight: 700; font-size: 15px; padding: 0 18px;
    text-transform: uppercase; height: 100%; display: flex; align-items: center; text-decoration: none;
}
.bhaskar-menu > li:hover > a { background: rgba(0,0,0,0.1); }

/* Sub Menu */
.bhaskar-menu li ul.sub-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff; min-width: 220px; z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); border-top: 3px solid #b71c1c;
    padding: 10px 0; list-style: none;
}
.bhaskar-menu li:hover ul.sub-menu { display: block; }
.bhaskar-menu li ul.sub-menu li a {
    display: block; color: #333; padding: 10px 20px; font-size: 14px;
    border-bottom: 1px solid #f5f5f5; font-weight: 500; text-decoration: none;
}
.bhaskar-menu li ul.sub-menu li a:hover { color: var(--primary); padding-left: 25px; }

/* E. News Ticker */
.news-ticker-strip {
    background: #111; width: 100%; height: 40px; display: block;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.flex-ticker { display: flex; align-items: center; height: 100%; width: 100%; }
.ticker-label {
    background: #d32f2f; color: #fff; font-weight: 800; font-size: 14px;
    padding: 0 15px; height: 40px; line-height: 40px; white-space: nowrap;
    flex-shrink: 0; position: relative; margin-right: 20px;
}
.ticker-label::after {
    content: ''; position: absolute; right: -14px; top: 0;
    border-top: 40px solid #d32f2f; border-right: 15px solid transparent;
}
.ticker-content { flex-grow: 1; overflow: hidden; color: #fff; }
.ticker-content a { color: #fff; text-decoration: none; font-size: 16px; font-weight: 800; margin: 0 10px; }
.ticker-content marquee { line-height: 40px; margin: 0; display: block; }


/* =========================================
   4. NEWS BOX CONTAINERS (RANDOM COLOR HEADER)
   ========================================= */

/* The Container Box */
.news-box-modern, .news-box {
    background: #fff;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-box-modern:hover, .news-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- HEADER STRIP --- */
.box-header-modern, .box-header {
    background: #444; 
    height: 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 0 10px 0 5px;
    width: 100%;
}

/* --- TITLE WRAPPER (Left Side) --- */
.title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

/* Title Text (ALWAYS WHITE & HIGHLIGHTED) */
.w-title, .box-title {
    background: transparent !important;
    color: #fff !important;             
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    clip-path: none !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4); 
}

/* Icon (Semi-Transparent Glow) */
.title-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}
.title-icon i {
    color: #fff; 
    font-size: 13px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* --- BUTTON (Right Side - White Pill) --- */
.more-news-btn {
    background: #fff;
    color: #333 !important; 
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.more-news-btn:hover {
    background: #000; 
    color: #fff !important;
    transform: scale(1.05);
}

.more-news-btn i { font-size: 10px; }

.box-header-modern::after { display: none !important; }

/* --- List Items --- */
.news-box-modern ul li, .news-box-modern .post-item, .news-box .widget ul li {
    padding: 15px;
    border-bottom: 1px dashed #e0e0e0;
    transition: background 0.3s ease;
}
.news-box-modern ul li:last-child { border-bottom: none; }
.news-box-modern ul li:hover { background-color: #fafafa; }

/* Images */
.news-box-modern img, .news-box img {
    border-radius: 4px; transition: transform 0.3s ease;
}
.news-box-modern ul li:hover img { transform: scale(1.05); }

/* Links */
.news-box-modern h5 a, .news-box-modern .entry-title a, .w-title a {
    color: #222; font-weight: 700; font-size: 15px; text-decoration: none;
    line-height: 1.4; display: block;
}
.news-box-modern h5 a:hover { color: #d32f2f; }

/* =========================================
   5. CARD DESIGNS
   ========================================= */

/* A. Standard Horizontal Card */
.news-card-horizontal {
    display: flex; justify-content: space-between; padding: 15px;
    border-bottom: 1px solid #f0f0f0; gap: 20px; background: #fff;
}
.news-card-horizontal:last-child { border-bottom: none; }
.nc-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.nc-cat { 
    display: inline-block; font-size: 11px; font-weight: 700; color: #fff; 
    background: var(--primary); padding: 2px 6px; border-radius: 2px; margin-bottom: 6px;
}
.nc-headline { font-size: 18px; font-weight: 700; line-height: 1.3; color: #111; margin-bottom: 5px; }
.nc-headline:hover { color: var(--primary); }
.nc-excerpt { font-size: 14px; color: #666; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Meta */
.nc-meta { margin-top: auto; display: flex; align-items: center; font-size: 12px; color: #999; }
.nc-media { width: 140px; flex-shrink: 0; }
.nc-thumb { width: 100%; height: 90px; border-radius: 4px; overflow: hidden; background: #eee; display: block; }
.nc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.nc-thumb:hover img { transform: scale(1.05); }
.nc-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 6px; }
.share-icon { font-size: 14px; color: #888; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; background: #f5f5f5; border-radius: 50%; }
.share-icon.wa { color: var(--wa-color); }
.share-icon.fb { color: var(--fb-color); }

/* B. Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; padding: 15px; }
.video-card .vid-thumb { height: 140px; border-radius: 6px; overflow: hidden; position: relative; }
.play-btn { position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); background:rgba(0,0,0,0.6); color:#fff; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.vid-title { font-size: 14px; font-weight: 600; margin-top: 8px; line-height: 1.3; }

/* C. Reels Scroll */
.reels-container { display: flex; gap: 15px; overflow-x: auto; padding: 15px; }
.reel-card { min-width: 120px; height: 210px; border-radius: 8px; position: relative; overflow: hidden; }
.reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-overlay { position: absolute; bottom:0; left:0; width:100%; background: linear-gradient(transparent, #000); padding: 10px; }
.reel-title { color: #fff; font-size: 12px; font-weight: 600; }

/* =========================================
   6. ANIMATIONS & EXTRAS
   ========================================= */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.admin-edit-link { color: red; font-size: 10px; margin-left: 5px; }


/* =========================================
   7. NEWS CARD PRO (FINAL LAYOUT & FIXES)
   ========================================= */

/* A. Card Container */
.news-card-pro {
    display: flex; justify-content: space-between;
    gap: 15px; padding: 15px;
    background: #fff; border-bottom: 1px solid #eee;
    position: relative; transition: all 0.3s ease;
    overflow: hidden; 
}

/* B. Hover Effects */
.news-card-pro:hover {
    background-color: #fcfcfc;
    animation: mildShake 0.4s ease-in-out;
}

@keyframes mildShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

/* C. Overlay Link */
.card-main-link {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; 
}

/* D. LEFT SIDE */
.nc-left {
    flex: 1; display: flex; flex-direction: column; justify-content: space-between;
}

/* Heading */
.nc-title {
    font-size: 18px; font-weight: 700; line-height: 1.35;
    margin-bottom: 8px; color: #000; pointer-events: none; 
}
.nc-title a { color: inherit; text-decoration: none; }

/* Excerpt */
.nc-excerpt {
    font-size: 14px; color: #555; line-height: 1.5;
    margin-bottom: 10px; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Meta Data */
.nc-meta-wrapper {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 10px; margin-top: auto; position: relative; z-index: 2; 
}

/* Buttons */
.meta-btn {
    font-size: 11px; font-weight: 700; color: #fff !important;
    padding: 3px 8px; border-radius: 3px;
    text-transform: uppercase; text-decoration: none;
    transition: 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.cat-btn { background: #d32f2f; }
.cat-btn:hover { background: #b71c1c; }

.loc-btn {
    background: #6200ea !important; color: #fff !important;
    margin-left: 5px;
}
.loc-btn:hover { background: #3700b3 !important; }

.title-wrap { display: flex; align-items: center; flex-grow: 0; }

/* E. RIGHT SIDE */
.nc-right {
    width: 140px; flex-shrink: 0;
    display: flex; flex-direction: column;
    gap: 5px; position: relative; z-index: 2; 
}

.nc-thumb-wrap {
    width: 100%; height: 90px; border-radius: 4px;
    overflow: hidden; position: relative; background: #eee;
}
.nc-img { width: 100%; height: 100%; object-fit: cover; }

.nc-share-bar {
    display: flex; width: 100%; justify-content: space-between;
    background: #f5f5f5; border-radius: 4px; padding: 4px;
}

.s-icon {
    flex: 1; display: flex; align-items: center; justify-content: center;
    height: 28px; font-size: 16px; color: #555;
    border-radius: 3px; transition: 0.2s;
}
.s-icon:hover { background: #fff; transform: scale(1.1); }
.s-icon.wa:hover { color: #25D366; }
.s-icon.fb:hover { color: #1877F2; }
.s-icon.tw:hover { color: #1DA1F2; }
.s-icon.cp:hover { color: #333; }

/* =========================================
   MOBILE ADJUSTMENTS (ADMIN BAR RESTORED & FIXED)
   ========================================= */
@media screen and (max-width: 600px) {
    
    .news-card-pro { padding: 12px; gap: 12px; }
    .nc-left { flex: 1; }
    .nc-right { width: 110px; }
    .nc-thumb-wrap { height: 85px; }
    .nc-excerpt { display: none !important; }
    
    .nc-title { font-size: 21px !important; line-height: 1.4; margin-bottom: 5px; }
    .nc-meta-wrapper { gap: 8px; }
    .meta-btn { font-size: 11px; padding: 3px 6px; }
    .meta-time { font-size: 11px; color:#666;}

    /* --- 1. ADMIN BAR VISIBLE & FIXED --- */
    #wpadminbar {
        display: block !important; /* Bar wapas layein */
        position: fixed !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        z-index: 999999; /* Sabse upar */
    }

    /* --- 2. HEADER STICKY BELOW ADMIN BAR --- */
    /* Mobile Admin Bar 46px ka hota hai, Header uske niche start hoga */
    .site-header {
        position: fixed !important;
        top: 46px !important; /* Admin Bar ke theek niche */
        left: 0;
        width: 100%;
        margin-top: 0 !important;
        z-index: 99999;
    }

    /* Agar Admin login nahi hai to Header Top 0 par rahe */
    body:not(.admin-bar) .site-header {
        top: 0 !important;
    }

    /* --- 3. HTML MARGIN FIX --- */
    /* WordPress ko apna margin lagane dein, hum usse ladenge nahi */
    html {
        margin-top: 0 !important; 
    }

    /* --- 4. BODY PADDING (CONTENT PUSH) --- */
    /* Admin Bar (46px) + Header Height (~130px) = Total Space needed */
    body.admin-bar {
        padding-top: 180px !important; /* Content header ke peeche na chupe */
    }
    
    /* Normal User ke liye padding kam */
    body:not(.admin-bar) {
        padding-top: 130px !important;
    }
}

/* =======================================================
   PREMIUM SINGLE PAGE DESIGN (GRID & STICKY)
   ======================================================= */

/* 1. The 3-Column Grid Layout (Custom for Single Page) */
.single-page-grid {
    display: grid;
    grid-template-columns: 60px 1fr 320px; /* Left (Share) - Center - Right */
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: start; /* Important for Sticky */
}

/* 2. STICKY SHARE BAR (Desktop) - The Magic Part */
.sticky-share-wrapper {
    position: sticky;
    top: 100px; /* Header ke neeche rukega */
    z-index: 10;
    text-align: center;
}
.sticky-share-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.share-text {
    font-size: 10px; font-weight: 800; color: #999; 
    writing-mode: vertical-rl; transform: rotate(180deg); margin-bottom: 5px; letter-spacing: 1px;
}

.ss-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.ss-icon:hover { transform: scale(1.1); color: #fff; border-color: transparent; }
.ss-icon.wa:hover { background: #25D366; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); }
.ss-icon.fb:hover { background: #1877F2; box-shadow: 0 4px 10px rgba(24, 119, 242, 0.4); }
.ss-icon.tw:hover { background: #000; }
.ss-icon.cp:hover { background: #555; }
.ss-icon.cm { flex-direction: column; font-size: 14px; height: auto; padding: 8px 0; border-radius: 20px; }
.cm-count { font-size: 10px; font-weight: 700; margin-top: 2px; }

/* 3. CENTER ARTICLE CONTENT (Clean & White) */
.article-body-area {
    min-width: 0; /* Prevents overflow */
}
.premium-article {
    background: #fff; /* Clean White */
}

/* Headlines & Meta */
.premium-meta-top { margin-bottom: 15px; display: flex; gap: 10px; align-items: center; }
.prem-cat-label { 
    color: #d32f2f; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; position: relative;
    padding-left: 15px;
}
.prem-cat-label::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px; background: #d32f2f; border-radius: 50%;
}
.prem-loc-label { color: #555; font-size: 12px; background: #f0f0f0; padding: 2px 8px; border-radius: 4px; }

.premium-title {
    font-size: 42px; /* Very Large Professional Font */
    line-height: 1.25; font-weight: 800; color: #111;
    margin-bottom: 20px; letter-spacing: -0.5px;
}

/* Author Row */
.premium-auth-row {
    padding-bottom: 20px; border-bottom: 1px solid #eee; margin-bottom: 25px;
}
.auth-left { display: flex; align-items: center; gap: 12px; }
.auth-left img { border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.auth-info { display: flex; flex-direction: column; }
.auth-name { font-weight: 700; color: #333; font-size: 14px; }
.post-time { font-size: 12px; color: #888; }

/* Image & Summary */
.premium-feat-img { margin-bottom: 30px; border-radius: 8px; overflow: hidden; }
.img-cap { background: #f9f9f9; padding: 8px; font-size: 12px; color: #666; text-align: center; border-bottom: 1px solid #eee; }

.premium-summary {
    background: #fff8e1; border-left: 4px solid #ff9800;
    padding: 20px 25px; font-size: 18px; font-weight: 500; color: #333; font-style: italic; line-height: 1.6;
    margin-bottom: 30px; border-radius: 0 4px 4px 0;
}
.summ-label { display: block; font-size: 11px; text-transform: uppercase; color: #ff9800; font-weight: 800; letter-spacing: 1px; margin-bottom: 5px; }

/* Typography - Drop Cap */
.premium-content { font-size: 20px; line-height: 1.8; color: #212121; }
.premium-content p { margin-bottom: 25px; }
.premium-content p:first-of-type::first-letter {
    font-size: 3.5em; float: left; line-height: 0.8; margin-right: 10px; color: #d32f2f; font-weight: 800;
}
.premium-content h2 { font-size: 28px; font-weight: 800; margin-top: 40px; margin-bottom: 15px; }

/* Tags */
.prem-tags { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.p-tag {
    background: #fff; border: 1px solid #ddd; color: #555; padding: 6px 15px; border-radius: 30px; font-size: 13px; font-weight: 600; transition: 0.2s;
}
.p-tag:hover { background: #111; color: #fff; border-color: #111; transform: translateY(-2px); }

/* Author Bio Box */
.author-bio-box {
    background: #f8f9fa; padding: 25px; border-radius: 8px; display: flex; gap: 20px; margin-top: 40px; border: 1px solid #eee;
}
.author-bio-box h5 { margin: 0 0 5px 0; font-weight: 700; text-transform: uppercase; color: #d32f2f; font-size: 12px; }
.author-bio-box p { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }

/* 4. RIGHT SIDEBAR STICKY */
.sticky-sidebar {
    position: sticky; top: 100px;
}

/* 5. MOBILE & TABLET RESPONSIVENESS */
.mobile-sticky-share { display: none; } /* Default Hidden on Desktop */

@media screen and (max-width: 900px) {
    .single-page-grid {
        display: flex; flex-direction: column; gap: 30px;
    }
    
    /* Hide Desktop Sticky Elements on Mobile */
    .sticky-share-wrapper { display: none; }
    
    /* Typography for Mobile */
    .premium-title { font-size: 28px; }
    .premium-content { font-size: 18px; }
    
    /* Enable Mobile Bottom Bar */
    .mobile-sticky-share {
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%;
        background: #fff; border-top: 1px solid #ddd; z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05); padding-bottom: env(safe-area-inset-bottom);
    }
    .ms-item {
        flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
        padding: 12px 0; color: #555; font-size: 18px; text-decoration: none;
    }
    .ms-item.wa { background: #25D366; color: #fff; font-weight: 600; font-size: 16px; flex: 1.5; }
    .ms-item.fb { border-left: 1px solid #eee; }
    .ms-item.tw { border-left: 1px solid #eee; }
}


/* =========================================
   SKYNEWS PREMIUM VERTICAL NAV (FIXED & POLISHED)
   ========================================= */

/* 1. Main Widget Container - Fixes Layout Issues */
.skynews-sidebar-nav {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); /* Soft Shadow like App */
    border: 1px solid #eee;
    overflow: hidden; /* Round corners fix */
    width: 100%;       /* Sidebar se bahar nahi jayega */
    max-width: 100%;
    margin-bottom: 0px;
}

/* 2. Reset List Styles (Theme conflict hatane ke liye) */
ul.sn-vertical-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sn-vertical-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f4f4f4;
}
.sn-vertical-menu li:last-child { border-bottom: none; }

/* 3. The Link Styling (Flexbox for alignment) */
.sn-vertical-menu li a {
    display: flex !important;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Mukta', sans-serif;
    transition: background 0.2s ease;
    line-height: 1.2;
}

/* Hover Effect */
.sn-vertical-menu li a:hover {
    background: #fdfdfd;
    color: #d32f2f !important;
    padding-left: 20px; /* Slight slide animation */
}

/* 4. Icon Wrapper (Left Side) */
.sn-icon-wrap {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0; /* Icon chipkega nahi */
}

/* 5. Custom Icons Colors (Bhaskar Style) */
/* Aapko Menu me "CSS Classes" add karni hongi */

/* Top News - Fire/Orange */
.sn-vertical-menu li.icon-top .sn-icon-wrap { color: #ff5722; }

/* State/City - Red Map */
.sn-vertical-menu li.icon-state .sn-icon-wrap { color: #d32f2f; }

/* Cricket - Blue Player */
.sn-vertical-menu li.icon-cricket .sn-icon-wrap { color: #1976d2; }

/* Bollywood - Purple Film */
.sn-vertical-menu li.icon-bollywood .sn-icon-wrap { color: #9c27b0; }

/* Business - Green Money */
.sn-vertical-menu li.icon-business .sn-icon-wrap { color: #388e3c; }

/* Tech - Grey Mobile */
.sn-vertical-menu li.icon-tech .sn-icon-wrap { color: #607d8b; }

/* Exclusive - Gold Star */
.sn-vertical-menu li.icon-exclusive .sn-icon-wrap { color: #fbc02d; }

/* 6. Arrow Indicator (Right Side) */
.arrow-indicator {
    margin-left: auto; /* Right side push */
    font-size: 12px;
    color: #ddd;
}
.sn-vertical-menu li a:hover .arrow-indicator { color: #d32f2f; }

/* =========================================
   HERO SLIDER CSS (REFERENCE STYLE)
   ========================================= */
.skynews-hero-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Hero Height */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Dark Gradient Overlay (Bottom) */
.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Content Typography */
.hero-content {
    position: absolute;
    bottom: 30px; left: 30px; right: 30px;
    z-index: 2;
}

.hero-cat {
    background: #d32f2f; /* Red Badge */
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-title a {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: block;
}
.hero-title a:hover { color: #f0f0f0; }

.hero-meta {
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    display: flex; gap: 15px;
}

/* Navigation Buttons (Top Right) */
.hero-nav {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 5;
    display: flex; gap: 5px;
}
.hero-nav button {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 36px; height: 36px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}
.hero-nav button:hover { background: #d32f2f; border-color: #d32f2f; }

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
    .skynews-hero-wrapper { height: 280px; }
    .hero-title a { font-size: 18px; }
    .hero-content { bottom: 15px; left: 15px; right: 15px; }
}

/* =========================================
   SIDEBAR WIDGET: PRO LIST (Reference Style)
   ========================================= */

/* 1. Wrapper */
.widget_skynews_sidebar_list {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px; /* Slight round */
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* 2. Blue Angular Header (Key Feature) */
.sn-sb-header {
    position: relative;
    background: #fff;
    border-bottom: 2px solid #1976d2; /* Blue Line at bottom */
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: center;
}

.sn-sb-title {
    background: #1976d2; /* Primary Blue */
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    z-index: 1;
}

/* The Slanted Shape */
.sn-sb-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px; /* Adjust slope width */
    width: 30px;
    height: 100%;
    background: #1976d2;
    transform: skewX(30deg); /* The Angle */
    z-index: -1;
    border-radius: 0 0 4px 0;
}

/* 3. List Container */
.sn-sb-list {
    padding: 0 15px 15px 15px;
}

/* 4. List Item (Flexbox) */
.sn-sb-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}
.sn-sb-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sn-sb-link-wrap {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2;
}

/* 5. Thumbnail Image */
.sn-sb-thumb {
    width: 90px; /* Fixed width like reference */
    height: 65px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #eee;
}
.sn-sb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
/* Hover Zoom Effect */
.sn-sb-item:hover .sn-sb-thumb img {
    transform: scale(1.1);
}

.no-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc;
}

/* 6. Content (Right Side) */
.sn-sb-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badges (Business/Finance) */
.sn-sb-meta {
    margin-bottom: 4px;
}
.sn-sb-badge {
    display: inline-block;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 2px;
    line-height: 1;
}

/* Heading */
.sn-sb-heading {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin: 0;
}
.sn-sb-heading a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.sn-sb-item:hover .sn-sb-heading a {
    color: #1976d2; /* Blue on hover */
}

/* =========================================
   SIDEBAR IMAGE WIDGET
   ========================================= */
.sn-sidebar-image-wrap {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sn-sidebar-img {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom spacing bug */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effect (Only if linked) */
a.sn-img-link:hover .sn-sidebar-img {
    opacity: 0.9;
    transform: scale(1.02);
}

/* =========================================
   WIDGET: MULTI-PURPOSE SLIDER
   ========================================= */

.sn-multi-slider-wrap {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 0px;
    overflow: hidden;
}

/* Header */
.sn-clean-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #222;
    text-transform: uppercase;
    color: #222;
}

/* Slide Visibility */
.sn-ms-slide { display: none; animation: fadeIn 0.4s ease; }
.sn-ms-slide.active { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* 1. Heading */
.sn-ms-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-weight: 700;
}
.sn-ms-title a { text-decoration: none; color: #111; }
.sn-ms-title a:hover { color: #d32f2f; }

/* 2. Media Area */
.sn-ms-media {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}
.sn-ms-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Type Specifics */
/* Type 4: Shorts (Vertical 9:16) */
.type-4 .sn-reel-frame {
    display: block;
    position: relative;
    padding-bottom: 177%; /* 9:16 Aspect Ratio */
    height: 0;
    background: #000;
}
.type-4 .sn-ms-img {
    position: absolute; top:0; left:0; width:100%; height:100%;
}

/* Type 5: Video (Horizontal 16:9) */
.type-5 .sn-video-frame {
    display: block;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}
.type-5 .sn-ms-img {
    position: absolute; top:0; left:0; width:100%; height:100%;
}

/* Play Icon Overlay */
.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    border: 2px solid #fff;
}

/* Type 3: Poll/Text Content */
.sn-ms-text-content {
    background: #fff8e1;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-left: 4px solid #ffca28;
    line-height: 1.6;
}
.read-more { display: block; margin-top: 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; color: #d32f2f; }

/* 3. Controls (Dots & Arrows) */
.sn-ms-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 5px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
.sn-prev, .sn-next {
    background: none; border: none; font-size: 16px; color: #999; cursor: pointer; padding: 5px 10px;
}
.sn-prev:hover, .sn-next:hover { color: #222; }

.sn-dots { display: flex; gap: 5px; }
.sn-dot {
    width: 8px; height: 8px; background: #ddd; border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.sn-dot.active { background: #d32f2f; transform: scale(1.2); }

/* 4. Share Bar (Full Width) */
.sn-ms-share-bar {
    display: flex;
    width: 100%;
    gap: 0; /* Connected buttons */
    border-radius: 4px;
    overflow: hidden;
}
.ms-share {
    flex: 1; /* Equal full width */
    text-align: center;
    padding: 8px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    transition: opacity 0.2s;
}
.ms-share:hover { opacity: 0.9; color: #fff; }

.ms-share.wa { background: #25D366; }
.ms-share.fb { background: #1877F2; }
.ms-share.tw { background: #000; }

/* =========================================
   MOBILE ONLY BANNER LOGIC (Type 12 Box)
   ========================================= */
.mobile-only-banner {
    display: none !important; /* Hide on Desktop */
}

@media screen and (max-width: 768px) {
    .mobile-only-banner {
        display: block !important; /* Show on Mobile */
    }
}

/* =========================================
   VISIBILITY HELPERS (Type 13 Box)
   ========================================= */
   
/* Desktop Only: Mobile par chhupao */
@media screen and (max-width: 768px) {
    .sn-desktop-only {
        display: none !important;
    }
}

/* Mobile Only: Desktop par chhupao */
@media screen and (min-width: 769px) {
    .sn-mobile-only {
        display: none !important;
    }
}


/* =====================================================
   FONT AWESOME ICON MAPPING – COLORED VERSION
   One icon = one line | Random vibrant colors
   ===================================================== */


/* ===== CORE / TOP NEWS ===== */
.sn-vertical-menu li.icon-top .sn-icon-wrap::before { content:'\f06d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ff3d00; }        /* Top News */
.sn-vertical-menu li.icon-latest .sn-icon-wrap::before { content:'\f017'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#2979ff; }     /* Latest */
.sn-vertical-menu li.icon-breaking .sn-icon-wrap::before { content:'\f0a1'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#d50000; }   /* Breaking */
.sn-vertical-menu li.icon-exclusive .sn-icon-wrap::before { content:'\f005'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ffab00; }  /* Exclusive */
.sn-vertical-menu li.icon-trending .sn-icon-wrap::before { content:'\f0e7'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00c853; }   /* Trending */
.sn-vertical-menu li.icon-related .sn-icon-wrap::before { content:'\f0c1'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#6a1b9a; }    /* Related */
.sn-vertical-menu li.icon-more .sn-icon-wrap::before { content:'\f141'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#455a64; }       /* More */


/* ===== LOCATION / GEOGRAPHY ===== */
.sn-vertical-menu li.icon-india .sn-icon-wrap::before { content:'\f57d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ff6d00; }       /* India */
.sn-vertical-menu li.icon-state .sn-icon-wrap::before { content:'\f3c5'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00897b; }       /* State / City */
.sn-vertical-menu li.icon-local .sn-icon-wrap::before { content:'\f015'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#2e7d32; }       /* Local */
.sn-vertical-menu li.icon-international .sn-icon-wrap::before { content:'\f0ac'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#1565c0; }/* International */
.sn-vertical-menu li.icon-district .sn-icon-wrap::before { content:'\f279'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#5d4037; }    /* District */


/* ===== POLITICS / LAW ===== */
.sn-vertical-menu li.icon-politics .sn-icon-wrap::before { content:'\f0e3'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#b71c1c; }     /* Politics */
.sn-vertical-menu li.icon-government .sn-icon-wrap::before { content:'\f19c'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#37474f; }  /* Government */
.sn-vertical-menu li.icon-election .sn-icon-wrap::before { content:'\f681'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#f50057; }    /* Election */
.sn-vertical-menu li.icon-law .sn-icon-wrap::before { content:'\f24e'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#4a148c; }         /* Law / Court */


/* ===== CRIME / SAFETY ===== */
.sn-vertical-menu li.icon-crime .sn-icon-wrap::before { content:'\f6e3'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#c62828; }        /* Crime */
.sn-vertical-menu li.icon-police .sn-icon-wrap::before { content:'\f3ed'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#283593; }       /* Police */
.sn-vertical-menu li.icon-accident .sn-icon-wrap::before { content:'\f5e1'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ef6c00; }    /* Accident */
.sn-vertical-menu li.icon-scam .sn-icon-wrap::before { content:'\f570'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ad1457; }        /* Scam */


/* ===== EDUCATION / CAREER ===== */
.sn-vertical-menu li.icon-education .sn-icon-wrap::before { content:'\f19d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#1e88e5; }    /* Education */
.sn-vertical-menu li.icon-exam .sn-icon-wrap::before { content:'\f02d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#3949ab; }         /* Exam */
.sn-vertical-menu li.icon-result .sn-icon-wrap::before { content:'\f091'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00838f; }       /* Result */
.sn-vertical-menu li.icon-job .sn-icon-wrap::before { content:'\f0b1'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#2e7d32; }          /* Job */


/* ===== BUSINESS / ECONOMY ===== */
.sn-vertical-menu li.icon-business .sn-icon-wrap::before { content:'\f201'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#1b5e20; }     /* Business */
.sn-vertical-menu li.icon-market .sn-icon-wrap::before { content:'\f080'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00695c; }       /* Market */
.sn-vertical-menu li.icon-budget .sn-icon-wrap::before { content:'\f155'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#2e7d32; }       /* Budget */
.sn-vertical-menu li.icon-finance .sn-icon-wrap::before { content:'\f09d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#004d40; }      /* Finance */


/* ===== SPORTS ===== */
.sn-vertical-menu li.icon-sports .sn-icon-wrap::before { content:'\f44e'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00bfa5; }       /* Sports */
.sn-vertical-menu li.icon-cricket .sn-icon-wrap::before { content:'\f70c'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#7cb342; }      /* Cricket */


/* ===== ENTERTAINMENT ===== */
.sn-vertical-menu li.icon-bollywood .sn-icon-wrap::before { content:'\f008'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#e91e63; }    /* Bollywood */
.sn-vertical-menu li.icon-entertainment .sn-icon-wrap::before { content:'\f26c'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#8e24aa; }/* Entertainment */
.sn-vertical-menu li.icon-celebrity .sn-icon-wrap::before { content:'\f007'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#f06292; }    /* Celebrity */


/* ===== TECHNOLOGY ===== */
.sn-vertical-menu li.icon-tech .sn-icon-wrap::before { content:'\f10b'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00acc1; }          /* Tech */
.sn-vertical-menu li.icon-ai .sn-icon-wrap::before { content:'\f544'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#26c6da; }            /* AI */
.sn-vertical-menu li.icon-internet .sn-icon-wrap::before { content:'\f1eb'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#039be5; }     /* Internet */


/* ===== MEDIA / FORMAT ===== */
.sn-vertical-menu li.icon-video .sn-icon-wrap::before { content:'\f03d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#d32f2f; }         /* Video */
.sn-vertical-menu li.icon-photo .sn-icon-wrap::before { content:'\f03e'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#5e35b1; }         /* Photo */
.sn-vertical-menu li.icon-live .sn-icon-wrap::before { content:'\f144'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00e676; }          /* Live */
.sn-vertical-menu li.icon-celebrity .sn-icon-wrap::before { content:'\f007'; font-family:"Font Awesome 5 Free"; font-weight:900; }    /* Celebrity */

/* ===== HEALTH / MEDICAL ===== */
.sn-vertical-menu li.icon-health .sn-icon-wrap::before { content:'\f004'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#e53935; }        /* Health */
.sn-vertical-menu li.icon-hospital .sn-icon-wrap::before { content:'\f0f8'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#1e88e5; }     /* Hospital */
.sn-vertical-menu li.icon-doctor .sn-icon-wrap::before { content:'\f0f0'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#43a047; }       /* Doctor */
.sn-vertical-menu li.icon-medicine .sn-icon-wrap::before { content:'\f484'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#8e24aa; }     /* Medicine */
.sn-vertical-menu li.icon-fitness .sn-icon-wrap::before { content:'\f44b'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#fb8c00; }      /* Fitness */
.sn-vertical-menu li.icon-yoga .sn-icon-wrap::before { content:'\f5a0'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#6d4c41; }         /* Yoga */
.sn-vertical-menu li.icon-diet .sn-icon-wrap::before { content:'\f2e7'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#2e7d32; }         /* Diet */
.sn-vertical-menu li.icon-mental-health .sn-icon-wrap::before { content:'\f5dc'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#3949ab; }/* Mental Health */
.sn-vertical-menu li.icon-corona .sn-icon-wrap::before { content:'\f7f2'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#c62828; }       /* Corona / Virus */
.sn-vertical-menu li.icon-vaccine .sn-icon-wrap::before { content:'\f48e'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#00838f; }      /* Vaccine */
.sn-vertical-menu li.icon-blood .sn-icon-wrap::before { content:'\f043'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#b71c1c; }        /* Blood */
.sn-vertical-menu li.icon-pregnancy .sn-icon-wrap::before { content:'\f77d'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#ad1457; }    /* Pregnancy */
.sn-vertical-menu li.icon-child-health .sn-icon-wrap::before { content:'\f77c'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#f06292; } /* Child Health */
.sn-vertical-menu li.icon-ayurveda .sn-icon-wrap::before { content:'\f5d2'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#558b2f; }     /* Ayurveda */
.sn-vertical-menu li.icon-emergency-health .sn-icon-wrap::before { content:'\f21e'; font-family:"Font Awesome 5 Free"; font-weight:900; color:#d50000; }/* Emergency */