/*
Theme Name: Vyapar Wallah Premium
Theme URI: https://vyaparwallah.com
Author: Vyapar Wallah Team
Author URI: https://vyaparwallah.com
Description: A High-Converting Premium WordPress Theme designed specifically for Healthcare, Education, and Local Businesses to maximize lead generation.
Version: 2.5
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog,
custom-colors,
custom-logo,
right-sidebar,
translation-ready Text Domain: vyapar-wallah-blog
Text Domain: vyapar-wallah-blog
*/
:root {
    --primary-blue: #0A4C95;
    --accent-orange: #F37021;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-wide {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 3%;
}

/* 🚀 HEADER & NAVIGATION (V2.0) */
.site-header {
    background: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo span {
    color: var(--accent-orange);
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list a:hover {
    color: var(--accent-orange);
}

/* Dropdown Magic */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    padding: 10px 0;
    z-index: 99;
    border: 1px solid #e2e8f0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #f8fafc;
    color: var(--primary-blue);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    background: none;
    border: none;
}

/* 🚀 CATEGORY PILLS (Home Page) */
.cat-filter-wrap {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cat-pill {
    padding: 8px 25px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--primary-blue);
    color: #fff;
}

/* 🚀 SQUARE BLOG CARDS (Home Page) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 76, 149, 0.1);
}

.blog-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

/* Square Image */
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    background: #fff3ed;
    color: var(--accent-orange);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    text-decoration: none;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

/* 🚀 SINGLE POST V2 (Meta, Social, Comments) */
.single-post-wrapper {
    max-width: 850px;
    margin: 50px auto;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.single-title {
    font-size: 2.8rem;
    color: var(--primary-blue);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Post Meta & Social Icons */
.post-meta-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.meta-info {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-info i {
    color: var(--accent-orange);
    margin-right: 5px;
}

.meta-social {
    display: flex;
    gap: 10px;
}

.meta-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.meta-social .fb {
    background: #1877F2;
}

.meta-social .tw {
    background: #1DA1F2;
}

.meta-social .in {
    background: #0A66C2;
}

.meta-social .wa {
    background: #25D366;
}

.meta-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.single-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 40px;
}



/* 🚀 FREE RESOURCE SECTION (In Single Post) */
.free-resource-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.res-img img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.res-text h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.btn-resource {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-resource:hover {
    background: var(--primary-blue);
}

/* 🚀 COMMENTS SECTION */
.comments-area {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed #e2e8f0;
}

.comment-reply-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
}

.comment-form .submit {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

/* 🚀 FOOTER */
.site-footer {
    background: var(--primary-blue);
    color: #fff;
    padding: 40px 5%;
    text-align: center;
    margin-top: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--accent-orange);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* 📱 MOBILE RESPONSIVE FIXES */
@media(max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid #e2e8f0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-list a {
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        border: none;
        padding: 0;
        display: none;
        background: #f8fafc;
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    .free-resource-box {
        flex-direction: column;
        text-align: center;
    }

    .single-post-wrapper {
        padding: 30px 20px;
    }

    .single-title {
        font-size: 2rem;
    }

    .meta-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* ========================================= */
/* 🚀 TOP ANNOUNCEMENT BAR (Scrolling)       */
/* ========================================= */
.top-announcement-bar {
    background: var(--accent-orange);
    color: white;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    /* Header ke upar rahega */
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    /* 20 sec me ek chakkar */
}

.marquee-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 5px;
}

/* 🎬 Chalta Hua Animation */
@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Fix for Top Bar */
@media(max-width: 768px) {
    .top-announcement-bar {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* ========================================= */
/* 🚀 FEATURED POST (Horizontal Layout)      */
/* ========================================= */
.featured-post {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.featured-img {
    flex: 1.2;
}

.featured-img img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 🚀 MARQUEE FIX (Continuous Loop) */
.marquee-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================= */
/* 🚀 PREMIUM FOOTER (From Screenshot)       */
/* ========================================= */
.premium-footer {
    background: #042E5E;
    /* Deep Blue from image */
    color: #e2e8f0;
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 3%;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--accent-orange);
}

.hindi-tagline {
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cbd5e1;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.footer-wa-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    color: white;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-col ul i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

.locations li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.locations i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 3%;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

/* 📱 MOBILE RESPONSIVE FIXES */
@media(max-width: 992px) {
    .featured-post {
        flex-direction: column;
    }

    .featured-img img {
        min-height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width: 768px) {
    .featured-content {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================= */
/* 🚀 SINGLE PAGE FIXES (TOC SCROLL, MOBILE HIDE, ADS) */
/* ========================================= */

/* 1. TOC me Custom Scrollbar */
.toc-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    /* 🔥 Dabba itna hi bada rahega */
    overflow-y: auto;
    /* 🔥 Jada heading hui toh scroll aa jayega */
    padding-right: 10px;
}

/* Scrollbar ka Design */
.toc-widget ul::-webkit-scrollbar {
    width: 5px;
}

.toc-widget ul::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

.toc-widget ul::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

.toc-widget ul::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.toc-widget li {
    margin-bottom: 12px;
}

.toc-widget a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
}

.toc-widget a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* 2. Premium AD Widget */
.premium-ad-widget {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.premium-ad-widget img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.premium-ad-content {
    background: var(--primary-blue);
    padding: 20px;
    border-top: 4px solid var(--accent-orange);
}

.premium-ad-content h1,
.premium-ad-content h2,
.premium-ad-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    color: #ffffff !important;
    /* ये टेक्स्ट को पक्का सफ़ेद रखेगा */
    background-color: transparent !important;
    /* अगर पीछे कोई नीला बॉक्स बन रहा है तो उसे हटा देगा */
}

.premium-ad-content p {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.btn-ad {
    background: var(--accent-orange);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: 0.3s;
}

.btn-ad:hover {
    background: #fff;
    color: var(--accent-orange);
}

/* 3. Related Posts Grid Fix */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 📱 MOBILE RESPONSIVE HIDE & FIX */
@media(max-width: 992px) {

    /* Mobile me Sidebar (TOC aur AD) gayab ho jayega */
    .right-sidebar {
        display: none !important;
    }

    .single-layout-grid {
        grid-template-columns: 1fr !important;
    }

    /* Mobile me Recommendations thik se dikhenge (ek ke niche ek) */
    .related-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================= */
/* 🔥 MOBILE HORIZONTAL SCROLL BUG FIX       */
/* ========================================= */

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.container-wide {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Blog ke andar ki images aur lambe text ko control karna */
.single-content {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.single-content img,
.single-content iframe,
.single-content video {
    max-width: 100% !important;
    height: auto !important;
}

/* ========================================= */
/* 🚀 MASTER GRID FIX FOR SINGLE POST (LEFT-RIGHT) */
/* ========================================= */

.single-layout-grid {
    display: grid !important;
    grid-template-columns: 2.5fr 1fr !important;
    /* 🔥 Left: Content, Right: Sidebar */
    gap: 40px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
}

.left-content-col {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}



/* Mobile par Sidebar niche jayega */
@media(max-width: 992px) {
    .single-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .right-sidebar {
        display: none !important;
        /* 🔥 Mobile me TOC aur Ad gayab */
    }
}



/* ========================================= */
/* 🚀 NEW "DID YOU KNOW" DESIGN (Minimalist) */
/* ========================================= */
.dyk-widget {
    background: #ffffff !important;
    border: 2px solid #1e293b !important;
    /* Bold Black Border */
    border-radius: 12px !important;
    padding: 25px 20px 20px 30px !important;
    position: relative;
    overflow: visible !important;
    /* Bulb ko bahar nikalne ke liye zaroori */
    margin-left: 20px;
    /* Left me bulb ke liye jagah chhodi */
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.05) !important;
    /* Solid shadow effect */
}

.dyk-header-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

/* Yellow Circle overlap design */
.dyk-bulb-icon {
    background: #fcd34d;
    /* Bright Yellow */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1e293b;
    border: 2px solid #1e293b;
    position: absolute;
    left: -50px;
    /* Box se bahar nikala */
    z-index: 2;
}

.dyk-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1e293b;
    text-transform: uppercase;
    line-height: 1.1;
    margin-left: 20px;
    /* Text ko thoda aage khiskaya */
    letter-spacing: 0.5px;
}

.dyk-text {
    color: #334155 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* 🚀 FIX: TOC STICKY BEHAVIOR */


/* 📢 Vertical Premium Ad (Lamba Banner) */
.premium-ad-widget img {
    height: 280px !important;
    /* 🔥 Image ki height badha di taki vertical dikhe */
    object-position: center;
}

.premium-ad-content {
    padding: 30px 20px !important;
    /* Content ko thodi aur jagah di */
}

/* 🚀 Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    z-index: 9999;
}

.reading-progress-bar {
    height: 5px;
    background: var(--accent-orange);
    width: 0%;
    border-radius: 0 5px 5px 0;
}

/* 🖼️ Dynamic Custom Logo Fix */
.custom-logo-link img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* ========================================= */
/* 🚀 FLOATING ACTION BUTTONS (WA, Call, Top)*/
/* ========================================= */
.floating-action-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: white;
}

.btn-wa {
    background: #25D366;
}

.btn-call {
    background: var(--primary-blue);
    display: none;
}

/* Default hide on desktop */
.btn-up {
    background: #64748b;
    opacity: 0;
    visibility: hidden;
    font-size: 1.2rem;
    transform: translateY(20px);
}

.btn-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Only Call Button */
@media(max-width: 768px) {
    .btn-call {
        display: flex;
    }

    .floating-action-area {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ========================================= */
/* 🌙 DARK MODE STYLES                       */
/* ========================================= */
.dark-mode-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: 0.3s;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-btn:hover {
    background: #e2e8f0;
    color: var(--primary-blue);
}

/* 🔥 Magic of Dark Mode */
body.dark-mode {
    background-color: #0f172a !important;
    /* Deep Dark Blue/Black */
    color: #f8fafc !important;
}

body.dark-mode .site-header,
body.dark-mode .dropdown,
body.dark-mode .blog-card,
body.dark-mode .single-post-wrapper,
body.dark-mode .sidebar-widget,
body.dark-mode .cat-pill {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .blog-title,
body.dark-mode .single-title,
body.dark-mode .sidebar-widget h3,
body.dark-mode .nav-list a {
    color: #f8fafc !important;
}

body.dark-mode .single-content p:not([class*="has-"]):not([style]),
body.dark-mode p:not([class*="has-"]):not([style]) {
    color: #cbd5e1;
}

body.dark-mode .dark-mode-btn {
    background: #334155;
    color: #fbcfe8;
    /* Sun color */
}

body.dark-mode .dyk-widget {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
    border-color: #475569 !important;
}

body.dark-mode .dyk-widget p {
    color: #f8fafc !important;
}

/* 🚀 WordPress Dynamic Menu Dropdown Fix */
.nav-list .menu-item-has-children {
    position: relative;
}

.nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    padding: 10px 0;
    z-index: 99;
    border: 1px solid #e2e8f0;
}

.nav-list .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list .sub-menu li a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.nav-list .sub-menu li a:hover {
    background: #f8fafc;
    color: var(--primary-blue);
    padding-left: 25px;
}

/* Mobile Dynamic Menu Fix */
@media(max-width: 992px) {
    .nav-list .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        border: none;
        padding: 0;
        display: none;
        background: #f8fafc;
    }

    .nav-list .menu-item-has-children:hover .sub-menu {
        display: block;
    }
}
/* ========================================= */
/* 🚀 WORDPRESS CORE DEFAULT CLASSES         */
/* ========================================= */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    padding: 5px;
    color: #64748b;
}

.gallery-caption {
    font-size: 0.85rem;
    margin: 0 0 12px;
    color: #64748b;
}

.bypostauthor {
    font-weight: bold;
}

.sticky {
    border: 2px solid var(--accent-orange);
}
/* ♿ Accessibility: Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ========================================= */
/* 🚀 MASTER CSS BUGS FIXES & LAYOUT         */
/* ========================================= */

/* 1. Mobile Horizontal Scroll Bug Fix (WITHOUT breaking Sticky) */
html,
body {
    width: 100% !important;
    max-width: 100vw !important;
    /* 🔥 overflow-x: hidden; HATA DIYA taaki sticky kaam kare! */
}

.container-wide {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* 2. Font Awesome Conflict Fix */
i[class^="fa-"],
i[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* ========================================= */
/* 🚀 MASTER GRID & STICKY SIDEBAR FIX       */
/* ========================================= */
.single-layout-grid {
    display: grid !important;
    grid-template-columns: 2.5fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
}

.left-content-col {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}


.right-sidebar::-webkit-scrollbar {
    display: none;
}

@media(max-width: 992px) {
    .single-layout-grid {
        grid-template-columns: 1fr !important;
    }

    .right-sidebar {
        display: none !important;
    }

    /* Mobile me sidebar hide */
    .left-content-col {
        padding: 25px !important;
    }
}

/* ========================================= */
/* 🚀 NEW "DID YOU KNOW" DESIGN (Minimalist) */
/* ========================================= */
.sidebar-widget.dyk-widget {
    background: #ffffff !important;
    border: 2px solid #1e293b !important;
    border-radius: 12px !important;
    padding: 25px 20px 20px 40px !important;
    position: relative;
    overflow: visible !important;
    /* Bulb ko bahar nikalne dega */
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05) !important;
    margin-left: 20px !important;
    /* Box ko thoda right khiskaya taaki bulb aa sake */
    margin-bottom: 35px;
}

.dyk-header-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.dyk-bulb-icon {
    background: #fcd34d;
    /* Minimalist Yellow */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1e293b;
    border: 2px solid #1e293b;
    position: absolute;
    left: -60px;
    /* 🔥 Box ke bahar overlap karega (Image jaisa) */
    top: -5px;
    z-index: 10;
}

.dyk-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1e293b;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.dyk-text {
    color: #334155 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* ========================================= */
/* 📢 PREMIUM AD WIDGET                      */
/* ========================================= */
.premium-ad-widget {
    padding: 0 !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    background: var(--primary-blue) !important;
    margin-bottom: 35px;
    overflow: hidden;
}

.premium-ad-widget img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    display: block;
}

.premium-ad-content {
    padding: 30px 25px;
    text-align: center;
    color: #ffffff;
}

.premium-ad-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    color: #fff;
}

.premium-ad-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.premium-ad-content .btn-ad {
    background: #10b981;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}

.premium-ad-content .btn-ad:hover {
    background: #059669;
    transform: translateY(-3px);
}

/* ========================================= */
/* 📑 TABLE OF CONTENTS (Compact & Sticky)   */
/* ========================================= */
.sidebar-widget.toc-widget {
    background: #f8fafc;
    border-top: 4px solid var(--primary-blue);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    width: 90% !important;
    /* Chaurai kam ki */
    margin-right: auto !important;
    margin-bottom: 30px;
    display: block !important;
    /* 🔥 ZABARDASTI DIKHANE KE LIYE (JS error hone par bhi dikhega) */
}

.toc-widget h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cbd5e1;
}

.toc-widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    max-height: 80vh !important;
    /* 50vh को 80vh कर दिया है, अब ये बॉक्स स्क्रीन के 80% हिस्से तक नीचे जाएगा */
    overflow-y: auto !important;
    padding-right: 10px;
}

.toc-widget ul::-webkit-scrollbar {
    width: 5px;
}

.toc-widget ul::-webkit-scrollbar-track {
    background: transparent;
}

.toc-widget ul::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.toc-widget ul li {
    margin-bottom: 12px;
}

.toc-widget ul li a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    transition: 0.3s;
}

.toc-widget ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

/* ========================================= */
/* 🚀 PERFECT SIDEBAR FIX (TOC STICKY ONLY)  */
/* ========================================= */

/* 1. Sidebar ko Normal karo (Ye ab nahi chipkega) */
.right-sidebar {
    position: relative !important;
    top: auto !important;
    height: 100%;
    /* Sticky child ke liye zaroori */
    overflow: visible !important;
}

/* 2. Har dibbe ko alag-alag aur dur karo */
.right-sidebar>div {
    margin-bottom: 45px !important;
    display: block !important;
    clear: both !important;
}

/* 3. 🔥 SIRF TOC Ko Sticky Banao (Aur andar Scroll do) */
.sidebar-widget.toc-widget {
    position: sticky !important;
    top: 100px !important;
    /* Header ke niche se chipkega */
    max-height: calc(100vh - 120px) !important;
    /* Screen ki height ke hisab se fix */
    overflow-y: auto !important;
    /* 👈 Andar slide (scroll) karne ka option */
    background: #f8fafc !important;
    border-top: 4px solid var(--primary-blue) !important;
    border-radius: 16px !important;
    padding: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    z-index: 100;
}

/* TOC ke Scrollbar ka Design */
.sidebar-widget.toc-widget::-webkit-scrollbar {
    width: 5px;
}

.sidebar-widget.toc-widget::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-widget.toc-widget::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
/* ========================================= */
/* 🚀 NEW PREMIUM Related Posts Section (GRID) */
/* ========================================= */

/* 1. Main Container styling */
.related-posts-section {
    margin: 80px auto !important;
    /* Single post se gap aur niche gap */
    padding: 60px !important;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

/* Section Title */
.related-main-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

.related-main-title .blue-text {
    color: var(--primary-blue);
}

/* 2. Grid Wrapper */
.related-grid-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    /* 🔥 3 Column Grid for desktop */
    gap: 35px !important;
}

/* 3. Modern Related Card Style */
.vw-related-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

/* Hover Effect (Slight lift) */
.vw-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 76, 149, 0.08);
}

/* Image styling with zoom on hover */
.related-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Perfect wide aspect ratio */
    overflow: hidden;
}

.related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.vw-related-card:hover .related-img-wrap img {
    transform: scale(1.08);
}

/* Content Area padding */
.related-card-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category Pill (Minimalist orange) */
.related-cat-pill {
    background: #fff3ed;
    color: var(--accent-orange);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    align-self: flex-start;
}

/* Bold Title with 2-line clamp */
.related-title-link {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.related-title-link a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 🔥 Max 2 lines of title */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vw-related-card:hover .related-title-link a {
    color: var(--accent-orange);
}

/* Author Meta (Premium look from reference) */
.related-author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.meta-left img {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1) !important;
}

.meta-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.auth-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Excerpt (3-line clamp) */
.related-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 🔥 Max 3 lines of text */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Underline Read More link */
.related-read-more {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
    width: fit-content;
}

.related-read-more:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* ========================================= */
/* 📱 MOBILE RESPONSIVE LAYOUT               */
/* ========================================= */

@media(max-width: 992px) {
    .related-posts-section {
        padding: 40px !important;
    }

    .related-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        /* 🔥 2 Columns on Tablet */
        gap: 25px !important;
    }
}

@media(max-width: 768px) {
    .related-posts-section {
        padding: 30px !important;
    }

    .related-main-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .related-grid-wrapper {
        grid-template-columns: 1fr !important;
        /* 🔥 1 Column on Mobile */
        gap: 20px !important;
    }
}
/* ========================================= */
/* 🚀 GLOBAL CUSTOMIZER BUGS FIX             */
/* ========================================= */

/* 1️⃣ FOOTER COLOR FIX (Global CSS ko Footer me rokne ke liye) */
.premium-footer h3 {
    color: #ffffff !important;
    /* Footer ki sabhi headings wapas White */
}

.premium-footer h4.hindi-tagline {
    color: var(--accent-orange) !important;
    /* Hindi tagline wapas Orange */
}

.premium-footer .footer-col h3::after {
    background: var(--accent-orange) !important;
    /* Heading ke niche ki line */
}


/* 2️⃣ RELATED POSTS TITLE UPGRADE (Premium Look) */
.related-main-title {
    font-size: 2.2rem !important;
    color: #1e293b !important;
    /* Main title dark gray */
    margin-top: 10px !important;
    margin-bottom: 50px !important;
    line-height: 1.5 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Beech wale word me naya Color aur Box Design (Jo aapne manga tha) */
.related-main-title .blue-text {
    color: var(--accent-orange) !important;
    /* Text Orange ho jayega */
    background: #fff3ed !important;
    /* Halka sa orange background */
    padding: 5px 15px !important;
    /* Word ke charo taraf jagah (ab chipkega nahi) */
    border-radius: 8px !important;
    /* Gol kinare */
    border: 1px solid #fed7aa !important;
    /* Pyari si border */
    display: inline-block;
    margin: 0 8px;
    /* Word ke aage-pichhe gap */
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.1);
    /* Halka glow */
}

/* Mobile Fix for Title */
@media(max-width: 768px) {
    .related-main-title {
        font-size: 1.6rem !important;
        line-height: 1.8 !important;
        /* Mobile me chipkega nahi */
    }

    .related-main-title .blue-text {
        margin: 5px 0 !important;
        /* Mobile me upar niche gap */
    }
}
/* ========================================= */
/* 🚀 MOBILE HEADER MENU ICON ALIGNMENT FIX  */
/* ========================================= */
@media(max-width: 992px) {
    .menu-toggle {
        margin-left: auto !important;
        /* 🔥 Ye menu ko dhakel kar right side le jayega */
        margin-right: 15px !important;
        /* Dark mode button aur menu ke bich thoda gap */
    }
}
/* ========================================= */
/* 📱 MOBILE SINGLE POST FULL WIDTH FIX      */
/* ========================================= */

@media (max-width: 768px) {

    /* 1. Main container ki side space (gap) khatam karein */
    .container-wide {
        padding: 0 !important;
    }

    .left-content-col {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    /* 2. Card Design ko flat aur full-width banayein */
    .single-post-wrapper {
        margin: 0 !important;
        /* Aage-pichhe ka margin khatam */
        padding: 25px 20px !important;
        /* Sirf text ke liye normal reading gap */
        border-radius: 0 !important;
        /* Gol kinare (corners) hataye */
        box-shadow: none !important;
        /* Shadow hatayi */
        border: none !important;
        /* Border hatayi */
        background: #ffffff !important;
    }

    /* 3. Title thoda chhota aur clean karein mobile ke liye */
    .single-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

   
}
/* ========================================= */
/* 📱 MOBILE SQUISHED LAYOUT FIX (Padding)   */
/* ========================================= */

@media (max-width: 768px) {

    /* 1. Comments aur Pagination ko side se jagah dena */
    .comments-area,
    .vw-comment-pagination {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    /* 2. Related Insights ki padding theek karna */
    .related-posts-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        /* Mobile me flat box zyada premium lagta hai */
        border-left: none !important;
        border-right: none !important;
    }

    /* 3. Footer ko screen ke kinaron se hatana */
    .premium-footer .footer-grid,
    .premium-footer .footer-bottom {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}
/* ========================================= */
/* 🚀 DROPDOWN ARROW FIX (MENU)              */
/* ========================================= */

/* ऐरो (Arrow) डिज़ाइन करना */
.nav-list .menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    /* करंट टेक्स्ट कलर लेगा */
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    /* स्क्वायर को घुमाकर 'V' शेप बनाना */
    margin-left: 8px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
    /* स्मूथ एनिमेशन के लिए */
}

/* होवर (Hover) करने पर ऐरो को ऊपर की तरफ घुमाना (Premium Look) */
.nav-list .menu-item-has-children:hover>a::after {
    transform: rotate(225deg);
    margin-bottom: -2px;
}

@media (max-width: 768px) {

    /* Logo Fix (लोगो को एक ही लाइन में रखना) - इसे मत हटाना */
    .site-header .logo {
        font-size: 1.5rem !important;
        white-space: nowrap !important;
    }
}

/* ========================================= */
/* 🚀 ULTIMATE FIX: THEME VS ELEMENTOR       */
/* ========================================= */

/* 1. Theme Headings (Zero Specificity) - Elementor इसे आसानी से ओवरराइड कर लेगा */
:where(.single-content) h1,
:where(.single-content) h2,
:where(.single-content) h3,
:where(.single-content) h4,
:where(.single-content) h5,
:where(.single-content) h6 {
    color: var(--primary-blue);
    font-weight: 800;
    margin: 25px 0 15px;
    line-height: 1.3;
}

:where(.single-content) h1 {
    font-size: 2.5rem;
}

:where(.single-content) h2 {
    font-size: 2rem;
}

:where(.single-content) h3 {
    font-size: 1.75rem;
}

/* 2. Theme Paragraphs (Zero Specificity) */
:where(.single-content) p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 20px;
}

/* 3. Mobile View Fixes */
@media (max-width: 768px) {

    :where(.single-content) h1,
    :where(.single-content) h2,
    :where(.single-content) h3,
    :where(.single-content) h4,
    :where(.single-content) h5,
    :where(.single-content) h6,
    :where(.single-content) p {
        word-wrap: break-word;
    }

    :where(.single-title) {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px !important;
    }
}

/* ========================================= */
/* 🚀 TOC DOUBLE SCROLLBAR & HEIGHT FIX      */
/* ========================================= */

/* 1. अंदर की लिस्ट से एक्स्ट्रा (दूसरा) स्क्रॉलबार हटाना */
.toc-widget ul {
    max-height: none !important;
    overflow-y: visible !important;
}

/* 2. Main TOC Box को नीचे तक बड़ा करना और सिर्फ 1 स्क्रॉलबार रखना */
.sidebar-widget.toc-widget {
    max-height: 95vh !important;
    /* 85vh का मतलब है स्क्रीन के 85% हिस्से तक बॉक्स नीचे जाएगा */
    overflow-y: auto !important;
    /* अब सिर्फ यही एक मेन स्क्रॉलबार काम करेगा */
}