  /* ==========================================================================
       🌟 VMN PREFIXED: ASK COMMUNITY HEADER & MOBILE DRAWER 
       ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

       
    :root {
        --vmn-blue: #4052f6; 
        --vmn-blue-hover: #3142d1;
        --vmn-blue-light: #f0f4ff; 
        --vmn-dark: #0f172a;
        --vmn-text: #1e293b;
        --vmn-muted: #64748b;
        --vmn-border: #e2e8f0;
        --vmn-bg: #ffffff;
        --vmn-font-main: "Noto Sans Devanagari", sans-serif;
    }
    

    * { box-sizing: border-box; }
    a {text-decoration: none;}
    
    body {
        font-family:var(--vmn-font-main);
    }
    /* 🚀 यह आपके Style & Layout टाइम को आधा कर देगा */
    section, footer, .lazy-section {
        content-visibility: auto;
        contain-intrinsic-size: 1px 1000px; /* एक अनुमानित ऊँचाई */
    }

    .vmn-header-wrapper {
        position: sticky;
        top: 0;
        width: 100%;
        background: var(--vmn-bg);
        font-family: var(--vmn-font-main);
        z-index: 9000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        border-bottom: 1px solid var(--vmn-border);
    }

    /* --- 1. DESKTOP HEADER --- */
    .vmn-container {
        max-width: 1400px; margin: 0 auto; padding: 0 24px;
        height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    }

    /* Logo */
    .vmn-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .vmn-logo-icon {
        width: 40px; height: 40px; background: var(--vmn-blue);
        border-radius: 12px; border-bottom-left-radius: 4px;
        color: white; font-size: 1.5rem; font-weight: 800;
        display: flex; align-items: center; justify-content: center;
    }
    .vmn-logo-text { display: flex; flex-direction: column; }
    .vmn-logo-text h1 { font-size: 1.4rem; font-weight: 800; color: var(--vmn-dark); margin: 0; line-height: 1; letter-spacing: -0.5px;}
    .vmn-logo-text p { font-size: 0.65rem; color: var(--vmn-muted); margin: 3px 0 0 0; font-weight: 500;}
    .vmn-main-logo {
    height: 55px; /* आप अपने डिज़ाइन के हिसाब से इसे 40px या 50px कर सकते हैं */
    width: auto;
    object-fit: contain;
    display: block;
}
    /* Desktop Nav */
    .vmn-nav-menu { display: flex; align-items: center; gap: 24px; height: 100%; margin-left:20px;}
    .vmn-nav-item {
        color: var(--vmn-text); text-decoration: none; font-weight: 600; font-size: 0.95rem;
        display: flex; align-items: center; gap: 6px; height: 100%; position: relative; cursor: pointer; transition: 0.2s;
    }
    .vmn-nav-item i { color: var(--vmn-muted); font-size: 1rem; }
    .vmn-nav-item:hover, .vmn-nav-item.vmn-active { color: var(--vmn-blue); }
    .vmn-nav-item:hover i, .vmn-nav-item.vmn-active i { color: var(--vmn-blue); }
    .vmn-nav-item.vmn-active::after {
        content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
        background: var(--vmn-blue); border-radius: 3px 3px 0 0;
    }

    /* Search & Actions */
    .vmn-actions-group { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; }
    .vmn-search {
        max-width: 280px; width: 100%; background: #f8fafc; border: 1px solid transparent;
        border-radius: 50px; padding: 0 16px; height: 42px; display: flex; align-items: center; gap: 8px; transition: 0.2s;
    }
    .vmn-search:focus-within { background: #fff; border-color: var(--vmn-blue); box-shadow: 0 0 0 3px var(--vmn-blue-light); }
    .vmn-search i { color: #94a3b8; font-size: 0.95rem; }
    .vmn-search input { border: none; background: transparent; outline: none; width: 100%; font-family: var(--vmn-font-main); font-size: 0.9rem; color: var(--vmn-dark); }
    
    .vmn-noti { position: relative; color: var(--vmn-muted); font-size: 1.25rem; cursor: pointer; padding: 5px; transition: 0.2s;background-color: white;border: none; }
    .vmn-noti:hover { color: var(--vmn-blue); transform: scale(1.05); }
    .vmn-badge { position: absolute; top: 0; right: 0; background: var(--vmn-blue); color: #fff; font-size: 0.6rem; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }

    .vmn-btn-outline { border: 1px solid var(--vmn-border); background: #fff; color: var(--vmn-dark); padding: 9px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: 0.2s; display: inline-flex; align-items: center; gap: 6px;}
    .vmn-btn-outline:hover { border-color: var(--vmn-blue); color: var(--vmn-blue); background: var(--vmn-blue-light); }

    .vmn-btn-solid {
        background: var(--vmn-blue); color: #fff; border: none; padding: 9px 16px 9px 20px; border-radius: 50px;
        font-weight: 600; font-size: 0.9rem; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: 0.2s;
    }
    .vmn-btn-solid i { background: rgba(255,255,255,0.25); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .vmn-btn-solid:hover { background: var(--vmn-blue-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59, 76, 246, 0.3); }

    /* Profile Avatar Container */
    .vmn-avatar-wrapper { position: relative; display: flex; align-items: center; }
    .vmn-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vmn-blue); cursor: pointer; transition: 0.2s; background: #f1f5f9; }
    .vmn-avatar:hover { border-color: var(--vmn-blue); box-shadow: 0 4px 10px rgba(64, 82, 246, 0.2); transform: scale(1.05); }

    /* --- 2. MOBILE HEADER --- */
    .vmn-mobile-header {
        display: none; background: #fff; padding: 12px 20px;
        justify-content: space-between; align-items: center;
        width: 100%;
    }
    .vmn-mobile-actions { display: flex; align-items: center; gap: 12px; }
    .vmn-icon-btn {
        width: 40px; height: 40px; border-radius: 50%; background: #f8fafc; border: 1px solid var(--vmn-border);
        display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--vmn-dark);
        cursor: pointer; transition: 0.2s;
    }
    .vmn-icon-btn:hover { background: #e2e8f0; }

    /* --- 3. MOBILE DRAWER (LEFT SLIDE) --- */
    .vmn-drawer-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(15, 23, 42, 0.4); z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .vmn-drawer-overlay.vmn-show { opacity: 1; visibility: visible; }

    .vmn-drawer-menu {
        position: fixed; top: 0; left: -320px;
        width: 320px; max-width: 85%; height: 100vh;
        background: #fff; z-index: 10001; transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex; flex-direction: column; font-family: var(--vmn-font-main);
        box-shadow: 10px 0 30px rgba(0,0,0,0.05);
    }
    .vmn-drawer-menu.vmn-show { transform: translateX(320px); }

    .vmn-d-header {
        padding: 20px; display: flex; justify-content: space-between; align-items: center;
        border-bottom: 1px solid var(--vmn-border); background: #fff;
    }
    .vmn-d-close { background: none; border: none; font-size: 1.6rem; color: var(--vmn-dark); cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center;}
    .vmn-d-close:hover { color: #ef4444; }

    .vmn-d-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 8px;  }
    .vmn-d-body::-webkit-scrollbar { width: 6px; }
    .vmn-d-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

    .vmn-d-link {
        display: flex; justify-content: space-between; align-items: center;
        padding: 14px 18px; border-radius: 12px; color: var(--vmn-text);
        text-decoration: none; font-weight: 600; font-size: 1rem; transition: 0.2s; cursor: pointer;
    }
    .vmn-d-link-left { display: flex; align-items: center; gap: 14px; }
    .vmn-d-link-left i { font-size: 1.2rem; color: var(--vmn-muted); width: 24px; text-align: center; }
    .vmn-d-link:hover { background: #f8fafc; }
    .vmn-d-link.vmn-active { background: var(--vmn-blue-light); color: var(--vmn-blue); }
    .vmn-d-link.vmn-active .vmn-d-link-left i { color: var(--vmn-blue); }
    .vmn-d-link.vmn-active .fa-chevron-right { color: var(--vmn-blue); }
    
    .vmn-chevron-icon { font-size: 0.8rem; color: var(--vmn-muted); transition: 0.2s; }

    .vmn-d-submenu { display: none; flex-direction: column; padding-left: 55px; gap: 12px; padding-top: 5px; padding-bottom: 10px; }
    .vmn-d-submenu.vmn-show { display: flex; }
    .vmn-d-submenu a { color: var(--vmn-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: 0.2s;}
    .vmn-d-submenu a:hover { color: var(--vmn-blue); }

    .vmn-d-footer { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #fff; border-top: 1px solid var(--vmn-border); }
    .vmn-d-btn-blue {
        background: var(--vmn-blue); color: white; padding: 16px; border-radius: 10px;
        font-weight: 600; font-size: 1rem; text-decoration: none; display: flex;
        justify-content: center; align-items: center; gap: 10px; transition: 0.2s;
    }
    .vmn-d-btn-blue .vmn-icon-circle { background: rgba(255,255,255,0.25); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
    
    .vmn-d-btn-outline {
        background: #fff; color: var(--vmn-dark); padding: 16px; border-radius: 10px;
        font-weight: 600; font-size: 1rem; text-decoration: none; display: flex;
        justify-content: center; align-items: center; gap: 10px; border: 1px solid var(--vmn-border); transition: 0.2s;
    }
    .vmn-d-btn-outline:hover { background: var(--vmn-blue-light); color: var(--vmn-blue); border-color: #bfdbfe; }

    .vmn-d-socials { display: flex; justify-content: center; gap: 25px; margin-top: 10px; }
    .vmn-d-socials a { color: var(--vmn-blue); font-size: 1.2rem; text-decoration: none; transition: 0.2s; }
    .vmn-d-socials a:hover { transform: translateY(-2px); }

    /* ==========================================================================
       🔥 4. COMMON OVERLAY FOR MODALS
       ========================================================================== */
    .vmn-dropdown-modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        z-index: 10005; display: none; background: transparent; cursor: default;
    }
    .vmn-dropdown-modal-overlay.vmn-show { display: block; }

    /* ==========================================================================
       👤 5. PROFILE DROPDOWN MODAL
       ========================================================================== */
    .vmn-profile-dropdown-modal {
        position: fixed; top: 76px; right: 24px;
        width: 280px; background: #ffffff;
        border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 1px solid var(--vmn-border);
        z-index: 10006; transform: translateY(-15px); opacity: 0; visibility: hidden; 
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        font-family: var(--vmn-font-main);
    }
    .vmn-profile-dropdown-modal::before {
        content: ''; position: absolute; top: -7px; right: 20px;
        width: 14px; height: 14px; background: #fff;
        border-top: 1px solid var(--vmn-border); border-left: 1px solid var(--vmn-border);
        transform: rotate(45deg); z-index: -1;
    }
    .vmn-profile-dropdown-modal.vmn-show { transform: translateY(0); opacity: 1; visibility: visible; }

    .vmn-pd-header { padding: 20px; border-bottom: 1px solid var(--vmn-border); display: flex; align-items: center; gap: 15px;}
    .vmn-pd-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vmn-blue-light);}
    .vmn-pd-header h4 { margin: 0 0 2px 0; font-size: 1.05rem; color: var(--vmn-dark); font-weight: 700;}
    .vmn-pd-header p { margin: 0; font-size: 0.8rem; color: var(--vmn-muted); font-weight: 500; word-break: break-all;}

    .vmn-pd-body { padding: 10px 0; display: flex; flex-direction: column; }
    .vmn-pd-link { display: flex; align-items: center; gap: 14px; padding: 12px 20px; text-decoration: none; color: var(--vmn-text); font-weight: 600; font-size: 0.95rem; transition: 0.2s; }
    .vmn-pd-link:hover { background: var(--vmn-blue-light); color: var(--vmn-blue); }
    .vmn-pd-link i { font-size: 1.1rem; width: 22px; text-align: center; color: var(--vmn-muted); transition: 0.2s;}
    .vmn-pd-link:hover i { color: var(--vmn-blue); transform: scale(1.1); }
    
    .vmn-pd-logout { color: #ef4444; border-top: 1px solid var(--vmn-border); padding-top: 15px; margin-top: 5px;}
    .vmn-pd-logout:hover { background: #fee2e2; color: #dc2626; }
    .vmn-pd-logout i { color: #ef4444; }
    .vmn-pd-logout:hover i { color: #dc2626; transform: translateX(3px);}

    /* ==========================================================================
       🔔 6. NOTIFICATION MODAL
       ========================================================================== */
    .vmn-noti-dropdown-modal {
        position: fixed; top: 76px; right: 100px;
        width: 320px; background: #ffffff;
        border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 1px solid var(--vmn-border);
        z-index: 10006; transform: translateY(-15px); opacity: 0; visibility: hidden; 
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        font-family: var(--vmn-font-main);
    }
    .vmn-noti-dropdown-modal::before {
        content: ''; position: absolute; top: -7px; right: 20px;
        width: 14px; height: 14px; background: #fff;
        border-top: 1px solid var(--vmn-border); border-left: 1px solid var(--vmn-border);
        transform: rotate(45deg); z-index: -1;
    }
    .vmn-noti-dropdown-modal.vmn-show { transform: translateY(0); opacity: 1; visibility: visible; }

    .vmn-nd-header { padding: 15px 20px; border-bottom: 1px solid var(--vmn-border); display: flex; justify-content: space-between; align-items: center;}
    .vmn-nd-header h4 { margin: 0; font-size: 1rem; color: var(--vmn-dark); font-weight: 700; display:flex; align-items:center; gap:8px;}
    .vmn-nd-header a { font-size: 0.8rem; color: var(--vmn-blue); text-decoration: none; font-weight: 600;}

    .vmn-nd-body { max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; }
    .vmn-nd-body::-webkit-scrollbar { width: 4px; }
    .vmn-nd-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

    .vmn-nd-item { display: flex; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--vmn-border); text-decoration: none; transition: 0.2s; }
    .vmn-nd-item:hover { background: var(--vmn-blue-light); }
    .vmn-nd-item.vmn-unread { background: #f8fafc; }
    .vmn-nd-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--vmn-blue-light); color: var(--vmn-blue); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;}
    
    .vmn-nd-content { display: flex; flex-direction: column; gap: 4px; }
    .vmn-nd-content p { margin: 0; font-size: 0.85rem; color: var(--vmn-text); line-height: 1.4; }
    .vmn-nd-content p strong { color: var(--vmn-dark); font-weight: 700;}
    .vmn-nd-content span { font-size: 0.75rem; color: var(--vmn-muted); display: flex; align-items: center; gap: 4px;}

    .vmn-nd-footer { padding: 12px; text-align: center; border-top: 1px solid var(--vmn-border); background:#fcfcfc; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;}
    .vmn-nd-footer a { font-size: 0.9rem; color: var(--vmn-blue); text-decoration: none; font-weight: 700; transition: 0.2s; }
    .vmn-nd-footer a:hover { text-decoration: underline; }

    @media (max-width: 1024px) {
        .vmn-container { display: none; }
        .vmn-mobile-header { display: flex; }
        .vmn-profile-dropdown-modal { right: 15px; top: 75px; width: 260px; }
        .vmn-profile-dropdown-modal::before { right: 15px; }
        .vmn-noti-dropdown-modal { right: 15px; top: 75px; width: 250px; }
        .vmn-noti-dropdown-modal::before { right: 70px; } 
    }
    
    /* DESKTOP SUBMENU CSS */
.vmn-has-dropdown {
    position: relative;
    cursor: pointer;
}

.vmn-desktop-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    border: 1px solid var(--vmn-border);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Hover Effect - Main Item */
.vmn-has-dropdown:hover .vmn-desktop-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vmn-has-dropdown:hover .vmn-drop-icon {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Dropdown Links */
.vmn-desktop-submenu a {
    padding: 10px 20px;
    color: var(--vmn-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}

.vmn-desktop-submenu a i {
    color: var(--vmn-muted);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: 0.2s;
}

.vmn-desktop-submenu a:hover {
    background: var(--vmn-blue-light);
    color: var(--vmn-blue);
}

.vmn-desktop-submenu a:hover i {
    color: var(--vmn-blue);
}
    
    
        :root {
        --vmn-f-bg: #ffffff;
        --vmn-f-dark: #0f172a;
        --vmn-f-text: #334155;
        --vmn-f-muted: #64748b;
        --vmn-f-border: #e2e8f0;
        --vmn-f-blue: #4052f6;
        --vmn-f-blue-light: #f0f4ff;
    }

    .vmn-mega-footer {
        background-color: var(--vmn-f-bg);
        border-top: 1px solid var(--vmn-f-border);

        padding-top: 60px;
        margin-top: auto;
        margin-bottom: 60px;
    }

    .vmn-footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* --- Top Section: 4 Columns --- */
    .vmn-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    /* Column 1: Brand & Bio */
    .vmn-f-brand {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .vmn-f-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }
    .vmn-f-logo-icon {
        width: 38px; height: 38px;
        background: var(--vmn-f-blue);
        border-radius: 12px; border-bottom-left-radius: 4px;
        color: white; font-size: 1.4rem; font-weight: 800;
        display: flex; align-items: center; justify-content: center;
    }
    .vmn-f-logo-text {
        font-size: 1.3rem; font-weight: 800; color: var(--vmn-f-dark); line-height: 1; letter-spacing: -0.5px;
    }
    .vmn-f-bio {
        color: var(--vmn-f-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 300px;
    }
    
    /* Social Icons */
    .vmn-f-socials {
        display: flex;
        gap: 12px;
        margin-top: 10px;
    }
    .vmn-f-socials a {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: #f8fafc;
        border: 1px solid var(--vmn-f-border);
        display: flex; align-items: center; justify-content: center;
        color: var(--vmn-f-muted);
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .vmn-f-socials a:hover {
        background: var(--vmn-f-blue-light);
        color: var(--vmn-f-blue);
        border-color: #bfdbfe;
        transform: translateY(-3px);
    }

    /* Column 2 & 3: Links */
    .vmn-f-col h4 {
        color: var(--vmn-f-dark);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .vmn-f-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .vmn-f-links li a {
        color: var(--vmn-f-muted);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .vmn-f-links li a i {
        font-size: 0.7rem;
        opacity: 0;
        transform: translateX(-5px);
        transition: 0.2s;
        color: var(--vmn-f-blue);
    }
    .vmn-f-links li a:hover {
        color: var(--vmn-f-blue);
        padding-left: 5px;
    }
    .vmn-f-links li a:hover i {
        opacity: 1;
        transform: translateX(0);
    }

    /* Column 4: Newsletter / CTA */
    .vmn-f-cta {
        background: #f8fafc;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid var(--vmn-f-border);
    }
    .vmn-f-cta h4 {
        color: var(--vmn-f-dark);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .vmn-f-cta p {
        color: var(--vmn-f-muted);
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .vmn-f-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: var(--vmn-f-blue);
        color: white;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: 0.3s;
    }
    .vmn-f-btn:hover {
        background: #3142d1;
        box-shadow: 0 4px 15px rgba(64, 82, 246, 0.25);
        transform: translateY(-2px);
    }

    /* --- Bottom Bar --- */
    .vmn-footer-bottom {
        border-top: 1px solid var(--vmn-f-border);
        padding: 24px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .vmn-copyright {
        color: var(--vmn-f-muted);
        font-size: 0.9rem;
        font-weight: 500;
        margin: 0;
    }
    .vmn-developed-by {
        color: var(--vmn-f-muted);
        font-size: 0.9rem;
        font-weight: 500;
        margin: 0;
    }
    .vmn-developed-by a {
        color: var(--vmn-f-dark);
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
        padding-left: 4px;
    }
    .vmn-developed-by a:hover {
        color: var(--vmn-f-blue);
    }

    /* Responsive */
    @media (min-width: 768px) {
        .vmn-footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
    }
    @media (max-width: 992px) {
        .vmn-footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        .vmn-f-brand {
            grid-column: span 2;
        }
    }
    @media (max-width: 600px) {
        .vmn-footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .vmn-f-brand {
            grid-column: span 1;
        }
    }




        * { margin: 0; padding: 0; box-sizing: border-box; } 
        body { background-color: #f8fafc; color: #0f172a; overflow-x: hidden; scroll-behavior: smooth; }

        /* ========================================================
           ✨ SPLIT HERO SECTION (LEFT TEXT + RIGHT IMAGE)
           ======================================================== */
        .hero-section {
            background-color: #070b14;
            background-image: 
                radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.15), transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.15), transparent 40%);
            color: white; padding: 40px 20px 120px 20px; position: relative; overflow: hidden;
        }
        .hero-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 10; }
        .hero-left { flex: 1; max-width: 550px; text-align: left; }
        
        .top-badge-pill {
            display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 18px; border-radius: 50px;
            font-size: 0.85rem; color: #cbd5e1; margin-bottom: 25px; backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .top-badge-pill:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
        .top-badge-pill span { color: #f59e0b; font-size: 1.1rem; }

        .hero-title { font-size: 4rem; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .hero-title span { background: linear-gradient(to right, #fbbf24, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-desc { font-size: 1.15rem; color: #94a3b8; line-height: 1.6; margin-bottom: 35px; font-weight: 400; }

        .hero-cta {
            background: linear-gradient(135deg, #f59e0b, #ea580c); color: #fff; font-size: 1.1rem; font-weight: 700;
            padding: 16px 35px; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }
        .hero-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5); }

        .hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 35px; }
        .avatar-group { display: flex; }
        .avatar { width: 35px; height: 35px; border-radius: 50%; border: 2px solid #070b14; margin-left: -10px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: bold; color: #fff; background-color: #334155; transition: transform 0.3s; }
        .avatar-group:hover .avatar { transform: translateX(5px); border-color: #1e293b; }
        .avatar:first-child { margin-left: 0; }
        .hero-trust p { color: #94a3b8; font-size: 0.9rem; font-weight: 500; }
        .hero-trust p strong { color: #fff; }

        .hero-right { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; max-width: 450px; }
        .hero-profile-img { width: 320px; height: 320px; object-fit: cover; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 4px solid rgba(255,255,255,0.05); position: relative; z-index: 5; background-color: #1e293b; transition: transform 0.5s; }
        .hero-profile-img:hover { transform: scale(1.02); }

        .float-q {
            position: absolute; z-index: 10; background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 12px 18px; border-radius: 16px; 
            font-size: 0.85rem; font-weight: 500; color: #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 8px;
            animation: floatAnim 6s ease-in-out infinite alternate; transition: transform 0.3s; cursor: default;
        }
        .float-q:hover { transform: scale(1.05) translateY(-5px) !important; background: rgba(15, 23, 42, 0.8); z-index: 20; }
        .float-q span { font-size: 1.2rem; }
        .q1 { top: 5%; left: -30px; border-left: 3px solid #3b82f6; animation-delay: 0s; }
        .q2 { top: 25%; right: -40px; border-left: 3px solid #f59e0b; animation-delay: 1.5s; }
        .q3 { bottom: 30%; left: -40px; border-left: 3px solid #10b981; animation-delay: 0.5s; }
        .q4 { bottom: 5%; right: -20px; border-left: 3px solid #8b5cf6; animation-delay: 2s; }

        @keyframes floatAnim { 0% { transform: translateY(0px); } 100% { transform: translateY(-15px); } }

        .header-wave { position: absolute; bottom: -2px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; }
        .header-wave svg { display: block; width: calc(130% + 1.3px); height: 60px; }
        .header-wave .shape-fill { fill: #f8fafc; }

        /* ========================================================
           📢 ADVERTISEMENT BANNERS
           ======================================================== */
        .ad-banner {
            background: #f1f5f9; border: 2px dashed #cbd5e1; border-radius: 12px;
            padding: 25px; text-align: center; color: #64748b; font-weight: 600;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            transition: all 0.3s;
        }
        .ad-banner:hover { background: #e2e8f0; border-color: #94a3b8; }
        .top-ad { max-width: 1000px; margin: 30px auto 10px auto; }
        .inline-ad { margin: 10px 0; width: 100%; border-color: #93c5fd; background: #eff6ff; color: #3b82f6; }
        .footer-ad { max-width: 1000px; margin: 0 auto 40px auto; }

        /* ========================================================
           📊 FOOTER STATS BANNER
           ======================================================== */
        .footer-stats-banner {
            background: #ffffff; border: 1px solid #f1f5f9; border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; align-items: center; 
            justify-content: space-between; padding: 30px 40px; margin: 40px auto; 
            max-width: 1000px; gap: 20px; flex-wrap: wrap; transition: transform 0.3s;
        }
        .footer-stats-banner:hover { transform: translateY(-2px); }
        .stat-box { display: flex; align-items: center; gap: 15px; flex: 1; justify-content: center; min-width: 180px; }
        .stat-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
        .stat-box:hover .stat-icon { transform: scale(1.1) rotate(5deg); }
        .stat-icon svg { width: 26px; height: 26px; stroke-width: 2.5; fill: none; stroke: currentColor; }
        
        .stat-purple { background: #f3e8ff; color: #7e22ce; } .stat-blue { background: #dbeafe; color: #2563eb; } .stat-green { background: #dcfce3; color: #059669; } .stat-orange { background: #ffedd5; color: #ea580c; }
        .stat-text { display: flex; flex-direction: column; }
        .stat-num { font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
        .stat-purple-text .stat-num { color: #581c87; } .stat-blue-text .stat-num { color: #1d4ed8; } .stat-green-text .stat-num { color: #047857; } .stat-orange-text .stat-num { color: #c2410c; }
        .stat-desc { font-size: 0.85rem; color: #64748b; font-weight: 500; white-space: nowrap; }
        .stat-divider { width: 1px; height: 45px; background: #e2e8f0; }

        /* ========================================================
           📁 POPULAR CATEGORIES
           ======================================================== */
        .categories-container {
            max-width: 1000px; margin: 0 auto 40px auto; padding: 25px;
            background: #ffffff; border: 1px solid #f1f5f9; border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s;
        }
        .categories-container:hover { transform: translateY(-2px); }
        .categories-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .categories-title { font-size: 1.2rem; font-weight: 700; color: #0f172a; display: flex; align-items: center; gap: 10px; }
        .categories-title svg { color: #6366f1; width: 22px; height: 22px; stroke-width: 2.5; }
        .categories-view-all { font-size: 0.9rem; font-weight: 600; color: #4338ca; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: 0.2s; }
        .categories-view-all:hover { color: #312e81; transform: translateX(3px); }

        .categories-grid { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
        .categories-grid::-webkit-scrollbar { display: none; }
        
        .cat-card {
            min-width: 120px; flex: 1; border: 1px solid #e2e8f0; border-radius: 12px;
            padding: 20px 10px; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff;
        }
        .cat-card:hover { border-color: #3b82f6; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(59,130,246,0.1); }
        
        .cat-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: transform 0.3s; }
        .cat-card:hover .cat-icon { transform: scale(1.1); }
        .cat-icon svg { width: 24px; height: 24px; stroke-width: 2; fill: currentColor; stroke: none; } 
        
        .cat-tech { background: #ede9fe; color: #6d28d9; }
        .cat-career { background: #dcfce3; color: #059669; }
        .cat-biz { background: #dbeafe; color: #2563eb; }
        .cat-ai { background: #f3e8ff; color: #9333ea; }
        .cat-edu { background: #ffedd5; color: #d97706; }
        .cat-life { background: #fce7f3; color: #e11d48; }
        .cat-gk { background: #ccfbf1; color: #0d9488; }
        .cat-more { background: #f1f5f9; color: #475569; }
        .cat-name { font-weight: 700; font-size: 0.9rem; color: #1e293b; }

        /* ========================================================
           📱 MOBILE RESPONSIVE FIXES
           ======================================================== */
        @media (max-width: 900px) {
            .footer-stats-banner { padding: 25px; }
            .stat-box { justify-content: flex-start; width: 45%; flex: auto; }
            .stat-divider { display: none; }
        }
        @media (max-width: 768px) {
            .hero-container { flex-direction: column; text-align: center; gap: 50px; }
            .hero-left { text-align: center; max-width: 100%; }
            .hero-title { font-size: 3rem; }
            .hero-trust { justify-content: center; }
            .hero-right { width: 100%; max-width: 320px; }
            .float-q { padding: 8px 12px; font-size: 0.75rem; }
            .q1 { left: -10px; top: 0%; } .q2 { right: -20px; top: 20%; } .q3 { left: -20px; bottom: 25%; } .q4 { right: -10px; bottom: 5%; }
            
            .stat-box { width: 100%; } 
            .footer-stats-banner { margin: 20px; }
            
            .categories-container { margin: 20px; padding: 20px 15px; }
            .categories-grid { flex-direction: column; overflow-x: hidden; gap: 10px; padding-bottom: 0; }
            .cat-card { width: 100%; flex-direction: row; justify-content: flex-start; padding: 12px 15px; text-align: left; }
            .cat-icon { margin-bottom: 0; width: 45px; height: 45px; flex-shrink: 0; margin-right: 15px; }
            .cat-name { margin-bottom: 0; font-size: 1.05rem; }

            .top-ad, .footer-ad { margin-left: 20px; margin-right: 20px; }
        }

        /* Modal & Toast Premium UI */
        #dvcis-toast-container { position: fixed; top: 24px; right: 24px; z-index: 9999999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
        .dvcis-toast { display: flex; align-items: center; gap: 12px; min-width: 250px; max-width: 400px; padding: 14px 20px; border-radius: 8px; font-family: system-ui, sans-serif; font-size: 15px; font-weight: 600; color: #fff; transform: translateX(120%); opacity: 0; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); pointer-events: auto; }
        .dvcis-toast.show { transform: translateX(0); opacity: 1; }
        
        /* Colors */
        .toast-success { background: rgba(16, 185, 129, 0.95); border: 1px solid #059669; }
        .toast-error { background: rgba(239, 68, 68, 0.95); border: 1px solid #b91c1c; }
        .toast-icon { width: 24px; height: 24px; flex-shrink: 0; }
        
        .modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.4); align-items: center; justify-content: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s ease; }
        .modal.show { display: flex; opacity: 1; }
        .modal-content { background: #fff; padding: 35px; border-radius: 20px; width: 90%; max-width: 500px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); position: relative; transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-height: 90vh; overflow-y: auto;}
        .modal.show .modal-content { transform: scale(1); }
        
        .close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; cursor: pointer; border: none; background: none; color: #94a3b8; transition: color 0.3s; }
        .close-btn:hover { color: #ef4444; }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: #334155; }
        .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e2e8f0; border-radius: 10px; font-family: inherit; font-size: 0.95rem; transition: all 0.3s; background: #f8fafc; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #3b82f6; background: #fff; box-shadow: 0 0 0 4px rgba(59,130,246,0.1); }
        .form-group input[readonly] { background: #e2e8f0; color: #64748b; cursor: not-allowed; border-color: #cbd5e1; }

        .submit-btn { background: linear-gradient(135deg, #0f172a, #1e293b); color: white; border: none; padding: 14px; width: 100%; border-radius: 10px; font-weight: 700; font-size: 1.05rem; cursor: pointer; margin-top: 10px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(15,23,42,0.2); }
        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15,23,42,0.3); }
        
        .captcha-box { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 0.95rem; font-weight: 600; color: #334155; }
        .captcha-box span { background: #f1f5f9; padding: 4px 10px; border-radius: 6px; color: #3b82f6; }
        .captcha-input { width: 70px; padding: 8px; border: 2px solid #e2e8f0; border-radius: 8px; text-align: center; outline: none; font-weight: bold; }
        .captcha-input:focus { border-color: #3b82f6; }
        .error-msg { color: #ef4444; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; display: none; }
        
        
        
         .polls-container { display: flex; flex-direction: column; gap: 25px; }

    /* ==========================================
       🦴 SKELETON LOADER
       ========================================== */
    .poll-skeleton { background: white; border-radius: 16px; padding: 30px; border: 1px solid #e2e8f0; }
    .skel-pulse { animation: skel-pulse 1.5s infinite ease-in-out; background: #e2e8f0; border-radius: 8px; }
    @keyframes skel-pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }

    /* ==========================================
       🔥 FEATURED POLL (First Poll)
       ========================================== */
    .featured-poll { 
        background: #ffffff; border: 2px solid #bfdbfe; border-radius: 16px; padding: 30px; 
    }
    .featured-badge { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; letter-spacing: 0.5px;}
    .featured-poll .poll-question { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin-bottom: 25px; line-height: 1.4; }

    .poll-opt-btn { background: white; border: 1px solid #cbd5e1; border-radius: 8px; padding: 14px 18px; font-size: 1rem; font-weight: 600; color: #334155; text-align: left; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; width: 100%;}
    .poll-opt-btn:hover { background: #eff6ff; border-color: #3b82f6; color: #1e40af; }
    .poll-opt-btn .circle { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #cbd5e1; display: inline-block; flex-shrink: 0; transition: 0.2s; }
    .poll-opt-btn:hover .circle { border-color: #3b82f6; }

    .poll-result-bar { position: relative; background: white; border-radius: 8px; overflow: hidden; margin-bottom: 12px; border: 1px solid #cbd5e1; display: flex; align-items: center; min-height: 50px; width: 100%;}
    .poll-fill { position: absolute; left: 0; top: 0; height: 100%; background: #e0e7ff; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
    .poll-fill.winner { background: #dcfce3; } 
    .poll-text-wrapper { position: relative; z-index: 2; display: flex; justify-content: space-between; width: 100%; padding: 0 18px; font-size: 1rem; font-weight: 700; color: #0f172a; pointer-events: none;}

    .featured-poll .poll-footer { display: flex; align-items: center; gap: 20px; font-size: 0.9rem; color: #475569; font-weight: 600; margin-top: 25px;}

    /* ==========================================
       🃏 HORIZONTAL POLL CARDS
       ========================================== */
    .poll-hz-card { 
        background: white; border-radius: 16px; border: 1px solid #e2e8f0; display: flex; 
        position: relative; transition: 0.3s; padding: 25px; gap: 30px; align-items: center;
    }
    
    .poll-bookmark-btn { position: absolute; top: 25px; right: 25px; background: none; border: none; font-size: 1.5rem; color: #cbd5e1; cursor: pointer; transition: 0.2s; z-index: 10;}
    .poll-bookmark-btn:hover { color: #f59e0b; transform: scale(1.1); }
    .poll-bookmark-btn.saved { color: #f59e0b; }

    .poll-hz-author { display: flex; align-items: center; gap: 15px; min-width: 200px; border-right: 1px solid transparent; }
    .ph-avatar { width: 50px; height: 50px; border-radius: 50%; position: relative; }
    .ph-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
    .ph-online-dot { position: absolute; bottom: 0px; right: 0px; width: 12px; height: 12px; background: #10b981; border: 2px solid white; border-radius: 50%; }
    .ph-info h4 { margin: 0 0 4px 0; font-size: 1.05rem; font-weight: 800; color: #0f172a; display: flex; align-items: center; flex-wrap: wrap;}
    .ph-info p { margin: 0; font-size: 0.8rem; color: #64748b; font-weight: 600; display: flex; align-items: center; gap: 5px; }

    .poll-hz-content { flex: 1; min-width: 0; }
    .poll-tag { background: #dcfce3; color: #059669; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; display: inline-block; margin-bottom: 12px; }
    .poll-hz-title { font-size: 1.25rem; font-weight: 800; color: #2563eb; margin: 0 0 10px 0; line-height: 1.4; padding-right: 30px; transition: 0.2s;}
    .poll-hz-title:hover { color: #1e40af; text-decoration: underline; }
    .poll-hz-desc { font-size: 0.9rem; color: #475569; margin: 0 0 20px 0; line-height: 1.5; font-weight: 500; }

    .poll-hz-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed #e2e8f0; padding-top: 15px; flex-wrap: wrap; gap: 15px;}
    .footer-stats { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: #475569; font-weight: 600; }
    .footer-divider { width: 1px; height: 14px; background: #cbd5e1; }
    
    .btn-dark-action { background: #0f172a; color: white; border: none; padding: 8px 24px; border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;}
    .btn-dark-action:hover { background: #3b82f6; }
    .btn-voted { background: #10b981 !important; pointer-events: none; }

    /* 🚀 NEW: Vote Count Button Hover Effect */
    .vote-count-btn { cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; gap: 6px; }
    .vote-count-btn:hover { color: #2563eb; }

    /* 👥 VOTERS MODAL CSS */
    .voters-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.6); z-index: 100000; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 20px; opacity: 0; transition: opacity 0.3s ease; }
    .voters-modal-overlay.show { display: flex; opacity: 1; }
    .voters-modal-content { background: white; border-radius: 20px; width: 100%; max-width: 450px; max-height: 80vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2); transform: scale(0.95); transition: transform 0.3s ease; }
    .voters-modal-overlay.show .voters-modal-content { transform: scale(1); }
    
    .voters-modal-header { padding: 20px 25px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; background: #f8fafc; }
    .voters-modal-header h3 { margin: 0; font-size: 1.2rem; color: #0f172a; display:flex; align-items:center; gap:10px; font-weight: 800;}
    .voters-close-btn { background: #e2e8f0; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #64748b; cursor: pointer; transition: 0.2s; }
    .voters-close-btn:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }
    
    .voters-modal-body { padding: 0; overflow-y: auto; flex: 1; }
    .voter-item { display: flex; align-items: center; gap: 15px; padding: 15px 25px; border-bottom: 1px solid #f1f5f9; transition: 0.2s; }
    .voter-item:hover { background: #f8fafc; }
    .voter-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid #e2e8f0; }
    .voter-info { flex: 1; min-width: 0; }
    .voter-name { margin: 0 0 3px 0; font-size: 1rem; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .voter-choice { margin: 0; font-size: 0.85rem; color: #10b981; font-weight: 600; background: #dcfce3; padding: 3px 10px; border-radius: 12px; display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;}

    @media (max-width: 768px) {
        .poll-hz-card { flex-direction: column; gap: 15px; padding: 20px; }
        .poll-hz-author { border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; width: 100%; }
        .poll-hz-footer { flex-direction: column; align-items: flex-start; }
        .btn-dark-action { width: 100%; justify-content: center; }
    }
    
      /* ========================================================
       🔥 PAGE HEADER & CONTROLS
       ======================================================== */
    .container { max-width: 1000px; margin: 20px auto; padding: 0 20px; }
    .page-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
    .header-title { font-size: 1.8rem; font-weight: 800; color: #0f172a; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
    .header-title span { color: #3b82f6; } 
    .header-subtitle { font-size: 0.9rem; color: #64748b; margin-top: 4px; font-weight: 500; transition: 0.3s; }

    .controls-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
    .filter-tabs-box { background: #fff; padding: 10px 15px; border-radius: 12px; border: 1px solid #f1f5f9; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .filter-tabs-box::-webkit-scrollbar { display: none; }
    .filter-tab { background: #fff; color: #475569; border: 1px solid #e2e8f0; padding: 8px 18px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
    .filter-tab svg { width: 16px; height: 16px; flex-shrink: 0; transition: 0.3s; }
    .filter-tab:hover { background: #f8fafc; border-color: #cbd5e1; transform: translateY(-1px); }
    .filter-tab.active { background: #0f172a; color: #fff; border-color: #0f172a; position: relative; box-shadow: 0 6px 15px rgba(15, 23, 42, 0.25); }
    .filter-tab.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 14px; height: 3px; background: #cbd5e1; border-radius: 2px; }
    .filter-tab.active svg { stroke: #fff; fill: none; } 

    .search-action-box { background: #fff; padding: 12px 15px; border-radius: 12px; border: 1px solid #f1f5f9; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; gap: 15px; align-items: center; }
    .search-input-wrapper { flex: 1; display: flex; align-items: center; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 16px; transition: all 0.3s ease; }
    .search-input-wrapper:focus-within { background: #fff; border-color: #3b82f6; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); transform: translateY(-1px); }
    .search-input-wrapper svg { width: 18px; height: 18px; color: #64748b; transition: 0.3s; }
    .search-input-wrapper:focus-within svg { color: #3b82f6; }
    .search-input-wrapper input { border: none; background: none; outline: none; margin-left: 10px; width: 100%; font-family: inherit; font-size: 0.95rem; color: #0f172a; }
    .advanced-filter-btn { background: #0f172a; color: #fff; font-weight: 600; font-size: 0.95rem; padding: 10px 24px; border-radius: 10px; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; white-space: nowrap; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15); }
    .advanced-filter-btn:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(15, 23, 42, 0.25); }

    /* ========================================================
       📋 LIST VIEW LAYOUT (CARDS)
       ======================================================== */
    .questions-list { display: flex; flex-direction: column; gap: 16px; }
    
    .q-card { background: #ffffff; border-radius: 12px; padding: 20px 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border: 1px solid #f1f5f9; display: flex; align-items: center; position: relative; gap: 25px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
    .q-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: #cbd5e1; z-index: 2; }

    .q-author-col { display: flex; align-items: center; gap: 12px; min-width: 220px; border-right: 1px solid transparent; }
    .q-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, #0f172a, #1e293b); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; position: relative; text-transform: uppercase; box-shadow: 0 4px 10px rgba(0,0,0,0.1); flex-shrink: 0; }
    .status-dot { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: #10b981; border: 2px solid white; border-radius: 50%; }
    .q-author-info { display: flex; flex-direction: column; gap: 2px; }
    .q-name { font-size: 0.95rem; font-weight: 700; color: #0f172a; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    .verified-icon { width: 15px; height: 15px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
    .admin-badge { background: #fef08a; color: #854d0e; font-size: 10px; padding: 2px 6px; border-radius: 12px; font-weight: 800; display: inline-flex; align-items: center; gap: 3px; text-transform: uppercase; margin-left: 2px; }
    .q-date { font-size: 0.8rem; color: #64748b; font-weight: 500; display: flex; align-items: center; gap: 4px; }

    .q-content-col { flex: 1; display: flex; flex-direction: column; padding-right: 30px; }
    .q-tags { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; align-items: center; }
    .q-tag { font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s ease; border: 1px solid transparent; }
    .q-tag:hover { opacity: 0.9; transform: scale(1.05); }
  /* 🚀 DVCIS Accessibility Optimized Tags */
.tag-green { 
    background: #dcfce3; 
    color: #047857; /* डार्क ग्रीन (Contrast Pass) */
    border-color: #a7f3d0; 
} 
.tag-purple { 
    background: #f3e8ff; 
    color: #6b21a8; /* डार्क पर्पल (Contrast Pass) */
    border-color: #e9d5ff; 
} 
.tag-red { 
    background: #fee2e2; 
    color: #be123c; /* डार्क रेड/रोज़ (Contrast Pass) */
    border-color: #fecaca; 
} 
.tag-orange { 
    background: #ffedd5; 
    color: #c2410c; /* डार्क ऑरेंज (Contrast Pass) */
    border-color: #fed7aa; 
} 
.tag-grey { 
    background: #f1f5f9; 
    color: #334155; /* डार्क स्लेट ग्रे (Contrast Pass) */
    border-color: #e2e8f0; 
}

    .q-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; line-height: 1.4; margin-bottom: 8px; cursor: pointer; transition: color 0.2s; }
    .q-title:hover { color: #3b82f6;  }
    .q-desc { font-size: 0.9rem; color: #475569; margin-bottom: 15px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    .q-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed #e2e8f0; padding-top: 12px; }
    .q-stats { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: #475569; font-weight: 600; flex-wrap: wrap; }
    .q-stat-item { display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color 0.2s; }
    .q-stat-item:hover { color: #0f172a; }
    .q-stat-item:hover svg { stroke: #3b82f6; transform: scale(1.1); }
    .q-stat-item svg { width: 16px; height: 16px; stroke: #64748b; stroke-width: 2; fill: none; transition: all 0.2s ease; }
    .divider { width: 1px; height: 12px; background: #cbd5e1; margin: 0 2px; }

    .q-answer-btn { background: #0f172a; color: white; border: none; padding: 8px 20px; font-size: 0.9rem; font-weight: 600; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.3s ease; white-space: nowrap; text-decoration: none; box-shadow: 0 2px 8px rgba(15,23,42,0.2);}
    .q-answer-btn:hover { background: #3b82f6; color: white; box-shadow: 0 4px 12px rgba(59,130,246,0.3); transform: translateY(-1px); }

    .q-bookmark-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; color: #cbd5e1; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    .q-bookmark-btn:hover { color: #0f172a; transform: scale(1.2); }
    .q-bookmark-btn.saved { color: #f59e0b; transform: scale(1.1); }
    .q-bookmark-btn.saved svg { fill: #f59e0b; stroke: #f59e0b; }

    /* 🔄 INFINITE SCROLL LOADER */
    .infinite-loader { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px; font-weight: 600; color: #64748b; display: none; }
    .spinner { width: 24px; height: 24px; border: 3px solid #e2e8f0; border-top: 3px solid #3b82f6; border-radius: 50%; animation: spin 1s linear infinite; }
    @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    /* View All Button */
    .view-all-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px; border-radius: 50px; font-weight: 700; color: #3b82f6; border: 2px solid #3b82f6; text-decoration: none; transition: 0.3s; background: transparent; }
    .view-all-btn:hover { background: #3b82f6; color: white; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); }

    /* 💀 SKELETON LOADER CSS */
    .skeleton { background: #e2e8f0; background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite linear; border-radius: 4px; }
    @keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    .skeleton-card { background: #ffffff; border-radius: 12px; padding: 20px 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); border: 1px solid #f1f5f9; display: flex; align-items: center; gap: 25px; margin-bottom: 16px; }
    .sk-author-col { display: flex; align-items: center; gap: 12px; min-width: 220px; }
    .sk-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
    .sk-author-info { display: flex; flex-direction: column; gap: 8px; flex: 1; max-width: 150px; }
    .sk-line { height: 12px; border-radius: 4px; }
    .sk-line.short { width: 60%; }
    .sk-content { flex: 1; display: flex; flex-direction: column; gap: 12px; }
    .sk-title { height: 20px; width: 80%; }
    .sk-desc { height: 14px; width: 100%; }
    .sk-desc-2 { height: 14px; width: 90%; }
    .sk-footer { display: flex; gap: 15px; margin-top: 10px; }
    .sk-stat { height: 14px; width: 60px; }

    /* Message for empty database */
    .empty-questions-msg { text-align: center; padding: 60px 20px; background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; margin-top: 20px; }
    .empty-questions-msg h3 { color: #334155; font-size: 1.3rem; margin-bottom: 10px; }
    .empty-questions-msg p { color: #64748b; font-size: 0.95rem; }

    @media (max-width: 768px) {
        .search-action-box { flex-direction: column; align-items: stretch; }
        .advanced-filter-btn { width: 100%; justify-content: center; }
        .page-header { flex-direction: column; align-items: flex-start; gap: 15px; }
        .q-card { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
        .q-author-col { width: 100%; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
        .q-content-col { padding-right: 0; width: 100%; }
        .q-footer { flex-direction: column; align-items: flex-start; gap: 15px; width: 100%; }
        .q-stats { flex-wrap: wrap; gap: 10px; }
        .q-answer-btn { width: 100%; justify-content: center; }
        .q-bookmark-btn { top: 25px; right: 20px; }
        .skeleton-card { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
        .sk-author-col { width: 100%; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; display: flex; gap:12px; }
    }
    
    
    
    
    
    /* --- 1. VARIABLES --- */
:root {
  --primary-color: #b92b27;
  --primary-gradient: linear-gradient(135deg, #b92b27 0%, #ff4b1f 100%);
  --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* --- 2. BASE CONTAINER --- */
.floating-container {
  position: fixed;
  z-index: 9998; /* Just below chat widget */
  transform: translate3d(0,0,0);
  will-change: transform; 
}

/* --- 3. GLASS PILL BUTTON --- */
.glass-pill-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: #222;
  padding: 6px 16px 6px 6px; 
  border-radius: 50px;
  font-size: 13px; 
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px; 
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.glass-pill-btn:active { transform: scale(0.96); }

/* --- 4. ICONS --- */
.icon-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bg-red { background: var(--primary-gradient); }
.bg-green { background: var(--whatsapp-gradient); }
.btn-icon { width: 18px; height: 18px; fill: #fff; }

/* --- 5. MOBILE POSITIONS --- */
.cta-left { bottom: 75px; left: 15px; } 
.cta-right { bottom: 75px; right: 15px; }

/* --- 6. BOTTOM MENU --- */
.app-bottom-menu {
  position: fixed; bottom: 0px; left: 0; width: 100%; height: 64px; 
  background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border); border-radius: 0px; box-shadow: var(--shadow-soft);
  z-index: 9997; display: flex; justify-content: center; align-items: center; padding: 0 5px;
  contain: layout style; transform: translate3d(0,0,0);
}
.app-bottom-menu ul { display: flex; justify-content: space-between; align-items: center; width: 100%; margin: 0; padding: 0; list-style: none; }
.app-bottom-menu li { flex: 1; text-align: center; display: flex; justify-content: center; align-items: center; }
.app-bottom-menu a { display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: #999; text-decoration: none; transition: color 0.3s ease; line-height: 1.2; }
.mblmenu { width: 23px; height: 23px; fill: #999; margin-bottom: 3px; transition: fill 0.3s ease, transform 0.3s ease; }
.app-bottom-menu a:hover .mblmenu, .app-bottom-menu a.active-nav .mblmenu { fill: var(--primary-color); transform: translateY(-3px); }
.app-bottom-menu a:hover span, .app-bottom-menu a.active-nav span { color: var(--primary-color); }

/* --- 7. DESKTOP SETTINGS --- */
@media (min-width: 1024px) {
  .app-bottom-menu, .cta-left { display: none !important; }
  .cta-right { display: block !important; bottom: 25px; right: 30px; }
  .cta-right .glass-pill-btn { padding: 10px 24px 10px 10px; font-size: 15px; }
  .cta-right .icon-circle { width: 40px; height: 40px; }
  .cta-right .btn-icon { width: 22px; height: 22px; }
}


.breadcrumb { font-size: 13px; color: #64748b; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .breadcrumb a { color: #2563eb; text-decoration: none; font-weight: 600; }
    .breadcrumb svg { width: 14px; height: 14px; }
    
    
    .btn-ask-primary { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: white; border: none; padding: 12px 24px; font-size: 0.95rem; font-weight: 600; border-radius: 10px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(37,99,235,0.2); }
    .btn-ask-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); background: linear-gradient(135deg, #1d4ed8, #1e3a8a); }
    
    
    .sort-select { padding: 10px 14px; border-radius: 10px; border: 1px solid #e2e8f0; background: #f8fafc; font-size: 0.95rem; font-weight: 600; color: #475569; cursor: pointer; outline: none; transition: 0.3s; }
    .sort-select:hover, .sort-select:focus { border-color: #3b82f6; background: #fff; }

    .results-meta-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 0.9rem; color: #64748b; font-weight: 500; }
    .results-meta-bar strong { color: #0f172a; }
    
    
    .modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.4); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
    .modal.show { display: flex; opacity: 1; }
    .modal-content { background: #fff; padding: 35px; border-radius: 20px; width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto; }
    .close-btn { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; cursor: pointer; border: none; background: none; }
    
    
    
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; }
    .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e2e8f0; border-radius: 10px; }
    .submit-btn { background: linear-gradient(135deg, #0f172a, #1e293b); color: white; border: none; padding: 14px; width: 100%; border-radius: 10px; font-weight: 700; cursor: pointer; }
    
    .captcha-box { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 600; }
    .captcha-input { width: 70px; padding: 8px; border: 2px solid #e2e8f0; border-radius: 8px; text-align: center; }
    .error-msg { color: #ef4444; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; display: none; }
    
    
    .pagination-container { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 45px 0; flex-wrap: wrap; }
    .page-btn { background: #fff; border: 1px solid #e2e8f0; padding: 10px 18px; border-radius: 8px; font-weight: 600; cursor: pointer; }
    .page-btn.active { background: #3b82f6; color: #fff; border-color: #3b82f6; }
    .page-btn:disabled { opacity: 0.45; cursor: not-allowed; }