/* =====================================================
   VIREX SOCIAL — header.css  (fully responsive, fixed)
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--page-bg);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Clash Display', 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text-strong);
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* ── Gradient text ── */
.grad-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.grad-text-warm {
    background: var(--grad-warm2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.grad-text-cool {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══ BUTTONS ══ */
.btn-grad {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--grad-btn); color: #fff;
    font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 14.5px;
    padding: 16px 34px; border-radius: 50px;
    transition: all 0.3s; box-shadow: 0 4px 25px rgba(123,77,255,.35);
    position: relative; overflow: hidden;
}
.btn-grad::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity:0; transition:opacity 0.3s;
}
.btn-grad:hover { transform:translateY(-3px); box-shadow:0 10px 40px rgba(123,77,255,.5); }
.btn-grad:hover::after { opacity:1; }
.btn-grad svg { width:18px;height:18px;stroke:white;stroke-width:2.5;fill:none;flex-shrink:0; }

.btn-warm {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--grad-warm2); color: #fff;
    font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 14.5px;
    padding: 16px 34px; border-radius: 50px;
    transition: all 0.3s; box-shadow: 0 4px 25px rgba(255,138,101,.3);
}
.btn-warm:hover { transform:translateY(-3px); box-shadow:0 10px 40px rgba(255,138,101,.5); }
.btn-warm svg { width:18px;height:18px;stroke:white;stroke-width:2.5;fill:none;flex-shrink:0; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.85); border: 1.5px solid rgba(123,77,255,0.25);
    color: var(--text-strong);
    font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 14.5px;
    padding: 15px 30px; border-radius: 50px; transition: all 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(123,77,255,0.1);
}
.btn-ghost:hover {
    background:rgba(255,255,255,1); border-color:rgba(123,77,255,0.45);
    transform:translateY(-2px); box-shadow:0 8px 28px rgba(123,77,255,0.15);
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(123,77,255,0.25);
    background: rgba(255,255,255,0.8); color: var(--text-strong);
    font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 13px;
    padding: 14px 34px; border-radius: 50px; transition: all .3s;
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color:rgba(123,77,255,0.5); background:rgba(255,255,255,1);
    box-shadow:0 4px 20px rgba(123,77,255,.12); transform:translateY(-2px);
}

/* ══ SECTION COMMONS ══ */
.section-label {
    display:inline-flex; align-items:center; gap:9px;
    font-family:'Manrope',sans-serif; font-weight:700;
    font-size:11px; letter-spacing:3px; text-transform:uppercase;
    margin-bottom:14px; color: var(--purple);
}
.sl-dot { display:flex; gap:3px; }
.sl-dot span {
    width:5px; height:5px; border-radius:50%;
    background:currentColor; animation:dotBlink 1.5s infinite; display:inline-block;
}
.sl-dot span:nth-child(2) { animation-delay:0.2s; }
.sl-dot span:nth-child(3) { animation-delay:0.4s; }

.section-title {
    font-family:'Clash Display',sans-serif;
    font-size:clamp(28px,4.2vw,50px);
    line-height:1.12; margin-bottom:18px;
    letter-spacing:-0.5px; color:var(--text-strong); font-weight:800;
}
.section-desc {
    font-size:17px; line-height:1.85;
    color:var(--text-mid); max-width:520px; margin-bottom:60px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,248,246,0.88);
    backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(123,77,255,0.10);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(253,248,246,0.97);
    box-shadow: 0 4px 40px rgba(123,77,255,0.12);
}
.navbar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
    background: var(--grad-main);
}

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

/* ── Logo ── */
.nav-logo {
    font-family: 'Clash Display', sans-serif; font-weight: 800; font-size: 24px;
    letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 38px; height: 38px; background: var(--grad-main); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 900; color: white;
    box-shadow: 0 4px 20px rgba(123,77,255,0.35); flex-shrink: 0;
}
.logo-v    { background:var(--grad-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.logo-rest { color: var(--text-strong); }

/* ── Nav pill wrapper ── */
.nav-links {
    display: flex; gap: 2px; align-items: center;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(123,77,255,0.15);
    border-radius: 50px; padding: 5px;
    backdrop-filter: blur(10px);
}

/* Regular links */
.nav-links > a {
    font-size: 13.5px; font-weight: 600; color: var(--text-mid);
    padding: 8px 18px; border-radius: 50px; transition: all 0.25s;
    white-space: nowrap; font-family: 'Manrope', sans-serif;
}
.nav-links > a:hover { color:var(--text-strong); background:rgba(123,77,255,0.08); }
.nav-links > a.active {
    color: var(--text-strong); background: white;
    box-shadow: 0 2px 12px rgba(123,77,255,0.18);
}

/* ── Dropdown ── */
.nav-dropdown { position: relative; }

.nav-drop-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 600; color: var(--text-mid);
    padding: 8px 18px; border-radius: 50px; transition: all 0.25s;
    white-space: nowrap; font-family: 'Manrope', sans-serif;
    background: none; border: none; outline: none; cursor: pointer;
    text-decoration: none;
}
.nav-drop-toggle:hover { color:var(--text-strong); background:rgba(123,77,255,0.08); }

.nav-dropdown.services-active > .nav-drop-toggle {
    color: var(--text-strong); background: white;
    box-shadow: 0 2px 12px rgba(123,77,255,0.18);
}

/* ── Chevron ── */
.chevron { width: 13px; height: 13px; transition: transform 0.3s; }
.chevron path { stroke: var(--text-mid); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown.services-active .chevron path { stroke: var(--text-strong); }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* ══════════════════════════════════════
   MEGA MENU  —  dark, polished

   FIX: Gap ki wajah se hover break hota tha.
   Solution:
     1. top: 100%  — gap bilkul khatam (pehle 20px tha)
     2. padding-top: 12px — menu andar se neeche shift hota hai,
        caret aur visual spacing preserve rehti hai
     3. ::before bridge — invisible 12px tall transparent block
        button aur menu ke beech mouse ko "pakad" leta hai
        taake hover kabhi break na ho
══════════════════════════════════════ */
.mega-menu {
    position: absolute;
    top: 100%;                          /* ← FIX: was calc(100% + 20px) */
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 800px;

    /* Dark glass card */
    background: #13111e;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 32px 80px rgba(0,0,0,0.65),
        0 0 0 1px rgba(123,77,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);

    /* padding-top pushes content down so caret has room */
    padding: 12px 0 0;                  /* ← FIX: top padding replaces the lost gap */
    overflow: visible;                  /* ← FIX: was hidden — ::before bridge needs to stick out */

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}

/* ── Invisible hover bridge ──────────────────────────────
   Sits above the mega-menu, fills the gap between the
   toggle button and the menu top edge. Mouse passing
   through this area keeps :hover alive on .nav-dropdown.
   Height = padding-top value (12px) + a little extra.
──────────────────────────────────────────────────────── */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -14px;                         /* ← bridges upward into the gap */
    left: 0;
    right: 0;
    height: 14px;                       /* ← covers the gap */
    background: transparent;           /* ← invisible */
    pointer-events: auto;              /* ← catches mouse movement */
}

/* Top gradient accent bar — now a separate ::after */
.mega-menu::after {
    content: '';
    position: absolute;
    top: 12px;                          /* ← sits at the top of the dark card */
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        #e040fb 0%, #7c3aed 35%, #2563eb 70%, #f97316 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Caret arrow — now a child element in HTML (see note below)
   We lost the CSS ::after caret because we're using it for
   the gradient bar. Add this inside .mega-menu in HTML:
   <span class="mega-caret" aria-hidden="true"></span>       */
.mega-caret {
    position: absolute;
    top: 5px;                           /* just below the bridge, above the bar */
    left: 50%;
    width: 14px; height: 14px;
    background: #13111e;
    border-left: 1px solid rgba(255,255,255,0.09);
    border-top: 1px solid rgba(255,255,255,0.09);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px 0 0 0;
    pointer-events: none;
    z-index: 1;
}

/* ── Inner layout ── */
.mega-header {
    padding: 20px 28px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 10px;
}
.mega-header-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.mega-header-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(123,77,255,0.18); border: 1px solid rgba(123,77,255,0.35);
    color: #c4b5fd; font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 50px; letter-spacing: 0.5px;
}
.mega-header-pill-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #a78bfa; animation: pulse 1.5s infinite;
}

.mega-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.mega-col {
    padding: 22px 24px 26px;
    position: relative;
}
.mega-col + .mega-col::before {
    content: '';
    position: absolute; left: 0; top: 16px; bottom: 16px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.08) 20%,
        rgba(255,255,255,0.08) 80%,
        transparent
    );
}

.mega-col-label {
    font-family: 'Manrope', sans-serif;
    font-size: 9.5px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.28);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 7px;
}
.mega-col-label::before {
    content: '';
    width: 14px; height: 1.5px;
    background: var(--grad-main, linear-gradient(90deg,#7c3aed,#2563eb));
    border-radius: 2px; flex-shrink: 0;
}

/* Mega items */
.mega-menu .mega-item {
    display: flex !important; align-items: center !important; gap: 10px !important;
    padding: 8px 10px !important; border-radius: 10px !important;
    transition: background 0.18s, padding-left 0.2s, color 0.18s !important;
    color: rgba(255,255,255,0.62) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13.5px !important; font-weight: 500 !important;
    text-decoration: none !important; margin-bottom: 2px !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.mega-menu .mega-item:hover {
    background: rgba(123,77,255,0.14) !important;
    color: #fff !important;
    padding-left: 16px !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}
.mega-menu .mega-item.active {
    background: rgba(123,77,255,0.20) !important;
    color: #fff !important;
    padding-left: 16px !important;
}

.mega-dot {
    width: 6px !important; height: 6px !important; border-radius: 50% !important;
    background: rgba(123,77,255,0.55) !important; flex-shrink: 0 !important;
    transition: background 0.2s, box-shadow 0.2s !important;
    display: inline-block !important;
}
.mega-menu .mega-item:hover .mega-dot,
.mega-menu .mega-item.active .mega-dot {
    background: #a78bfa !important;
    box-shadow: 0 0 8px rgba(167,139,250,0.7) !important;
}

/* Mega menu global link reset */
.mega-menu a,
.mega-menu a:link,
.mega-menu a:visited {
    color: rgba(255,255,255,0.62) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    border-radius: 10px !important;
}
.mega-menu a:hover,
.mega-menu a:focus {
    color: #fff !important;
    background: rgba(123,77,255,0.14) !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ── Nav Right ── */
.nav-right { display:flex; align-items:center; gap:12px; flex-shrink: 0; }

.nav-badge {
    display:flex; align-items:center; gap:6px;
    background:rgba(255,181,74,0.12); border:1px solid rgba(255,181,74,0.3);
    color:#E8904A; font-size:11px; font-weight:700;
    padding:5px 12px; border-radius:50px; letter-spacing:0.5px;
}
.nav-badge-dot {
    width:6px; height:6px; border-radius:50%;
    background:var(--c-orange, #f97316); animation:pulse 1.5s infinite;
}

.nav-cta {
    background: var(--grad-btn, linear-gradient(135deg,#7c3aed,#2563eb)); color: white;
    font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 13.5px;
    padding: 11px 26px; border-radius: 50px; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(123,77,255,0.35); white-space: nowrap;
    border: none; cursor: pointer;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(123,77,255,0.45); }

/* ── Hamburger ── */
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 6px; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-mid, #6b7280);
    border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(253,248,246,0.99);
    border-top: 1px solid rgba(123,77,255,0.10);
    padding: 12px 16px 20px;
    backdrop-filter: blur(20px);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }

/* Top-level links */
.mobile-menu > a,
.mob-services-row {
    border-bottom: 1px solid rgba(123,77,255,0.08);
}
.mobile-menu > a {
    color: var(--text-mid, #6b7280); font-size: 15px; font-weight: 600;
    padding: 13px 4px;
    font-family: 'Manrope', sans-serif; transition: color 0.2s;
    display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu > a:hover,
.mobile-menu > a.active { color: var(--text-strong, #111); }

/* Services row */
.mob-services-row {
    display: flex; align-items: center;
}
.mob-services-link {
    flex: 1; color: var(--text-mid, #6b7280); font-size: 15px; font-weight: 600;
    padding: 13px 4px; font-family: 'Manrope', sans-serif; transition: color 0.2s;
}
.mob-services-link:hover,
.mob-services-link.active { color: var(--text-strong, #111); }

.mobile-acc-toggle {
    background: none; border: none; cursor: pointer;
    padding: 13px 4px; display: flex; align-items: center;
}
.mob-chevron { width: 16px; height: 16px; transition: transform 0.3s; }
.mob-chevron path { stroke: var(--text-mid, #6b7280); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mobile-acc-toggle.open .mob-chevron { transform: rotate(180deg); }

/* Services sub-panel */
.mobile-services-panel {
    display: none;
    flex-direction: column;
    background: rgba(123,77,255,0.03);
    border-radius: 12px;
    margin: 6px 0 10px;
    overflow: hidden;
    border: 1px solid rgba(123,77,255,0.12);
}
.mobile-services-panel.open { display: flex; }

.mob-svc-group-label {
    font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--muted, #9ca3af);
    padding: 12px 16px 4px;
}
.mobile-services-panel a {
    font-size: 13.5px; font-weight: 500;
    color: var(--text-mid, #6b7280);
    padding: 10px 16px; transition: all 0.2s;
    font-family: 'Manrope', sans-serif;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(123,77,255,0.06);
}
.mobile-services-panel a:last-child { border-bottom: none; }
.mobile-services-panel a:hover {
    color: var(--text-strong, #111);
    background: rgba(123,77,255,0.08);
    padding-left: 22px;
}
.mobile-services-panel a.active {
    color: var(--text-strong, #111);
    background: rgba(123,77,255,0.12);
    padding-left: 22px;
}
.mob-dot-sm {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--purple, #7b4dff); flex-shrink: 0;
    box-shadow: 0 0 5px rgba(123,77,255,0.5);
}

/* Contact CTA in mobile */
.mobile-menu > a.mob-cta {
    margin-top: 10px;
    background: var(--grad-btn, linear-gradient(135deg,#7c3aed,#2563eb));
    color: #fff; border-radius: 50px; padding: 13px 20px;
    font-family: 'Clash Display', sans-serif; font-weight: 700;
    justify-content: center; border-bottom: none;
}
.mobile-menu > a.mob-cta:hover { opacity: 0.9; color: #fff; }

/* ── Shared Animations ── */
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
@keyframes dotBlink { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.04)} }
@keyframes floatY   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes scrollLeft  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollRight { from{transform:translateX(-50%)} to{transform:translateX(0)} }
@keyframes pillShift { 0%,100%{filter:hue-rotate(0deg)} 50%{filter:hue-rotate(60deg)} }

/* ── Responsive Breakpoints ── */
@media (max-width: 1180px) {
    .mega-menu { width: 720px; }
    .nav-links > a,
    .nav-drop-toggle { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 1024px) {
    .mega-menu { width: 640px; }
    .mega-col { padding: 18px 18px 22px; }
    .mega-item { font-size: 13px; }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-badge  { display: none; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .nav-inner { height: 64px; }
    .nav-logo  { font-size: 20px; }
    .logo-icon { width: 34px; height: 34px; font-size: 15px; }
    .nav-cta   { padding: 10px 18px; font-size: 12.5px; }
}

@media (max-width: 400px) {
    .nav-logo span { display: none; }
}

/* ══════════════════════════════════════
   MEGA MENU FULL ISOLATION — Maximum specificity
   Uses #mainNav to beat any page-level CSS
══════════════════════════════════════ */
#mainNav .mega-menu {
    background: #13111e !important;
    overflow: visible !important;        /* ← keeps bridge ::before visible */
}

#mainNav .mega-col-label {
    color: rgba(255,255,255,0.28) !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* CRITICAL: Every link inside mega menu — flat, no background, no pill */
#mainNav .mega-menu a,
#mainNav .mega-menu a:link,
#mainNav .mega-menu a:visited,
#mainNav .mega-menu .mega-item {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: rgba(255,255,255,0.62) !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    font-family: 'Manrope', sans-serif !important;
    text-decoration: none !important;
    margin-bottom: 2px !important;
    transition: background 0.18s, padding-left 0.2s, color 0.18s !important;
    transform: none !important;
    width: auto !important;
}
#mainNav .mega-menu a:hover,
#mainNav .mega-menu a:focus,
#mainNav .mega-menu .mega-item:hover {
    background: rgba(123,77,255,0.14) !important;
    background-color: rgba(123,77,255,0.14) !important;
    color: #fff !important;
    padding-left: 16px !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}
#mainNav .mega-menu a.active,
#mainNav .mega-menu .mega-item.active {
    background: rgba(123,77,255,0.20) !important;
    background-color: rgba(123,77,255,0.20) !important;
    color: #fff !important;
    padding-left: 16px !important;
}

/* Mega dot */
#mainNav .mega-menu .mega-dot {
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    min-height: 6px !important;
    border-radius: 50% !important;
    background: rgba(123,77,255,0.55) !important;
    background-color: rgba(123,77,255,0.55) !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    border: none !important;
    box-shadow: none !important;
}
#mainNav .mega-menu a:hover .mega-dot,
#mainNav .mega-menu .mega-item:hover .mega-dot,
#mainNav .mega-menu a.active .mega-dot {
    background: #a78bfa !important;
    background-color: #a78bfa !important;
    box-shadow: 0 0 8px rgba(167,139,250,0.7) !important;
}

/* Header bar inside mega menu */
#mainNav .mega-header {
    padding: 20px 28px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
#mainNav .mega-header-title {
    color: rgba(255,255,255,0.35) !important;
    background: transparent !important;
}

/* Body grid */
#mainNav .mega-body {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    background: transparent !important;
}