/* =================================
   --- Basic Styles & Fonts ---
   ================================= */
body {
    font-family: Arial, 'Mallanna', 'Noto Sans Telugu', 'Noto Sans Devanagari', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6; /* డిఫాల్ట్ */
}
.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

/* =================================
   --- App-Like Sticky Header ---
   ================================= */
.main-header.sticky-header {
    /* 'background' డైనమిక్ (header.php) */
    color: #fff;
    padding: 5px 0;
    min-height: 60px;
    border-bottom: #c00 3px solid;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.main-header .logo-link {
    float: left;
    padding-top: 5px;
    padding-left: 5%; 
}
.main-header .logo-image {
    /* 'max-height' & 'width' డైనమిక్ (header.php) */
}
.main-header .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding-top: 10px;
    display: inline-block;
}
.main-nav.desktop-nav {
    float: right;
    padding-right: 5%;
}
.main-nav.desktop-nav ul { margin: 0; padding: 0; list-style: none; }
.main-nav.desktop-nav li { display: inline; padding: 0 15px; }
.main-nav.desktop-nav a { color: #fff; text-decoration: none; font-size: 18px; display: inline-block; padding: 10px 0; }
.menu-toggle {
    display: none; 
    float: right;
    background: #555;
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    margin-top: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5%;
}

/* =================================
   --- App-Like Slide-in Menu ---
   ================================= */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #333;
    z-index: 2000;
    transition: left 0.3s ease-in-out;
    padding-top: 50px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}
.side-menu.active { left: 0; }
.side-menu ul { list-style: none; padding: 0; margin: 0; }
.side-menu li a { display: block; color: white; text-decoration: none; font-size: 18px; padding: 15px 25px; border-bottom: 1px solid #444; }
.side-menu li a:hover { background: #444; }
.close-menu-btn { position: absolute; top: 10px; right: 20px; font-size: 30px; color: #888; background: none; border: none; cursor: pointer; }
.close-menu-btn:hover { color: white; }
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1500; display: none; }
.menu-overlay.active { display: block; }

/* =================================
   --- Homepage (Newspaper Theme) Styles ---
   ================================= */
.main-content-wrapper {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 10px;
}
.newspaper-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    padding: 5px 0 5px 5px; 
    display: flex;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    align-items: center; 
    border-radius: 5px;
    margin-bottom: 15px; 
    position: relative; 
    z-index: 10;
}
.ticker-title {
    background-color: #e74c3c; 
    box-shadow: 0 4px 0 0 #c0392b; 
    border-radius: 5px;
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 15px;
}
.ticker-news {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-news-content {
    display: block; 
    white-space: nowrap; 
    animation: ticker-horizontal-scroll 40s linear infinite;
}
.ticker-news a {
    display: inline-block; 
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0 20px;
    border-right: 1px solid #ddd;
}
.ticker-news a:hover { color: #e74c3c; }
@keyframes ticker-horizontal-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.top-slider { 
    width: 100%; 
    border-bottom: 3px solid #e21f2f; 
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 5; 
}
.swiper-slide { 
    position: relative; 
    /* 'height' డైనమిక్ (header.php) */
}
.swiper-slide img { 
    /* 'height' & 'width' డైనమిక్ (header.php) */
    object-fit: cover; 
}
.slide-caption { 
    position: absolute; 
    bottom: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    width: 100%; 
    padding: 20px; 
    color: #fff; 
    font-size: 24px; 
    font-weight: bold;
}
.section-block { 
    background: #fff; 
    margin-bottom: 20px; 
    border-radius: 5px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    overflow: hidden; 
}
.section-header { 
    /* background: #e74c3c;  <-- డైనమిక్ రంగు కోసం ఇది తీసివేయబడింది */
    color: #fff; 
    padding: 10px 15px; 
    font-weight: bold; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.section-header a { color: #fff; text-decoration: none; font-size: 14px; }
.news-list-view { padding: 15px; }
.list-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.list-item:last-child { border-bottom: none; margin-bottom: 0; }
.list-item a { text-decoration: none; color: inherit; display: flex; width: 100%; }
.list-item-image {
    flex: 0 0 120px;
    height: 80px;
    margin-right: 15px;
}
.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.list-item-content { flex: 1; }
.list-item-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
    color: #222;
}
.list-item a:hover h3 { color: #e74c3c; } 
.lead-story-grid {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.lead-story a { text-decoration: none; color: inherit; }
.lead-story img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
.lead-story h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.lead-story:hover h2 { color: #e74c3c; }
.sidebar-manual-ad {
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box; 
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sidebar-manual-ad img {
    width: 100%; 
    height: auto;
}

/* =================================
   --- Single Article Page Styles ---
   ================================= */
.main-content { padding-top: 20px; }
.full-article { background: #fff; padding: 25px; border: 1px solid #ddd; box-shadow: 0 0 10px rgba(0,0,0,0.1); max-width: 800px; margin: 20px auto; }
.article-category { background: #c00; color: #fff; padding: 3px 8px; font-size: 14px; font-weight: bold; text-transform: uppercase; }
.article-image { width: 100%; height: auto; max-height: 400px; object-fit: cover; margin-bottom: 20px; border-radius: 5px; }
.title-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 5px solid #e74c3c;
}
.full-article h1 {
    /* 'font-family' & 'color' డైనమిక్ (header.php) */
    font-weight: 700;
    font-size: 38px;
    margin: 0;
    line-height: 1.2 !important;
}
.post-meta {
    margin: 15px 0;
    font-size: 14px;
    color: #777;
}
.post-meta span {
    margin-right: 15px;
}
.post-meta i {
    margin-right: 5px;
    color: #e74c3c;
}
.article-content {
    /* 'font-family' & 'line-height' డైనమిక్ (header.php) */
    font-size: 20px;
    text-align: justify;
    color: #333;
}
.article-content p, .article-content div, .article-content span {
    /* 'font-family' & 'line-height' డైనమిక్ (header.php) */
    font-size: 20px !important;
}

/* =================================
   --- Like, Share & Subscribe Styles ---
   ================================= */

/* === Like Button === */
.post-actions-container {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}
.like-btn {
    background-color: #007bff;
    box-shadow: 0 4px 0 0 #0056b3;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.like-btn:hover {
    background-color: #0069d9;
}
.like-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 0;
}
.like-btn:disabled {
    background-color: #28a745; /* గ్రీన్ (Liked) */
    box-shadow: 0 4px 0 0 #1e7e34;
    cursor: not-allowed;
}
.like-count {
    display: inline-block;
    background: #fff;
    color: #007bff;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 16px;
}

.social-share-container { margin: 20px 0; padding-top: 20px; border-top: 1px solid #eee; }
.social-share-container h3 { font-size: 18px; margin-bottom: 15px; color: #555; text-align: center; }
.share-buttons-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
    justify-content: center;
}
.share-btn {
    display: inline-block;
    text-decoration: none;
    color: white !important;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0;
    border: none;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    transition: all 0.15s ease;
    cursor: pointer;
}
.share-btn i {
    margin-right: 8px;
}
.share-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 0;
}
.share-facebook { background-color: #3b5998; box-shadow: 0 2px 0 0 #2d4373; }
.share-x { background-color: #000000; box-shadow: 0 2px 0 0 #333; }
.share-whatsapp { background-color: #25D366; box-shadow: 0 2px 0 0 #1ebe58; }
.share-telegram { background-color: #0088cc; box-shadow: 0 2px 0 0 #006daa; }
.share-email { background-color: #777777; box-shadow: 0 2px 0 0 #555; }
.share-copy { background-color: #007bff; box-shadow: 0 2px 0 0 #0056b3; }
.tags-container { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.tags-container h3 { font-size: 18px; margin-bottom: 10px; color: #555; text-transform: uppercase; }
.tag-link { display: inline-block; background-color: #f0f0f0; color: #555; padding: 5px 12px; margin-right: 5px; margin-bottom: 5px; border-radius: 4px; text-decoration: none; font-size: 14px; transition: background-color 0.2s ease; }
.tag-link:hover { background-color: #ddd; color: #222; }
.subscribe-box-container {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}
.subscribe-box-container h3 {
    font-weight: bold;
    color: #333;
    margin-top: 0;
}
.subscribe-box-container p {
    color: #666;
    font-size: 15px;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.subscribe-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    flex: 1;
}
.subscribe-form button {
    padding: 12px 20px;
    font-size: 16px;
}
.subscribe-message.success {
    color: green;
    font-weight: bold;
}
.subscribe-message.error {
    color: #e74c3c; /* రెడ్ */
    font-weight: bold;
}
@media (min-width: 768px) {
    .subscribe-form {
        flex-direction: row;
    }
}

/* =================================
   --- Footer (కొత్త ప్రొఫెషనల్ స్టైల్) ---
   ================================= */
.main-footer {
    background: #333; /* హెడర్ రంగులాగే */
    color: #ccc;
    padding: 40px 0 20px 0;
    margin-top: 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* మొబైల్ డిఫాల్ట్ */
    gap: 30px;
    margin-bottom: 30px;
}
.footer-widget .widget-title {
    /* 'font-family' డైనమిక్ (header.php) */
    font-family: 'Ramabhadra', serif; 
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.footer-widget p {
    font-size: 16px;
    line-height: 1.7;
}
.links-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-widget a {
    color: #ccc;
    padding: 5px 0;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}
.links-widget a:hover {
    color: #fff;
}
.social-widget .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
}
/* ఫూటర్ సోషల్ బటన్ల సైజును కొద్దిగా చిన్నదిగా మార్చడం */
.social-widget .share-btn {
    padding: 5px 10px;
    font-size: 14px;
}
.social-widget .share-btn i {
    margin-right: 5px;
}

.footer-copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}
.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 కాలమ్స్ ఫూటర్ */
    }
}

/* =================================
   --- Mobile Responsive (Media Queries) ---
   ================================= */
@media(max-width: 768px) {
    .main-nav.desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .newspaper-layout {
        grid-template-columns: 1fr;
    }
    .main-header .logo-link {
        padding-left: 5%;
        padding-top: 15px;
    }
    .slide-caption { font-size: 18px; }
    
    .ticker-title { 
        font-size: 12px;
        padding: 8px 10px;
    }
}
@media(max-width: 600px) {
    /* (ఖాళీ) */
}
/* === పోస్ట్ వెడల్పు పెంచడానికి (Width Increase) === */

.main-content-wrapper {
    max-width: 1140px !important;
    margin: 0 auto;
}

.full-article {
    max-width: 100% !important;
}

/* === హైలైట్ (Bold) పదాలకు రంగు === */
.article-content strong, 
.article-content b {
    color: #D32F2F !important; /* ఎరుపు రంగు */
    font-weight: 800;
}
.download-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-btn:hover {
    background-color: #0056b3;
}
/* =================================
   --- Related Posts Styles (Updated) ---
   ================================= */
.related-posts-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.related-posts-container h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}
.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.related-post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}
.related-post-item a:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* === ⭐ సమస్యను పరిష్కరించే ముఖ్యమైన కోడ్ === */
.related-post-image {
    width: 100%;
    height: 120px !important; /* ఎత్తును 120px కి బలవంతంగా మారుస్తుంది */
    overflow: hidden;
}
.related-post-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* చిత్రాన్ని సాగదీయకుండా సరిగ్గా క్రాప్ చేస్తుంది */
}
/* === ⭐ కోడ్ ముగింపు === */

.related-post-content {
    padding: 15px;
}
.related-post-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #222;
}
.related-post-item a:hover h4 {
    color: #e74c3c; 
}

/* మొబైల్ కోసం (1 కాలమ్) */
@media (max-width: 600px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================
   --- Header Alignment & Style Fix ---
   ================================= */

/* 1. హెడర్ అలైన్‌మెంట్ సరిచేయడం */
.main-header .container {
    display: flex;
    justify-content: space-between; /* లోగో ఎడమవైపు, మెనూ కుడివైపు */
    align-items: center; /* అన్నింటినీ నిలువుగా మధ్యలో ఉంచుతుంది */
    width: 90%;
    margin: auto;
    overflow: visible; /* పాత 'hidden' ను ఓవర్‌రైడ్ చేయండి */
}

/* 2. పాత float స్టైల్స్‌ను తీసివేయడం */
.main-header .logo-link,
.main-nav.desktop-nav,
.menu-toggle {
    float: none;
    margin-top: 0;
    margin-bottom: 0;
}

/* 3. లోగో ప్యాడింగ్‌ను సర్దుబాటు చేయడం */
.main-header .logo-link {
    padding-top: 5px;
    padding-left: 0; /* కంటైనర్ ఇప్పటికే 5% ప్యాడింగ్ ఇస్తుంది */
}

/* 4. డెస్క్‌టాప్ నావిగేషన్‌ను సర్దుబాటు చేయడం */
.main-nav.desktop-nav {
    padding-right: 0;
}

/* 5. మెనూ టోగుల్ బటన్‌ను ఆకర్షణీయంగా మార్చడం */
.menu-toggle {
    background: transparent; /* గ్రే రంగు తీసివేయండి */
    color: #ffffff; /* తెలుపు ఐకాన్ */
    border: 2px solid #ffffff; /* తెలుపు బోర్డర్ */
    font-size: 20px;
    padding: 8px 10px;
    border-radius: 8px; /* కొంచెం గుండ్రని అంచులు */
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0; /* కంటైనర్ ప్యాడింగ్ చూసుకుంటుంది */
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2); /* అందమైన హోవర్ ఎఫెక్ట్ */
}

/* పాత కోడ్‌ను ఓవర్‌రైడ్ చేయడానికి మొబైల్ స్టైల్స్‌ను మళ్లీ డిఫైన్ చేయడం */
@media (max-width: 768px) {
    .main-nav.desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block; /* ఇది ఇప్పటికే ఉంది, కానీ నిర్ధారణ కోసం */
    }
}
/* =================================
   --- Header Search Bar Styles (Revised) ---
   ================================= */

/* 1. డెస్క్‌టాప్ సెర్చ్ బార్ */
.header-search-form {
    display: flex;
    margin-left: 15px; /* మెనూ నుండి కొంచెం దూరం */
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.header-search-form input[type="text"] {
    border: none;
    padding: 8px 10px; /* పాత ప్యాడింగ్ */
    font-size: 13px; /* పాత ఫాంట్ సైజు */
    color: #333;
    outline: none;
    width: 90px; /* ⭐ మీరు అడిగినట్లుగా వెడల్పు మాత్రమే తగ్గించబడింది */
}
.header-search-form button {
    background: #e74c3c; /* మీ థీమ్ ఎరుపు రంగు */
    border: none;
    color: white;
    padding: 8px 12px; /* పాత ప్యాడింగ్ */
    cursor: pointer;
    font-size: 14px; /* పాత ఫాంట్ సైజు */
}
.header-search-form button:hover {
    background: #c0392b;
}

/* 2. మొబైల్ (సైడ్ మెనూ) సెర్చ్ బార్ */
.header-search-form-mobile {
    display: flex;
    padding: 10px 20px;
}
.header-search-form-mobile input[type="text"] {
    flex: 1; 
    border: 1px solid #777;
    background: #555;
    color: #fff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    font-size: 12px;
    outline: none;
}
.header-search-form-mobile button {
    background: #e74c3c;
    border: none;
    color: white;
    padding: 0 15px;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* మొబైల్ వీక్షణలో డెస్క్‌టాప్ సెర్చ్ బార్‌ను దాచడం */
@media (max-width: 768px) {
    .header-search-form {
        display: none; 
    }
}
/* =================================
   --- Modern Footer Styles (Updated) ---
   ================================= */

/* 1. ఫూటర్ గ్రిడ్‌ను 3 నుండి 4 కాలమ్‌లకు మార్చడం */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 కాలమ్స్ */
        gap: 25px; /* కొంచెం గ్యాప్ */
    }
}
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr; /* మొబైల్‌లో 1 కాలమ్ */
        gap: 30px;
    }
}

/* 2. ఫూటర్ కాపీరైట్ సెంటర్‌కు మార్చడం */
.footer-copyright {
    text-align: center;
}

/* 3. సోషల్ ఐకాన్ల సమస్యను పరిష్కరించడం */
.social-widget .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; 
}

/* పాత 'share-btn' కు బదులుగా కొత్త ఐకాన్ స్టైల్స్ */
.footer-social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* గుండ్రని ఐకాన్లు */
    color: #fff !important;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}
.footer-social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* రంగులు (పాత share-btn నుండి) */
.footer-social-icon.footer-facebook {
    background-color: #3b5998;
}
.footer-social-icon.footer-x {
    background-color: #000000;
}
.footer-social-icon.footer-youtube {
    background-color: #FF0000;
}
/* =================================
   --- Footer Font & Layout Hotfix ---
   ================================= */

/* 1. ఫాంట్ సైజులను బలవంతంగా తగ్గించడం */
.footer-widget .widget-title {
    font-size: 1.4rem !important; /* 22px */
}
.footer-widget p {
    font-size: 16px !important;
}
.links-widget a {
    font-size: 16px !important;
}
.footer-copyright p {
    font-size: 14px !important;
}

/* 2. మొబైల్ లేఅవుట్‌ను సరిచేయడం */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr !important; /* మొబైల్‌లో ఒకే కాలమ్ */
        gap: 30px !important;
    }
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr) !important; /* డెస్క్‌టాప్‌లో 4 కాలమ్‌లు */
    }
}
/* =================================
   --- Video Player Styles ---
   ================================= */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 5px;
    margin-bottom: 20px;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-container video {
    width: 100%;
    height: auto;
}
/* =================================
   --- e-Paper Clip Button Style ---
   ================================= */
.cm-button-wrapper {
    text-align: center;
    margin: 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.cm-view-clipping-btn {
    /* మీ పాత like-btn స్టైల్స్ లాగా 3D ఎఫెక్ట్ ఇద్దాం */
    background-color: #e74c3c; /* Red Color */
    box-shadow: 0 4px 0 0 #c0392b; /* Darker Red 3D Shadow */
    color: white !important;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none !important;
    transition: all 0.15s ease;
    display: inline-block;
}

.cm-view-clipping-btn:hover {
    background-color: #c0392b;
}

.cm-view-clipping-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 0; /* 3D షాడోను తీసివేయడం */
}
/* =================================
   --- Single Post Edge-to-Edge & Icons ---
   ================================= */

/* 1. మొబైల్‌లో పూర్తి వెడల్పు (Edge-to-Edge) */
@media (max-width: 768px) {
    .main-content-wrapper {
        /* పాత max-width: 1140px ను ఓవర్‌రైడ్ చేయండి */
        max-width: 100% !important; 
        padding: 0;
        margin: 0;
    }
    .full-article {
        /* పాత max-width: 100% */
        padding: 15px; /* అంచులకు కొద్దిగా గ్యాప్ */
        border: none;
        box-shadow: none;
        margin: 0;
        
        /* మీ పాత ఫైల్ నుండి max-width: 800px ను ఓవర్‌రైడ్ చేయండి */
        max-width: 100% !important; 
    }
    .article-image {
        /* మొబైల్‌లో ఇమేజ్‌కు అంచులు లేకుండా చేయండి */
        border-radius: 0;
    }
}

/* 2. కొత్త సోషల్ ఐకాన్ స్టైల్స్ */
.full-article .social-share-container {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: left; /* సెంటర్ నుండి ఎడమకు */
}
.full-article .social-share-container h3 {
    display: none; /* "Share this Article" హెడ్డింగ్ దాచండి */
}
.full-article .share-buttons-container {
    justify-content: flex-start; /* ఐకాన్‌లను ఎడమవైపుకు */
    gap: 12px;
}

/* పాత .share-btn స్టైల్‌ను పూర్తిగా ఓవర్‌రైడ్ చేయండి */
.full-article .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* గుండ్రంగా */
    padding: 0;
    font-size: 0; /* టెక్స్ట్‌ను దాచండి */
    box-shadow: none; /* 3D నీడను తీసివేయండి */
    
    /* ఐకాన్‌ను మధ్యలో పెట్టడానికి */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.full-article .share-btn i {
    margin-right: 0; /* ఐకాన్ పక్కన ఖాళీ తీసివేయండి */
    font-size: 18px; /* ఐకాన్‌ను మళ్లీ చూపించు */
}
.full-article .share-btn:active {
    transform: translateY(1px); /* చిన్న క్లిక్ ఎఫెక్ట్ */
}
/* =================================
   --- Homepage Section Header (Disha Style) ---
   ================================= */
.section-header { 
    /* background: index.php నుండి డైనమిక్‌గా వస్తుంది */
    color: #fff; 
    padding: 10px 15px; 
    font-weight: bold; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 18px; /* కొంచెం పెద్ద ఫాంట్ */
    border-radius: 5px 5px 0 0; /* టాప్ కార్నర్స్ రౌండ్ */
}
.section-header a { 
    color: #fff !important; /* లింక్ రంగు ఎల్లప్పుడూ తెలుపు */
    text-decoration: none; 
    font-size: 14px; 
    font-weight: bold;
    background: rgba(0,0,0,0.15); /* "More" బటన్ కోసం కొద్దిగా డార్క్ బ్యాక్‌గ్రౌండ్ */
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.section-header a:hover {
    background: rgba(0,0,0,0.3);
    color: #fff !important;
}
.section-block {
    border-radius: 5px; /* మొత్తం బ్లాక్‌కు రౌండ్ కార్నర్స్ */
}

/* =================================
   --- Single Post Button Fixes ---
   ================================= */

/* e-Paper & Like బటన్లను ఒకే వరుసలో పెట్టండి */
.post-actions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* బటన్ల మధ్య గ్యాప్ */
}

/* e-Paper బటన్ స్టైల్ (చిన్నదిగా) */
.cm-view-clipping-btn.small-btn {
    background-color: #5bc0de; /* Info Blue */
    box-shadow: 0 4px 0 0 #31b0d5;
    color: white !important;
    padding: 8px 15px; /* చిన్న ప్యాడింగ్ */
    font-size: 14px; /* చిన్న ఫాంట్ */
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none !important;
    transition: all 0.15s ease;
    display: inline-block;
}
.cm-view-clipping-btn.small-btn:hover {
    background-color: #31b0d5;
    color: white !important;
}
.cm-view-clipping-btn.small-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 0;
}

/* సబ్‌స్క్రైబ్ బటన్ పరిష్కారం */
.subscribe-btn {
    background-color: #007bff;
    box-shadow: 0 4px 0 0 #0056b3;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.subscribe-btn:hover {
    background-color: #0069d9;
}
.subscribe-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 0;
}
/* =================================
   --- Ticker & Section Header (Disha Style) ---
   ================================= */

/* 1. Ticker (Edge-to-Edge & Simple) */
.ticker-wrap-container {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.ticker-wrap {
    max-width: 1200px; /* ఇది మీ .main-content-wrapper వెడల్పుతో సరిపోతుంది */
    margin: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 5px 0;
}
.ticker-title {
    background-color: #e74c3c;
    box-shadow: none; /* 3D నీడను తీసివేయబడింది */
    border-radius: 5px;
}

/* 2. Section Header (Disha Style) */
.section-header { 
    /* background: index.php నుండి డైనమిక్‌గా వస్తుంది */
    color: #fff; 
    padding: 10px 15px; 
    font-weight: bold; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 18px;
    border-radius: 5px 5px 0 0;
    /* "దిశ" సైట్ లాగా కింద గీత */
    border-bottom: 3px solid rgba(0,0,0,0.15); 
}
.section-header a { 
    color: #fff !important; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: bold;
    /* "More" బటన్ స్టైల్ */
    background: rgba(0,0,0,0.15); 
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.section-header a:hover {
    background: rgba(0,0,0,0.3);
    color: #fff !important;
}
.section-block {
    border-radius: 5px; /* మొత్తం బ్లాక్‌కు రౌండ్ కార్నర్స్ */
}

/* 3. Slider (మొబైల్‌లో కొంచెం చిన్నదిగా) */
@media (max-width: 768px) {
    .swiper-slide {
        /* మీ పాత కోడ్‌లో 250px ఉంది, దానిని 220px కి మారుస్తున్నాం */
        height: 220px !important; 
    }
}
/* =================================
   --- Homepage Section Header (Disha Style v2) ---
   ================================= */

/* 1. పాత సెక్షన్ బ్లాక్ (మార్పు లేదు) */
.section-block {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* 2. ⭐ కొత్త హెడర్ స్టైల్ (లేత గ్రే బ్యాక్‌గ్రౌండ్) ⭐ */
.section-header { 
    background: #f9f9f9 !important; /* ⭐ "దిశ" లాగా లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    padding: 10px 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid #eee; /* గీత */
    margin-bottom: 10px;
}

/* 3. టైటిల్ (span) ను "టాప్ స్టోరీస్" ట్యాబ్ లాగా మార్చడం */
.section-header span {
    /* background: index.php నుండి సాలిడ్ రంగు వస్తుంది */
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 6px 15px;
    border-radius: 4px;
}

/* 4. "More >" బటన్ స్టైల్ */
.section-header a { 
    color: #555 !important; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: bold;
    background: #ebebeb; /* బటన్ రంగు కొద్దిగా మార్చబడింది */
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.section-header a:hover {
    background: #e0e0e0;
    color: #000 !important;
}

/* 5. లిస్ట్ వ్యూ నుండి అనవసరమైన ప్యాడింగ్ తీసివేయడం (మార్పు లేదు) */
.news-list-view { 
    padding: 0 15px 15px 15px;
}
.lead-story-grid {
    padding: 0 15px 15px 15px;
}

/* 6. సైడ్‌బార్ "More >" బటన్‌ను దాచడం (మార్పు లేదు) */
.sidebar-column .section-header a {
    display: none;
}
.sidebar-column .section-header {
    justify-content: center;
}
/* =================================
   --- Homepage Section Header (Disha Style v3 - Corrected) ---
   ================================= */

/* 1. పాత సెక్షన్ బ్లాక్ (మార్పు లేదు) */
.section-block {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* 2. ⭐ కొత్త హెడర్ స్టైల్ (బ్యాక్‌గ్రౌండ్ తీసివేయబడింది) ⭐ */
.section-header { 
    background: transparent !important; /* ⭐ పాత గ్రే రంగు తీసివేయబడింది */
    padding: 10px 15px; /* ప్యాడింగ్ సరిదిద్దబడింది */
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid #f0f0f0; /* లైట్ గీత */
    margin-bottom: 10px;
}

/* 3. టైటిల్ (span) ను "టాప్ స్టోరీస్" ట్యాబ్ లాగా మార్చడం */
.section-header span {
    /* background: index.php నుండి డైనమిక్‌గా వస్తుంది */
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 15px; /* ప్యాడింగ్ సర్దుబాటు */
    border-radius: 4px;
}

/* 4. ⭐ "More >" బటన్ స్టైల్ (Pill Shape) ⭐ */
.section-header a { 
    color: #555 !important; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: bold;
    background: #e9ecef; /* ⭐ లేత గ్రే రంగు */
    padding: 8px 15px; /* ప్యాడింగ్ సర్దుబాటు */
    border-radius: 20px; /* ⭐ Pill-shape కోసం */
    transition: background 0.2s ease;
}
.section-header a:hover {
    background: #dee2e6;
    color: #000 !important;
}

/* 5. లిస్ట్ వ్యూ (మార్పు లేదు) */
.news-list-view { 
    padding: 0 15px 15px 15px;
}
.lead-story-grid {
    padding: 0 15px 15px 15px;
}

/* 6. సైడ్‌బార్ (మార్పు లేదు) */
.sidebar-column .section-header a {
    display: none;
}
.sidebar-column .section-header {
    justify-content: center;
}
/* =================================
   --- Homepage Section Header (Disha Style v4 - Corrected) ---
   ================================= */

/* 1. పాత సెక్షన్ బ్లాక్ (మార్పు లేదు) */
.section-block {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* 2. ⭐ కొత్త హెడర్ స్టైల్ (లేత నీలం బ్యాక్‌గ్రౌండ్) ⭐ */
.section-header { 
    background: #f0f5fa !important; /* ⭐ మీరు అడిగిన లేత నీలం రంగు */
    padding: 10px 15px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid #e8eef3; /* కొంచెం డార్క్ బ్లూ గీత */
    margin-bottom: 10px;
}

/* 3. టైటిల్ (span) ను "టాప్ స్టోరీస్" ట్యాబ్ లాగా మార్చడం */
.section-header span {
    /* background: index.php నుండి డైనమిక్‌గా వస్తుంది */
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 4px;
}

/* 4. "More >" బటన్ స్టైల్ (Pill Shape) */
.section-header a { 
    color: #555 !important; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: bold;
    background: #e9ecef; 
    padding: 8px 15px;
    border-radius: 20px; /* Pill-shape */
    transition: background 0.2s ease;
}
.section-header a:hover {
    background: #dee2e6;
    color: #000 !important;
}

/* 5. లిస్ట్ వ్యూ (మార్పు లేదు) */
.news-list-view { 
    padding: 0 15px 15px 15px;
}
.lead-story-grid {
    padding: 0 15px 15px 15px;
}

/* 6. సైడ్‌బార్ (మార్పు లేదు) */
.sidebar-column .section-header a {
    display: none;
}
.sidebar-column .section-header {
    justify-content: center;
}
/* =================================
   --- Single Post Ad Unit Style ---
   ================================= */

.article-ad-unit {
    /* యాడ్‌ను మధ్యలో ఉంచండి మరియు కంటెంట్ నుండి గ్యాప్ ఇవ్వండి */
    margin: 20px auto;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    min-height: 100px; /* యాడ్ లోడ్ అయ్యేలోపు ఖాళీ స్థలం */
}
/* =================================
   --- "Eenadu" Style Header Redesign (v1) ---
   ================================= */

/* 1. పాత హెడర్‌ను దాచండి */
.main-header.sticky-header {
    display: none;
}

/* 2. కొత్త టాప్ హెడర్ (Red Bar) */
.header-top-bar {
    background-color: var(--header-bg-color); /* Admin నుండి రంగు */
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    height: 60px;
}
.header-left, .header-right {
    flex: 1 0 50px; /* వెడల్పు 50px */
}
.header-center {
    flex: 1 1 auto; /* మిగిలిన స్థలాన్ని తీసుకోండి */
    text-align: center;
}
.header-center .logo-link {
    padding: 0;
    display: inline-block;
}
.header-center .logo-image {
    max-height: 50px; /* లోగో ఎత్తు */
    width: auto;
    object-fit: contain;
}
.header-center .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

/* 3. కొత్త ఐకాన్లు (Left & Right) */
.header-menu-toggle, 
.header-search-icon {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}
.header-right {
    text-align: right;
}

/* 4. కొత్త బాటమ్ హెడర్ (Yellow Bar) */
.header-bottom-bar {
    background-color: #f7b731; /* Yellow */
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 3px rgba(0,0,0,0.05);
    overflow-x: auto; /* మొబైల్‌లో స్క్రోల్ చేయడానికి */
    white-space: nowrap;
}
.header-bottom-nav {
    max-width: 1200px;
    margin: 0 auto;
}
.header-bottom-nav ul {
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: flex;
}
.header-bottom-nav li {
    display: inline-block;
}
.header-bottom-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}
.header-bottom-nav a:hover {
    color: #000;
    border-bottom-color: var(--header-bg-color); /* Red */
}
.header-bottom-nav a i.fas.fa-home {
    font-size: 18px;
}

/* 5. మొబైల్ కోసం సర్దుబాట్లు */
@media (max-width: 768px) {
    .header-top-inner {
        height: 55px;
    }
    .header-center .logo-image {
        max-height: 45px;
    }
    /* "ఈనాడు" లాగా, మొబైల్‌లో యెల్లో బార్‌ను దాచండి */
    .header-bottom-bar {
        display: none;
    }
    /* పాత సెర్చ్ ఫారమ్‌ను దాచండి (ఒకవేళ ఉంటే) */
    .header-search-form {
        display: none;
    }
}
/* =================================
   --- "Eenadu" Style Ticker (v1) ---
   ================================= */

/* 1. పూర్తి వెడల్పు రెడ్ కంటైనర్ */
.ticker-wrap-container {
    width: 100%;
    background-color: #D32F2F; /* ఈనాడు ఎరుపు రంగు */
    border-bottom: 1px solid #B71C1C;
    box-sizing: border-box;
}

/* 2. పాత టిక్కర్ స్టైల్స్‌ను ఓవర్‌రైడ్ చేయండి */
.ticker-wrap {
    max-width: 1200px; /* మీ మెయిన్ కంటెంట్‌తో అలైన్ చేయడానికి */
    margin: auto;
    padding: 5px 10px;
    
    /* పాత 3D స్టైల్స్‌ను తీసివేయండి */
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important; /* కంటైనర్ రంగును వాడండి */
    margin-bottom: 0 !important; 
}

/* 3. "బ్రేకింగ్" టైటిల్ స్టైల్ */
.ticker-title {
    background-color: #B71C1C; /* కొంచెం డార్క్ రెడ్ */
    box-shadow: none !important; /* 3D షాడో తీసివేయబడింది */
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: bold;
}

/* 4. స్క్రోలింగ్ టెక్స్ట్ స్టైల్ */
.ticker-news a {
    color: #fff !important; /* ఎరుపు బ్యాక్‌గ్రౌండ్‌పై తెలుపు టెక్స్ట్ */
    font-weight: bold;
    padding: 0 15px;
    border-right: 1px solid rgba(255,255,255,0.3);
}
.ticker-news a:hover {
    color: #f0f0f0 !important; 
    text-decoration: underline;
}
/* =================================
   --- "Eenadu" Style Sticky Footer ---
   ================================= */

/* 1. కొత్త స్టిక్కీ ఫూటర్ స్టైల్ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* ఫూటర్ ఎత్తు */
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-bottom-nav .nav-item {
    flex: 1; /* 3 ఐటమ్స్‌ను సమానంగా పంచండి */
    text-align: center;
    text-decoration: none;
    color: #555;
    padding: 5px 0;
    font-family: Arial, sans-serif;
    
    /* బటన్ స్టైల్స్‌ను రీసెట్ చేయండి (Menu బటన్ కోసం) */
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item span {
    display: block;
    font-size: 11px;
    font-weight: bold;
}

.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

/* 2. మొబైల్‌లో పాత ఫూటర్‌ను దాచండి */
@media (max-width: 768px) {
    .main-footer {
        display: none; /* పాత ఫూటర్‌ను దాచండి */
    }
    body {
        padding-bottom: 60px; /* కొత్త ఫూటర్ కోసం ఖాళీ స్థలం */
    }
}

/* 3. డెస్క్‌టాప్‌లో కొత్త ఫూటర్‌ను దాచండి */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none; /* డెస్క్‌టాప్‌లో స్టిక్కీ ఫూటర్‌ను దాచండి */
    }
}
/* =================================
   --- "Eenadu" Style Sticky Footer (Fixed) ---
   ================================= */

/* 1. కొత్త స్టిక్కీ ఫూటర్ స్టైల్ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* ⭐ డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #555;
    padding: 5px 0;
    font-family: Arial, sans-serif;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 3px;
}

.mobile-bottom-nav .nav-item span {
    display: block;
    font-size: 11px;
    font-weight: bold;
}

.mobile-bottom-nav .nav-item:hover {
    color: #000;
}


/* 2. ⭐ మొబైల్ కోసం సరిదిద్దబడిన కోడ్ ⭐ */
@media (max-width: 768px) {
    /* 2a. స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    
    /* 2b. పాత ఫూటర్‌ను దాచవద్దు, కానీ బాటమ్ ప్యాడింగ్ ఇవ్వండి */
    .main-footer {
        display: block !important; /* పాత 'display: none' ను ఓవర్‌రైడ్ చేయండి */
    }
    
    /* 2c. స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}
/* =================================
   --- "Eenadu" Style Footer (New) ---
   ================================= */

/* 1. పాత ఫూటర్‌ను ఓవర్‌రైడ్ చేయండి */
.main-footer {
    background: #f0f2f5 !important; /* లేత గ్రే బ్యాక్‌గ్రౌండ్ */
    color: #333 !important;
    padding: 20px 0 10px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.footer-grid {
    display: none; /* పాత 4-కాలమ్ గ్రిడ్‌ను పూర్తిగా దాచండి */
}

/* 2. కొత్త లింక్ బార్స్ (Features, Other) */
.footer-links-bar {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.8;
}
.footer-links-bar b {
    color: #000;
}
.footer-links-bar a {
    color: #333;
    text-decoration: none;
    padding: 0 5px;
}
.footer-links-bar a:hover {
    text-decoration: underline;
}

/* 3. కొత్త సోషల్ ఐకాన్లు (గుండ్రంగా) */
.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.footer-social-new .social-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.footer-social-new .social-icon:hover {
    opacity: 0.8;
}
.footer-social-new .social-icon.fb { background-color: #3b5998; }
.footer-social-new .social-icon.tw { background-color: #000000; }
.footer-social-new .social-icon.ig { background-color: #E4405F; }
.footer-social-new .social-icon.gn { background-color: #4285F4; }
.footer-social-new .social-icon.yt { background-color: #FF0000; }

/* 4. కాంటాక్ట్ మరియు కాపీరైట్ */
.footer-contact-info {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 0;
}
.footer-contact-info p {
    margin: 0;
}
.footer-copyright-new {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}
.footer-copyright-new p {
    margin: 0;
}


/* =================================
   --- "Eenadu" Style Sticky Footer (Fix) ---
   ================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    background: #ffffff;
    display: none; /* డెస్క్‌టాప్‌లో దాచబడింది */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-bottom-nav .nav-item {
    flex: 1; text-align: center; text-decoration: none;
    color: #555; padding: 5px 0; font-family: Arial, sans-serif;
    background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav .nav-item i {
    font-size: 20px; display: block; margin-bottom: 3px;
}
.mobile-bottom-nav .nav-item span {
    display: block; font-size: 11px; font-weight: bold;
}
.mobile-bottom-nav .nav-item:hover {
    color: #000;
}

@media (max-width: 768px) {
    /* స్టిక్కీ ఫూటర్‌ను చూపించు */
    .mobile-bottom-nav {
        display: flex; 
    }
    /* మెయిన్ ఫూటర్‌ను దాచవద్దు */
    .main-footer {
        display: block !important; 
    }
    /* స్టిక్కీ ఫూటర్ కోసం ఖాళీ స్థలం */
    body {
        padding-bottom: 60px !important; 
    }
}