/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}




.cookies-card {
    width: 375px;
    padding: 25px;
    color: #1E2337;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    transition: all .5s;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 18px rgb(0 0 0 / 20%);
    border-radius: 20px;
}

.cookies-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cookies-card__title {
    font-size: inherit;

}

.cookies-card__close {
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #797878;
    transition: all 0.2s;
}

.cookies-card__close:hover {
    color: #000;

}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 13px;
    margin-bottom: 24px;
}

.cookies-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cookies-card__btn-outline {
    text-decoration: none;
    padding: 12px 20px;
    color: #001E00;

}

.cookies-card__btn {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
    background-color: #363636;
    transition: all 0.2s;
}

.cookies-card__btn:hover {
    background-color: #0e0e0e;
}




@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}



.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}


button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}




.button-loader .spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

.full-page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: hsl(var(--black) / .5);
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: hsl(var(--white));
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3.2px;
    left: 36.8px;
    width: 6.4px;
    height: 17.6px;
    border-radius: 20%;
    background: currentColor;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.gateway-card .payment-system-list {
    --thumb-width: 80px;
    --thumb-height: 32px;
    --radio-size: 20px;
    border-radius: 5px;
    height: 100%;
}

.gateway-card .payment-system-list.is-scrollable {
    max-height: min(405px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
    padding-right: 8px;
}

.gateway-card .payment-system-list::-webkit-scrollbar {
    width: 5px;
}

.gateway-card .payment-system-list::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base));
    border-radius: 10px;
}

.gateway-card .payment-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px 16px;
    border: 1px solid hsl(var(--border-color));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gateway-card .payment-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.gateway-card .payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;
}

.gateway-card .payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
    color: hsl(var(--black)/0.65);
}

.gateway-card .payment-item__thumb {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: right;
    padding-left: 10px;
    flex-shrink: 0;
}

.gateway-card .payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.gateway-card .payment-item__thumb:has(.text) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.gateway-card .payment-item__btn {
    font-size: 0.875rem;
    color: hsl(var(--success));
    font-weight: 600;
}

.gateway-card .payment-item__check {
    border: 1px solid hsl(var(--border-color));
}

.gateway-card .payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 4px solid hsl(var(--base));
}

.gateway-card .payment-item__right {
    width: 100%;
}


.deposit-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.deposit-info * {
    font-weight: 600;
}

.deposit-info__input * {
    font-weight: 400;
}

.total-amount {
    border-top: 1px solid hsl(var(--base-two)/0.08);
}

.withdrawmethod-img {
    height: 45px;
    width: 45px;
}

.withdrawmethod-img img {
    height: 100% !important;
    width: 100% !important;
}

/* ===============================
   OGNI MOHUB PREMIUM FINTECH - OPTIMIZED
   Variables + DRY Principles
=============================== */

:root {
    /* Brand Colors */
    --brand-primary: #4800ff;
    --brand-secondary: #8e01f5;
    
    /* Neon Colors */
    --neon-cyan: #00e5ff;
    --neon-blue: #2979ff;
    --neon-mint: #00ffd5;
    --neon-light: #7fd4ff;
    
    /* Backgrounds */
    --dark-primary: #010416;
    --dark-secondary: #0c0f23;
    
    /* Gradients */
    --gradient-neon: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-mint));
    --gradient-neon-135: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    --gradient-footer-bg: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
    --gradient-particle: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue), var(--neon-mint), var(--neon-cyan));
    
    /* Text Shadows */
    --glow-text-sm: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-blue);
    --glow-text-md: 0 0 3px var(--neon-cyan), 0 0 6px var(--neon-blue);
    --glow-text-lg: 0 0 4px var(--neon-cyan), 0 0 8px var(--neon-blue);
    
    /* Box Shadows */
    --glow-box-sm: 0 0 4px rgba(0,229,255,0.2);
    --glow-box-md: 0 0 12px var(--neon-cyan), 0 0 24px var(--neon-blue), 0 0 32px var(--neon-mint);
    --glow-box-lg: 0 0 24px var(--neon-cyan), 0 0 48px var(--neon-blue);
    --glow-button: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-blue);
    --glow-button-hover: 0 0 24px var(--neon-cyan), 0 0 48px var(--neon-blue);
    
    /* Borders */
    --border-neon: 1px solid rgba(0,229,255,0.3);
    --border-neon-light: 1px solid rgba(0,229,255,0.25);
    --border-neon-input: 1px solid rgba(0,229,255,0.35);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-underline: width 0.4s ease;
    
    /* Transforms */
    --hover-lift-sm: translateY(-2px) scale(1.04);
    --hover-lift-md: translateY(-2px) scale(1.05);
    --hover-slide: translateX(3px);
}


/* ===============================
   OGNI MOHUB PREMIUM FINTECH FOOTER
   Neon + Floating Particle Glow + Adjusted Blur
=============================== */

/* Footer base */
footer.footer-area.bg-img {
    background-image: none !important;
    background: linear-gradient(180deg, #0c0f23 0%, #010416 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Animated gradient behind footer */
footer.footer-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #00e5ff, #2979ff, #00ffd5, #00e5ff);
    background-size: 400% 400%;
    filter: blur(40px); /* reduced blur from 60px */
    opacity: 0.12;
    animation: pulseGradient 20s ease infinite;
    z-index: 0;
}

@keyframes pulseGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating particle container */
footer.footer-area .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Particle element */
.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00e5ff;
    opacity: 0.1;
    box-shadow: 0 0 4px #00e5ff, 0 0 8px #2979ff; /* subtle glow */
    animation: floatParticle linear infinite;
    animation-direction: alternate;
}

@keyframes floatParticle {
    0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    50% { transform: translate(var(--x-move, 50px), var(--y-move, -50px)) scale(1.2); opacity: 0.2; }
    100% { transform: translate(var(--x-move, 50px), var(--y-move, -50px)) scale(1); opacity: 0.1; }
}

/* Ensure all footer content is above particles */
.footer-area * {
    position: relative;
    z-index: 1;
}

/* Headings with subtle neon gradient (reduced blur) */
.footer-area .newsletter-title,
.footer-area .footer-item__title {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 2px #00e5ff, 0 0 4px #00f0ff; /* reduced from 3/5px */
    background: linear-gradient(90deg, #00e5ff, #2979ff, #00ffd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideGlow 5s linear infinite;
}

@keyframes slideGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Links with neon underline */
.footer-area .footer-menu__link {
    color: #00e5ff !important;
    position: relative;
    transition: color 0.3s ease;
}

.footer-area .footer-menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, #2979ff, #00ffd5);
    transition: width 0.4s ease;
}

.footer-area .footer-menu__link:hover::after {
    width: 100%;
}

.footer-area .footer-menu__link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 3px #00e5ff, 0 0 6px #2979ff;
}

/* Newsletter box */
.footer-area .newsletter {
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 24px rgba(0,229,255,0.1);
    transition: all 0.3s ease;
}

/* Newsletter input */
.footer-area .newsletter-form .form--control {
    background: #010416 !important;
    border: 1px solid rgba(0,229,255,0.35) !important;
    color: #ffffff !important;
}

.footer-area .newsletter-form .form--control::placeholder {
    color: #7fd4ff !important;
}

/* Newsletter button */
.footer-area .newsletter-form button {
    background: linear-gradient(135deg, #00e5ff, #2979ff) !important;
    border-radius: 16px;
    color: #010416 !important;
    font-weight: 700;
    transition: all 0.3s;
}

.footer-area .newsletter-form button:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 24px #00e5ff, 0 0 48px #2979ff;
    animation: pulseButton 2s infinite alternate;
}

@keyframes pulseButton {
    0% { box-shadow: 0 0 16px #00e5ff, 0 0 32px #2979ff; }
    100% { box-shadow: 0 0 24px #00e5ff, 0 0 48px #2979ff; }
}

/* Social icons */
.footer-area .social-list__link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0,229,255,0.08);
    color: #00e5ff !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0,229,255,0.2);
}

.footer-area .social-list__link:hover {
    background: #00e5ff;
    color: #010416 !important;
    box-shadow: 0 0 12px #00e5ff, 0 0 24px #2979ff, 0 0 32px #00ffd5;
    transform: translateY(-2px) scale(1.05);
}

/* Language switcher - make text fully visible white */
.footer-area .lang-box-btn .text {
    color: #ffffff !important;
}

/* Bottom footer */
.footer-area .bottom-footer {
    border-top: 1px solid rgba(0,229,255,0.25);
    background: #010416;
    padding: 15px 0;
}

.footer-area .bottom-footer-text {
    color: #7fd4ff;
    font-size: 13px;
}

.footer-area .bottom-footer-text a {
    color: #00e5ff !important;
    transition: all 0.3s;
}

.footer-area .bottom-footer-text a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 4px #00e5ff, 0 0 8px #2979ff;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .footer-area .footer-top-wrapper {
        flex-direction: column;
        gap: 25px;
    }
}

:root {
    --brand-primary: #4800ff;
    --brand-secondary: #8e01f5;
}


/* Sticky Header */
header#header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* ====================================
   Premium Header Styles - Dark Theme
   ==================================== */

/* Header Container */
.header,
.header.fixed-header {
    background: linear-gradient(135deg, #0f2942 0%, #1a3a52 100%) !important;
    border-bottom: 1px solid rgba(100, 200, 255, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    z-index: 1000;
}

/* Premium Navbar Styling */
.navbar {
    padding: 1rem 0;
}

/* Logo Styling */
.navbar-brand.logo img {
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.navbar-brand.logo:hover img {
    transform: scale(1.02);
    filter: brightness(1.2);
}

/* Navigation Links */
.header .nav-menu .nav-link,
.nav-menu .nav-link {
    color: #64d8ff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    border-radius: 0.5rem;
}

/* Desktop Navigation - Force neon colors */
@media (min-width: 1200px) {
    .header .nav-menu .nav-item .nav-link {
        color: #64d8ff !important;
    }
    
    .header .nav-menu .nav-item:hover .nav-link {
        color: #ffffff !important;
        background: rgba(100, 200, 255, 0.15) !important;
    }
    
    .header .nav-menu .nav-item.active .nav-link {
        color: #ffffff !important;
        background: rgba(100, 200, 255, 0.25) !important;
        box-shadow: 0 0 12px rgba(100, 200, 255, 0.3);
    }
}

.header .nav-menu .nav-link:hover,
.nav-menu .nav-link:hover {
    color: #ffffff !important;
    background: rgba(100, 200, 255, 0.15) !important;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #64d8ff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-item.active .nav-link::after {
    width: 80%;
}

/* Active Menu Item */
.header .nav-menu .nav-item.active .nav-link,
.nav-menu .nav-item.active .nav-link {
    color: #ffffff !important;
    background: rgba(100, 200, 255, 0.25) !important;
    box-shadow: 0 0 12px rgba(100, 200, 255, 0.3);
}

/* Premium Button Styling */
.header .btn--base,
.btn--base {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    border: 1px solid rgba(100, 200, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.header .btn--base:hover,
.btn--base:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
    border-color: rgba(100, 200, 255, 0.5) !important;
}

/* Premium Outline Button */
.header .btn-outline--dark,
.btn-outline--dark {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(100, 200, 255, 0.3) !important;
    color: #e0f0ff !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header .btn-outline--dark:hover,
.btn-outline--dark:hover {
    background: rgba(100, 200, 255, 0.15) !important;
    border-color: #64d8ff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(100, 200, 255, 0.2);
    transform: translateY(-1px);
}

.header .btn-outline--dark .icon,
.btn-outline--dark .icon {
    margin-right: 0.5rem;
    font-size: 1.1em;
    color: #64d8ff;
    transition: color 0.3s ease;
}

.header .btn-outline--dark:hover .icon,
.btn-outline--dark:hover .icon {
    color: #ffffff;
}

/* Premium Dropdown Styling */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: linear-gradient(135deg, #0f2942 0%, #1a3a52 100%);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: #e0f0ff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    color: #64d8ff;
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(100, 200, 255, 0.1);
    color: #ffffff;
    transform: translateX(4px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
    color: #3b82f6;
}

.dropdown-item:active {
    background: rgba(100, 200, 255, 0.15);
}

/* Mobile Menu Toggle Button */
.header-button {
    background: rgba(100, 200, 255, 0.1);
    border: 1px solid rgba(100, 200, 255, 0.3);
    color: #64d8ff !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.header-button:hover {
    background: rgba(100, 200, 255, 0.2);
    border-color: #64d8ff;
    color: #ffffff !important;
}

.header-button i {
    font-size: 1.5rem;
    color: #64d8ff !important;
}

.header-button:hover i {
    color: #ffffff !important;
}

/* Navbar toggler - additional targeting */
.header .navbar-toggler.header-button {
    color: #64d8ff !important;
    background: rgba(100, 200, 255, 0.1) !important;
    border-color: rgba(100, 200, 255, 0.3) !important;
}

.header .navbar-toggler.header-button:hover {
    color: #ffffff !important;
    background: rgba(100, 200, 255, 0.2) !important;
    border-color: #64d8ff !important;
}

.header .navbar-toggler.header-button i {
    color: #64d8ff !important;
}

.header .navbar-toggler.header-button:hover i {
    color: #ffffff !important;
}

/* Custom Navigation Offcanvas */
.custom-nav {
    background: linear-gradient(135deg, #0f2942 0%, #1a3a52 100%);
    border-left: 1px solid rgba(100, 200, 255, 0.2);
}

.custom-nav-header {
    background: rgba(100, 200, 255, 0.05);
    border-bottom: 1px solid rgba(100, 200, 255, 0.2);
    padding: 1.5rem;
}

.custom-nav-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364d8ff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-nav-header .btn-close:hover {
    transform: rotate(90deg);
}

/* Pill Button Styling */
.pill {
    border-radius: 50px;
}

/* Header Right Section */
.header-right {
    gap: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .custom-nav-body {
        padding: 2rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        border-radius: 0.5rem;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(100, 200, 255, 0.15);
    }
}

/* Subtle Animation for Header on Scroll */
.header.scrolled {
    background: linear-gradient(135deg, #081d33 0%, #152e42 100%) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Premium Glass Effect for Buttons */
.btn--md {
    position: relative;
    overflow: hidden;
}

.btn--md::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn--md:hover::before {
    left: 100%;
}

/* Dropdown Animation */
.dropdown-menu {
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States for Accessibility */
.nav-link:focus,
.btn:focus,
.dropdown-item:focus {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* Premium Divider for Dropdown */
.dropdown-divider {
    border-top: 1px solid rgba(100, 200, 255, 0.2);
    margin: 0.5rem 0;
}

/* ====================================
   CRITICAL OVERRIDES - Must be last
   ==================================== */

/* Force neon colors on desktop navigation - ULTRA SPECIFIC */
@media (min-width: 1200px) {
    /* Target all possible desktop nav selectors */
    .header .nav-menu .nav-item .nav-link,
    .header .nav-menu .nav-item > a,
    body .header .navbar .nav-menu .nav-item .nav-link,
    body .header .navbar .nav-menu .nav-item > a {
        color: #64d8ff !important;
        background: transparent !important;
    }
    
    .header .nav-menu .nav-item:hover .nav-link,
    .header .nav-menu .nav-item:hover > a,
    body .header .navbar .nav-menu .nav-item:hover .nav-link,
    body .header .navbar .nav-menu .nav-item:hover > a {
        color: #ffffff !important;
        background: rgba(100, 200, 255, 0.15) !important;
    }
    
    .header .nav-menu .nav-item.active .nav-link,
    .header .nav-menu .nav-item.active > a,
    body .header .navbar .nav-menu .nav-item.active .nav-link,
    body .header .navbar .nav-menu .nav-item.active > a {
        color: #ffffff !important;
        background: rgba(100, 200, 255, 0.25) !important;
        box-shadow: 0 0 12px rgba(100, 200, 255, 0.3);
    }
    
    .header .nav-menu .nav-item.active .nav-link::before,
    .header .nav-menu .nav-item.active > a::before {
        width: 100%;
    }
    
    /* Override any xl breakpoint specific styles */
    .header .nav-menu .nav-item .nav-link {
        color: #64d8ff !important;
        position: relative !important;
        cursor: pointer !important;
        font-weight: 500 !important;
    }
}

/* Desktop XL breakpoint override */
@media (min-width: 1400px) {
    .header .nav-menu .nav-item .nav-link {
        color: #64d8ff !important;
    }
    
    .header .nav-menu .nav-item:hover .nav-link {
        color: #ffffff !important;
    }
}

/* Mobile hamburger menu icon neon color */
.header .navbar-toggler,
.navbar-toggler.header-button,
button.header-button {
    color: #64d8ff !important;
}

.header .navbar-toggler:hover,
.navbar-toggler.header-button:hover,
button.header-button:hover {
    color: #ffffff !important;
}

#hiddenNav,
#hiddenNav i {
    color: #64d8ff !important;
}

.header-button:hover #hiddenNav,
.header-button:hover #hiddenNav i {
    color: #ffffff !important;
}