:root {
    --bg-dark: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --neon-blue: #00f2fe;
    --neon-purple: #4facfe;
    --success-green: #00e676;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    padding-bottom: 100px;
}

.bg-glow {
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Premium Navbar */
.premium-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-login-btn {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: 0.3s ease;
}

.nav-login-btn:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Hero & Grid */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    padding: 60px 20px 40px 20px;
}

.hero-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* 3D Glass Card */
.tilt-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 380px;
}

.tilt-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    transform: translateZ(30px);
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateZ(20px);
}

.card-badge {
    font-size: 11px;
    background: rgba(0, 230, 118, 0.2);
    color: var(--success-green);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--neon-blue);
    transform: translateZ(25px);
    margin-bottom: 15px;
}

.action-btn {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: #000;
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    transform: translateZ(35px);
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.action-btn:hover {
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
    transform: translateZ(45px) scale(1.02);
}

.download-btn {
    background: linear-gradient(45deg, #00e676, #00b0ff);
}

/* Floating Bottom Navigation (No Admin Button) */
.floating-bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 22, 36, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    padding: 10px 40px;
    border-radius: 40px;
    display: flex;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bottom-nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    transition: 0.3s;
}

.bottom-nav-item span {
    font-size: 11px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.tilt-card .card-img-container {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.01);
}

.tilt-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Isse image box ke hisaab se automatic crop ho jayegi, stretch nahi hogi */
    transition: transform 0.5s ease;
}

/* Hover karne par image thodi zoom hogi (Premium Effect) */
.tilt-card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
    margin-bottom: 15px;
    line-height: 1.5;

    /* Agar description bada ho toh automatic '...' laga dega 2 lines baad */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Search & Filter Layout Container */
.search-filter-wrapper {
    display: flex;
    gap: 15px;
    margin: 20px auto 40px auto;
    max-width: 800px;
    width: 100%;
}

.search-box {
    position: relative;
    flex: 2;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 16px 16px 16px 50px;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.search-box input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.filter-box {
    flex: 1;
}

.filter-box select {
    width: 100%;
    background: rgba(15, 22, 36, 0.8);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    outline: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    /* Custom Dropdown Arrow */
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-box select:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.15);
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 600px) {
    .search-filter-wrapper {
        flex-direction: column;
        padding: 0 10px;
    }
}

/* Custom Dropdown Main Container */
.custom-dropdown {
    position: relative;
    flex: 1;
    user-select: none;
}

/* Dropdown Header Box */
.dropdown-header {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

/* Active State Glow */
.custom-dropdown.active .dropdown-header {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.dropdown-header .arrow {
    font-size: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

/* Active hone par teer (arrow) ulta ho jayega */
.custom-dropdown.active .arrow {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

/* Actual Dropdown List (The Floating Box) */
.dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    /* Matches our bg-dark with high opacity */
    border: 1px solid var(--card-border);
    border-radius: 16px;
    list-style: none;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    z-index: 1000;

    /* Smooth Transition Setup */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Open/Active state for list */
.custom-dropdown.active .dropdown-list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Options (Items) */
.dropdown-list li {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Item Hover Effect */
.dropdown-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--neon-blue);
    padding-left: 22px;
    /* Smooth elegant slide-in effect */
}

/* ==========================================================================
   🌐 CODESTACK GLOBAL STICKY HEADER STYLE
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 7, 15, 0.65);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo-node {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--neon-blue);
    font-size: 18px;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--neon-purple);
}

/* Navigation links matrix */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: white;
}

/* Active page line effect */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    border-radius: 2px;
}

/* Right Side Action Button */
.dashboard-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    color: #05070f;
    background: linear-gradient(135deg, var(--neon-blue), #4facfe);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
}

.dashboard-btn-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
    filter: brightness(1.1);
}

/* ⚠️ Crucial Fix: Grid layout ko header ke niche dhakelne ke liye spacing padding */
body {
    padding-top: 110px !important;
}

/* Mobile Responsive Header Handling */
@media (max-width: 600px) {
    .header-container {
        height: 60px;
        padding: 0 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-item {
        font-size: 12px;
    }

    .dashboard-btn-link {
        padding: 8px 12px;
        font-size: 11.5px;
    }

    body {
        padding-top: 90px !important;
    }
}

/* ==========================================================================
   🎮 ICONS ALIGNMENT & GLOW FOR NAV LINKS
   ========================================================================== */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;

    /* 🔥 FIX: Icon aur Text ko ek line me lane ke liye */
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Base icon style inside navbar */
.nav-item i {
    font-size: 13px;
    color: #475569;
    /* Default hidden type dark color */
    transition: all 0.2s ease;
}

/* Hover hone par ya Active page hone par Text aur Icon dono chamkenge */
.nav-item:hover,
.nav-item.active {
    color: white;
}

.nav-item:hover i,
.nav-item.active i {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 6px var(--neon-blue));
    /* 🔥 Icon me cyber glow effect */
}

/* Active page line effect */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    border-radius: 2px;
}

/* ==========================================================================
   🔍 PREMIUM GLASSMORPHIC SEARCH BAR ENGINE
   ========================================================================== */
.search-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 40px auto;
    /* Layout center balance spacing */
}

#search-input {
    width: 100%;
    padding: 15px 20px 15px 52px;
    /* 52px left padding taaki text icon ke upar na chadhe */
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Absolute position for Search Icon */
.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    /* Default slate gray color */
    font-size: 14px;
    pointer-events: none;
    /* User icon par click kare toh bhi input select ho */
    transition: all 0.3s ease;
}

/* 🔥 FOCUS STATES: Input select hote hi aura transform effects */
#search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.08);
}

/* Smart Selector: Input focus hote hi Icon neon blue chamkega */
#search-input:focus~.search-icon {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 8px var(--neon-blue));
    transform: translateY(-50%) scale(1.1);
    /* Chota sa pop animation */
}

/* Placeholder styling placeholder color change */
#search-input::placeholder {
    color: #475569;
}

/* ==========================================================================
   🌌 FIXED TRANSPARENT ONE-LINE FOOTER
   ========================================================================== */
.simple-footer {
    width: 100%;

    /* 🔥 FIX 1: Isse footer hamesha page ke absolute bottom me push ho jayega */
    margin-top: auto;

    padding: 40px 20px 20px 20px;
    /* Niche thoda breathing space */

    /* 🔥 FIX 2: Black background ko uda diya, ab ye peeche ke purple aura se merge ho jayega */
    background: transparent;

    /* Ekdum barik line, agar aapko ye line bhi nahi chahiye toh ise delete kar sakte hain */
    border-top: 1px solid rgba(255, 255, 255, 0.02);

    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Brand Name Highlights */
.footer-brand {
    color: #f8fafc;
    font-weight: 700;
}

.footer-brand span {
    color: var(--neon-purple, #9d4edd);
}

/* Middle Divider Pipe */
.footer-divider {
    color: rgba(255, 255, 255, 0.08);
    font-weight: 300;
}

/* Rights Reserved Text */
.footer-rights {
    color: #475569;
    /* Sleek slate gray text */
}

/* Mobile Small Screen Fix */
@media (max-width: 480px) {
    .footer-line {
        font-size: 11px;
        gap: 8px;
    }
}

/* ==========================================================================
   🌌 GLOBAL CYBERPUNK AMBIENT BACKGROUND
   ========================================================================== */
body {
    background-color: #05070f !important;
    /* Pura bento-theme deep dark color */
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Blur Lights Layer Configuration */
.bg-blur-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    /* Isse lights hamesha text aur cards ke piche rahengi */
    pointer-events: none;
    /* Mouse clicks ko block nahi karega */
    opacity: 0.35;
    /* Ekdum subtle aur elegant opacity */
}

/* Top Left Cyan Aura */
.bg-blur-glow.cyan {
    top: -10%;
    left: -10%;
    background: #00f2fe;
}

/* Bottom Right Purple Aura */
.bg-blur-glow.purple {
    bottom: -10%;
    right: -10%;
    background: #9d4edd;
}

/* ==========================================================================
   🛸 ULTRA-PREMIUM FLOATING CAPSULE FOOTER ENGINE
   ========================================================================== */
.floating-cyber-footer {
    /* 🔥 FIX 1: Isse footer screen ke bottom me hawa me latak jayega */
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    /* Taaki content ke upar float kare */

    /* 🔥 FIX 2: Glassmorphic Capsule Shape (No full black strip!) */
    background: rgba(5, 7, 15, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle borders and shadow for floating depth */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);

    border-radius: 100px;
    /* Perfect round pill shape */
    padding: 10px 24px;
    white-space: nowrap;
    /* Text ko single line me rakhne ke liye */
    transition: all 0.3s ease;
}

/* Hover Physics: Mouse le jane par chota sa glow aur lift */
.floating-cyber-footer:hover {
    background: rgba(5, 7, 15, 0.8);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 242, 254, 0.05);
    transform: translateX(-50%) translateY(-2px);
}

.pill-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Logo Highlight inside Pill */
.brand-node {
    color: #f8fafc;
    font-weight: 700;
}

.brand-node span {
    color: var(--neon-purple, #9d4edd);
}

/* Capsule Divider */
.pill-pipe {
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

/* Rights Reserved Info */
.rights-node {
    color: #64748b;
    /* Clean muted slate */
}

/* ⚠️ Crucial Spacing Fix: Content footer ke piche na dabe jab user end tak scroll kare */
main,
.dashboard-layout {
    padding-bottom: 80px !important;
}

/* Mobile Screen Tuning */
@media (max-width: 480px) {
    .floating-cyber-footer {
        bottom: 16px;
        padding: 8px 18px;
    }

    .pill-content {
        font-size: 10.5px;
        gap: 6px;
    }
}

/* ==========================================================================
   📱 ULTRA-COMPACT MOBILE HEADER TUNING (max-width: 600px)
   ========================================================================== */
@media (max-width: 600px) {

    /* Header container ki height aur padding kam karo */
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    /* Logo ka size thoda chota taaki space bache */
    .logo-text {
        font-size: 15px;
    }

    .logo-icon {
        font-size: 14px;
    }

    /* Nav links ka gap tight karo */
    .nav-links {
        gap: 6px;
    }

    /* 🔥 MASTER TRICK: Nav item ka text mobile me gayab ho jayega, sirf icon dikhega */
    .nav-item {
        font-size: 0 !important;
        padding: 6px 10px;
    }

    /* Icons ko center karo aur thoda bada dikhao mobile me */
    .nav-item i {
        font-size: 16px !important;
        margin: 0 !important;
        color: #475569;
    }

    /* Active page ka icon automatic cyber-blue chamkega */
    .nav-item.active i,
    .nav-item:hover i {
        color: var(--neon-blue);
        filter: drop-shadow(0 0 8px var(--neon-blue));
    }

    /* Active bottom border line ko mobile me chota karo */
    .nav-item.active::after {
        height: 2px;
        bottom: -2px;

    }

    /* Dashboard / Login button ko compact karo */
    .dashboard-btn-link {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
        gap: 4px;
    }

    /* Body ki top padding ko kam karo kyunki header ki height kam hui hai */
    body {
        padding-top: 85px !important;
    }
}

/* 📱 Super Small Screens Fix (For phones like iPhone SE / older Androids) */
@media (max-width: 375px) {
    .logo-text {
        display: none;
        /* Bahut chhote phones me text hata kar sirf code icon dikhao */
    }

    .header-container {
        padding: 0 8px;
    }

    .dashboard-btn-link {
        padding: 7px 10px;
        font-size: 10.5px;
    }
}

@media (max-width: 600px) {

    /* Header container adjustments */
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    .logo-text {
        font-size: 15px;
    }

    .logo-icon {
        font-size: 14px;
    }

    .nav-links {
        gap: 6px;
    }

    /* 🟢 FIX 1: Nav item ke saare extra margins aur gaps ko zero karo taaki icon center ho jaye */
    .nav-item {
        font-size: 0 !important;
        padding: 6px 12px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        /* Purana desktop gap khatam */
    }

    /* Icon standalone alignment */
    .nav-item i {
        font-size: 16px !important;
        margin: 0 !important;
        /* Kisi bhi tarah ka side margin hata diya */
        padding: 0 !important;
    }

    .nav-item.active i,
    .nav-item:hover i {
        color: var(--neon-blue);
        filter: drop-shadow(0 0 8px var(--neon-blue));
    }

    /* 🟢 FIX 2: Patti ko thoda aur chota (8px) aur ekdum accurate center kiya */
    .nav-item.active::after {
        content: '';
        width: 8px !important;
        /* Width ko 14px se ghata kar 8px kar diya (Ultra Small) */
        height: 3px !important;
        /* Clean thickness */
        background: var(--neon-blue);
        box-shadow: 0 0 8px var(--neon-blue);

        /* Absolute precision centering */
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -2px !important;
        /* Icon ke thoda aur paas set kiya */
        border-radius: 100px !important;
    }

    /* Compact Dashboard link */
    .dashboard-btn-link {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
        gap: 4px;
    }

    body {
        padding-top: 85px !important;
    }
}

body {
    background-color: #030508 !important;
    /* Base space black */
    background-image: radial-gradient(circle at 50% -20%, rgba(0, 242, 254, 0.07) 0%, transparent 60%) !important;
    background-attachment: fixed !important;
    /* Scroll karne par gradient piche freeze rahega */
}