:root {
    --bg-dark: #070b14;
}

body {
    background-color: var(--bg-dark) !important; 
    color: #ffffff !important; 
}

/* =========================================
   SPINZER NEON KHATARNAK FOOTER
========================================= */
.spinzer-neon-footer {
    position: relative;
    background: #070a13; /* Ultra deep dark blue/black */
    color: #a0aec0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    padding-top: 60px;
    z-index: 1;
}

/* Ambient Glowing Blobs in Background */
.footer-glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: floatGlow 8s infinite alternate;
}
.blob-left {
    top: -100px;
    left: -100px;
    background: #00f0ff;
}
.blob-right {
    bottom: -100px;
    right: -100px;
    background: #d100ff;
}

@keyframes floatGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(20px, 20px); }
}

/* Glowing Neon Top Line */
.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f0ff, #d100ff, transparent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid */
.pc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

/* Brand Column */
.pc-footer-logo img {
    height: 45px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.pc-footer-logo img:hover {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}
.pc-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Icons (Neon Hover) */
.pc-footer-social {
    display: flex;
    gap: 15px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
    background: #00f0ff;
    color: #000;
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    transform: translateY(-5px);
}

/* Headings */
.pc-footer-col h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.head-line {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d100ff;
    box-shadow: 0 0 10px #d100ff;
    transition: width 0.3s ease;
}
.pc-footer-col:hover .head-line {
    width: 100%; /* Line expands on column hover */
}

/* Cyberpunk Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.footer-links li a i {
    font-size: 12px;
    color: #d100ff;
    transition: all 0.3s ease;
}
.footer-links li a:hover {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    transform: translateX(8px); /* Slides right */
}
.footer-links li a:hover i {
    color: #00f0ff;
}

/* Contact Details Widget */
.pc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pc-footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(209, 0, 255, 0.1);
    color: #d100ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(209, 0, 255, 0.2);
    transition: all 0.3s ease;
}
.pc-footer-contact li:hover .icon-box {
    background: #d100ff;
    color: #fff;
    box-shadow: 0 0 15px rgba(209, 0, 255, 0.5);
}
.contact-text {
    display: flex;
    flex-direction: column;
}
.contact-text span {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Bottom Copyright Bar */
.pc-footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.pc-footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.pc-footer-bottom p span {
    color: #00f0ff;
    font-weight: 600;
}
.bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
    transition: color 0.3s ease;
}
.bottom-links a:hover {
    color: #d100ff;
}

@media (max-width: 768px) {
    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    .bottom-links a {
        margin: 0 10px;
    }
}
  .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 80px;
            width: 55px;
            height: 55px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            line-height: 55px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 9999;
            transition: transform 0.2s ease-in-out;
        }

        .whatsapp-float:hover {
            color: #fff;
            transform: scale(1.1);
        }

        /* Dropdown Styling */
        .dropdown-menu {
            min-width: 240px;
            padding: 8px 0;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border: none;
        }
        .dropdown-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: 220px;
            overflow-y: auto;
            overflow-x: hidden;
        }
        .dropdown-menu ul li {
            margin: 0;
            padding: 0;
        }
        .dropdown-menu .dropdown-item {
            display: block;
            width: 100%;
            padding: 10px 16px;
            white-space: nowrap;
            font-size: 14px;
            color: #222;
            text-decoration: none;
            transition: 0.3s;
        }
        .dropdown-menu .dropdown-item:hover {
            background: #f5f5f5;
            color: #000;
        }
        .dropdown-menu ul::-webkit-scrollbar {
            width: 6px;
        }
        .dropdown-menu ul::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        .dropdown-menu ul::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
    
    /* =========================================
       SPINZER SLEEK & PREMIUM HEADER
    ========================================= */
   /* =========================================
   SPINZER SLEEK & PREMIUM HEADER (100% COMPLETE)
========================================= */

/* --- 1. BOOTSTRAP-KILLER & BASE RESETS --- */
.spinzer-modern-header ul, 
.spinzer-modern-header li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.spinzer-modern-header a {
    text-decoration: none !important;
    outline: none !important;
}

/* --- 2. PC LAYOUT --- */
.spinzer-modern-header {
    position: fixed;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    width: 95%; 
    max-width: 1400px;
    height: 60px; 
    border-radius: 50px; 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Running Neon Edge Animation */
.header-animated-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.header-animated-border::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    /* Running Neon Colors */
    background: conic-gradient(from 0deg, transparent 70%, #d100ff 85%, #00f0ff 100%);
    animation: borderSpin 4s linear infinite;
}

@keyframes borderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Inner Dark Container */
.header-inner {
    position: absolute;
    z-index: 2;
    width: calc(100% - 4px); 
    height: calc(100% - 4px);
    background: rgba(10, 15, 30, 0.95); 
    backdrop-filter: blur(16px); 
    border-radius: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 0 30px;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
}
.brand-logo img {
    height: 32px; 
    width: auto;
    object-fit: contain;
}

/* Main Navigation */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}
.main-nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Menu Text & Hover Glow */
.nav-item {
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 8px 16px; 
    border-radius: 20px;
    z-index: 5;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #ff2a2a; 
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.nav-item:hover::before, .nav-item.active::before {
    opacity: 0.8; 
}

.nav-item:hover, .nav-item.active {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Unique Modern Dropdown */
.has-dropdown {
    position: relative;
    height: 100%; 
    display: flex;
    align-items: center;
}

.glass-dropdown {
    position: absolute;
    top: 55px; 
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 240px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    pointer-events: none;
}

.has-dropdown:hover .glass-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.glass-dropdown.align-right {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(15px) scale(0.95);
}
.has-dropdown:hover .glass-dropdown.align-right {
    transform: translateX(0) translateY(0) scale(1);
}

.glass-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.glass-dropdown ul li {
    height: auto;
}

.glass-dropdown ul li a {
    color: #cbd5e1 !important;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.glass-dropdown ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    transform: translateX(5px);
}

.glass-dropdown ul li a i {
    color: #d100ff;
    font-size: 16px;
}

/* Client Portal Button */
.header-actions {
    display: flex;
    align-items: center;
    height: 100%;
}
.btn-portal {
    background: linear-gradient(135deg, #00f0ff, #d100ff);
    color: #fff !important;
    padding: 0 20px;
    height: 38px; 
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(209, 0, 255, 0.3);
}

.btn-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 0, 255, 0.5);
}

.logout-text { color: #ff4757 !important; }

/* --- 4. MOBILE LAYOUT & FIXES --- */
.mobile-toggle { 
    display: none; 
    background: transparent !important; 
    border: none !important; 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .spinzer-modern-header { width: 95%; top: 10px; height: 60px; }
    .header-actions { display: none; }
    .mobile-toggle { display: block; z-index: 10000; }
    .mobile-toggle i { font-size: 28px !important; }

    /* Main Menu Container - Mobile */
    .main-nav {
        display: none; 
        position: absolute;
        top: 75px;
        left: -30px !important; /* Perfect Alignment */
        width: calc(100% + 60px) !important; /* Full Width fix */
        background: #0f172a; 
        border-radius: 20px !important;
        padding: 10px 0 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        border: 1px solid rgba(255,255,255,0.1);
        z-index: 9999;
        height: auto; 
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .main-nav ul li {
        width: 100%;
        height: auto; 
    }

    .nav-item {
        width: 100%;
        padding: 12px 30px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        justify-content: space-between; 
        font-size: 15px !important;
    }
    
    .nav-item::before {
        display: none; 
    }

    /* Accordion Dropdown styling for Mobile */
    .has-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100% !important;
    }

    .glass-dropdown {
        position: static; 
        transform: none !important;
        background: rgba(0,0,0,0.2); 
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        display: none; 
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .glass-dropdown.show {
        display: block; 
    }

    .glass-dropdown ul li a {
        padding: 12px 25px 12px 50px !important; /* Proper indentation */
        border-bottom: 1px solid rgba(255,255,255,0.02);
        font-size: 13px;
    }
}