/* 
   2026 Modern Design System for pay.saypra.com
   Theme: Premium Dark Glassmorphism
   Author: AI
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --font-primary: 'Inter', sans-serif;
}

/* Global Typography & Reset */
body {
    font-family: var(--font-primary) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-primary) !important;
    letter-spacing: -0.02em;
}

/* Header & Navbar tweaks */
.header-frontend {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.header-frontend .header__top {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-frontend .header-top-list li,
.header-frontend .header-top-list li a,
.header-frontend .social-links li a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill) !important;
    padding: 10px 24px !important;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}

.header-frontend .main-menu,
.header-frontend .nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1200px) {
    .header-frontend .nav-right {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
}

.header-frontend .main-menu li a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
    white-space: nowrap;
    letter-spacing: 0.3px;
    padding: 6px 10px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-frontend .main-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-frontend .main-menu li a.nav-link-wow {
    position: relative;
    transition: all 0.3s ease !important;
}

.header-frontend .main-menu li a.nav-link-wow:hover,
.header-frontend .main-menu li a.active,
.header-frontend .main-menu li.active a {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.05) !important;
}

.header-frontend .main-menu li a.nav-link-wow::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-frontend .main-menu li a.nav-link-wow:hover::after {
    transform: scaleX(1);
}

/* Fix Huge Buttons in Navbar */
.header-frontend .nav-right .btn-pill {
    padding: 6px 16px !important;
    font-size: 13px !important;
    white-space: nowrap;
    margin: 0 !important;
    height: auto !important;
    line-height: 1.5 !important;
}

/* Glassmorphism Utilities (Dark Theme Optimized) */
.glass-effect,
.glass-dark-effect {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--glass-shadow) !important;
    color: #fff !important;
}

/* Light Glassmorphism for Dashboard */
.glass-effect-light {
    background: rgba(255, 255, 255, 0.70) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
}

/* --- NEW SVG GLASSMORPHISM V2 --- */
:root {
    --accent-blue: #0059b3;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.service-card {
    background: var(--glass-white) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 60px 40px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

/* Outlined Icon Container Style */
.fintech-svg-icon {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.service-card:hover .fintech-svg-icon {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 15px var(--accent-blue));
}

.service-card__content {
    position: relative !important;
    z-index: 5 !important;
    width: 100%;
}

.service-card__icon {
    position: relative !important;
    z-index: 5 !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* SVG Icon Coloring (Solid & Professional) */
.fintech-svg-icon {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.service-card:hover .fintech-svg-icon {
    color: #fff;
    transform: scale(1.05);
}

.service-card__content .title {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.01em;
    background: none;
    -webkit-text-fill-color: initial;
}

.service-card__content p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Hide legacy neon dots and diagonals */
.service-card .dotted-wrapper,
.service-card::after {
    display: none !important;
}

/* New Premium Hover State: Simple Border Glow */
.service-card:hover {
    border-color: rgba(0, 114, 255, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 114, 255, 0.1) !important;
}

.service-card:hover::after {
    top: 150%;
    left: 150%;
}

/* Button Refinements */
.btn {
    font-family: var(--font-primary) !important;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-pill {
    border-radius: var(--radius-pill) !important;
    padding: 12px 28px !important;
}

.btn--base {
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn--base:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.btn-merchant {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.btn-merchant:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.05) !important;
}

.btn-merchant:active {
    transform: translateY(-1px) !important;
}

/* Feature Cards Overrides */
.feaure-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-lg) !important;
    padding: 40px 30px !important;
    transition: var(--transition) !important;
}

.feaure-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06) !important;
}

/* Why Choose Us / Why SaypraPay (Light Mode Section) */
.choose-section-light {
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.choose-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

.choose-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(0, 89, 179, 0.1) !important;
    box-shadow: 0 30px 60px rgba(0, 89, 179, 0.08) !important;
}

.choose-card__icon {
    width: 64px !important;
    height: 64px !important;
    background: rgba(0, 89, 179, 0.05) !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px !important;
    color: #0059b3 !important;
    transition: all 0.4s ease;
}

.choose-card:hover .choose-card__icon {
    background: #0059b3 !important;
    color: #ffffff !important;
    transform: scale(1.1) rotate(5deg);
}

.choose-card__icon i, 
.choose-card__icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.5 !important;
}

.choose-card__content .title {
    color: #0f172a !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.01em;
}

.choose-card__content p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* Cookies Modal Fix */
.cookies-card {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    max-width: 400px;
    padding: 24px !important;
    z-index: 9999;
}

.cookies-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer CTA */
.cta-wrapper {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-lg) !important;
    padding: 50px !important;
}

/* Remove float animation that looked broken */
.animate-float {
    animation: none !important;
}

/* =========================================
   2026 PREMIUM WOW EFFECTS (HERO & BANNER)
=========================================== */

/* Animated Aurora Background Overlay */
.hero-aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: radial-gradient(circle at 15% 50%, rgba(0, 89, 179, 0.3), transparent 70%),
        radial-gradient(circle at 85% 30%, rgba(0, 89, 179, 0.3), transparent 70%),
        radial-gradient(circle at 50% 80%, rgba(55, 48, 163, 0.2), transparent 60%);
    background-size: 200% 200%;
    animation: aurora-shift 15s ease infinite alternate;
    mix-blend-mode: screen;
    opacity: 0.8;
}

/* Technical Dots Background */
.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(0, 198, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    opacity: 0.4;
}

@keyframes aurora-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Gradient Text Titles */
.text-gradient-primary {
    background: linear-gradient(135deg, #ffffff 0%, #a4b1cd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Beautiful Glowing Pill */
.glow-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 24px;
    display: inline-block;
    transition: all 0.3s ease;
}

.glow-pill:hover {
    box-shadow: 0 0 30px rgba(0, 114, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
}

/* =========================================
   PREMIUM DASHBOARD HEADER (LIGHT THEME)
=========================================== */
.dashboard-header {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    position: relative;
    z-index: 999;
}

.dashboard-header .header__top {
    background: #0f172a !important;
    /* Deep premium blue */
    border-bottom: none !important;
}

.dashboard-header .header__bottom {
    padding: 15px 0 !important;
}

.dashboard-header .glass-effect-light {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 50px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    padding: 8px 24px !important;
}

@media (max-width: 1199px) {
    .dashboard-header .glass-effect-light {
        border-radius: 25px !important;
        padding: 10px 20px !important;
    }
}

.dashboard-header .header__top a,
.dashboard-header .header__top span {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dashboard Premium Main Menu (Wow Effect) */
.dashboard-header .main-menu {
    gap: 8px;
    /* Breathing room between pills */
}

.dashboard-header .main-menu>li {
    padding: 0 !important;
}

.dashboard-header .main-menu>li>a {
    padding: 8px 16px !important;
    border-radius: 12px !important;
    /* Smooth Apple curves */
    font-weight: 500 !important;
    font-size: 14.5px !important;
    color: #475569 !important;
    /* Premium dark slate */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid transparent !important;
    background: transparent !important;
}

/* WOW Hover Effect (No pseudo-elements to avoid breaking dropdown arrows) */
.dashboard-header .main-menu>li>a:hover {
    color: #0059b3 !important;
    background: rgba(0, 89, 179, 0.08) !important;
    border: 1px solid rgba(0, 89, 179, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 89, 179, 0.05) !important;
    transform: translateY(-1px);
}

/* Elegant Active State */
.dashboard-header .main-menu>li>a.active,
.dashboard-header .main-menu>li.active>a {
    background: rgba(0, 89, 179, 0.08) !important;
    color: #0059b3 !important;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 89, 179, 0.15) !important;
    font-weight: 600 !important;
}

/* Dashboard Sub-Menu Dropdown Fixes */
.dashboard-header .main-menu .sub-menu {
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 8px !important;
}

.dashboard-header .main-menu .sub-menu li a {
    border-radius: 8px !important;
    padding: 10px 16px !important;
    color: #475569 !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
}

.dashboard-header .main-menu .sub-menu li a:hover {
    background: #f1f5f9 !important;
    color: #0072ff !important;
    padding-left: 20px !important;
}

/* User Dropdown Override to fix invisible text */
.dashboard-header .header__top .header-user-menu li a,
.dashboard-header .header__top .header-user-menu li a i {
    color: #475569 !important;
}

.dashboard-header .header__top .header-user-menu li a:hover,
.dashboard-header .header__top .header-user-menu li a:hover i {
    color: #0072ff !important;
}

/* Premium User Dropdown (Dashboard Top Right) */
.header-user-menu {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    border-radius: var(--radius-lg) !important;
    padding: 10px 0 !important;
    min-width: 240px;
}

.header-user-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.header-user-menu li:last-child {
    border-bottom: none !important;
}

.header-user-menu li a {
    color: #475569 !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.header-user-menu li a:hover {
    background: rgba(0, 89, 179, 0.04) !important;
    color: #0059b3 !important;
    padding-left: 30px !important;
}

.header-user-menu li a i {
    font-size: 18px !important;
    color: #94a3b8 !important;
    transition: all 0.3s ease !important;
}

.header-user-menu li a:hover i {
    color: #0059b3 !important;
}

/* Dashboard Main Navbar */
.dashboard-header .navbar-collapse {
    justify-content: flex-end;
}

.dashboard-header .main-menu {
    display: flex;
    gap: 10px;
}

.dashboard-header .main-menu li a {
    color: #475569 !important;
    /* Dark slate text */
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 15px 10px !important;
    white-space: nowrap;
    transition: var(--transition);
}

.dashboard-header .main-menu li a:hover {
    color: #0072ff !important;
}

.dashboard-header .glass-effect-light {
    background: transparent !important;
    /* Container handles it natively */
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.dashboard-header .sub-menu {
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: var(--radius-sm);
}

.dashboard-header .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dashboard-header .sub-menu li a {
    color: #475569 !important;
    padding: 10px 20px !important;
}

.dashboard-header .sub-menu li a:hover {
    background: rgba(0, 114, 255, 0.05) !important;
    color: #0072ff !important;
}

.dashboard-header .navbar-toggler .menu-toggle {
    background: #334155 !important;
}

.dashboard-header .navbar-toggler .menu-toggle::before,
.dashboard-header .navbar-toggler .menu-toggle::after {
    background: #334155 !important;
}

/* Premium Floating Animation */
.animate-float-slow {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Premium Hero Responsiveness */
.hero-premium {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding: 220px 0 150px;
}

.hero-premium .hero__title {
    font-size: clamp(40px, 7vw, 92px) !important;
}

.hero-premium .hero__des {
    font-size: clamp(16px, 2.5vw, 22px) !important;
}

@media (max-width: 991px) {
    .hero-premium {
        min-height: 100vh;
        padding: 180px 0 100px;
    }
}

@media (max-width: 575px) {
    .hero-premium {
        padding: 160px 0 80px;
        min-height: auto;
    }

    .hero-premium .hero__title {
        font-size: clamp(34px, 12vw, 44px) !important;
        line-height: 1.1;
    }

    .hero-premium .hero__des {
        font-size: 16px !important;
    }
}

/* Premium Mobile Menu styling */
@media (max-width: 1199px) {
    .header-frontend .navbar-collapse {
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: var(--radius-lg) !important;
        padding: 20px !important;
        margin-top: 15px !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
        max-height: 80vh;
        overflow-y: auto;
    }

    .header-frontend .main-menu {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .header-frontend .main-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin: 0 !important;
    }

    .header-frontend .main-menu li:last-child {
        border-bottom: none;
    }

    .header-frontend .main-menu li a {
        padding: 16px 20px !important;
        font-size: 15px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
        text-align: left !important;
        border-radius: 8px;
    }

    .header-frontend .main-menu li a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .header-frontend .nav-right {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .header-frontend .nav-right .btn-pill {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px !important;
        font-size: 15px !important;
    }

    .header-frontend .language-wrapper {
        width: 100%;
        justify-content: center;
    }

    /* Dashboard Mobile Menu Override (Light Glass) */
    .dashboard-header .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: var(--radius-lg) !important;
        padding: 20px !important;
        margin-top: 15px !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    }

    .dashboard-header .main-menu {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .dashboard-header .main-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dashboard-header .main-menu>li>a {
        padding: 16px 20px !important;
        font-size: 15px !important;
        color: #0f172a !important;
        font-weight: 500 !important;
        display: block !important;
        text-align: left !important;
        border-radius: 8px !important;
        background: transparent !important;
        border: none !important;
    }

    .dashboard-header .main-menu>li>a:hover {
        background: rgba(0, 114, 255, 0.05) !important;
        color: #0072ff !important;
    }

    /* Active Link in Mobile Dashboard Menu */
    .dashboard-header .main-menu>li.active>a,
    .dashboard-header .main-menu>li>a.active {
        background: rgba(0, 114, 255, 0.08) !important;
        color: #0072ff !important;
        border: 1px solid rgba(0, 114, 255, 0.1) !important;
    }
}

/* Remove legacy plus/minus cheap hover effects on dashboard navigation */
.dashboard-header .main-menu li.menu_has_children>a::before {
    display: none !important;
    content: none !important;
}

/* =========================================
   DASHBOARD BODY WIDGETS (WOW FACTOR)
=========================================== */

/* Global Dashboard Body Background */
body {
    background-color: #f8fafc;
    /* Very light cool grey */
}

/* Fix for Continue Lock Screen Overlaying Menu */
.sleep-wrapper {
    z-index: 99999 !important;
}

/* Sidebar Balance / Caption Lists */
.dashboard-body-wrapper .caption-list-two {
    background: transparent !important;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dashboard-body-wrapper .caption-list-two li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px !important;
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 8px !important;
    background: transparent !important;
    transition: background 0.3s ease !important;
}

.dashboard-body-wrapper .caption-list-two li.active,
.dashboard-body-wrapper .caption-list-two li:hover {
    background: #f1f5f9 !important;
    /* Soft slate 100 */
}

.dashboard-body-wrapper .caption-list-two li .caption {
    font-weight: 500 !important;
    color: #64748b !important;
    font-size: 15px !important;
}

.dashboard-body-wrapper .caption-list-two li .value {
    font-weight: 700 !important;
    color: #0f172a !important;
    font-size: 17px !important;
    letter-spacing: -0.5px;
}

/* SaypraPay Balance Metal Card Upgrade (WOW Effect) */
.dashboard-body-wrapper .col-lg-3>.custom--card:first-child {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    color: #ffffff !important;
}

.dashboard-body-wrapper .col-lg-3>.custom--card:first-child h6,
.dashboard-body-wrapper .col-lg-3>.custom--card:first-child h2 {
    color: #ffffff !important;
}

.dashboard-body-wrapper .col-lg-3>.custom--card:first-child .text-muted {
    color: #94a3b8 !important;
}

.dashboard-body-wrapper .col-lg-3>.custom--card:first-child .caption-list-two li {
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
}

.dashboard-body-wrapper .col-lg-3>.custom--card:first-child .caption-list-two li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.dashboard-body-wrapper .col-lg-3>.custom--card:first-child .caption-list-two li .caption,
.dashboard-body-wrapper .col-lg-3>.custom--card:first-child .caption-list-two li .value {
    color: #f8fafc !important;
}

/* Main Cards */
.dashboard-body-wrapper .custom--card {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-body-wrapper .custom--card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05), 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transform: translateY(-2px);
}

.dashboard-body-wrapper .custom--card .card-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    padding: 24px !important;
}

.dashboard-body-wrapper .custom--card .card-body {
    padding: 24px !important;
}

/* Wallet/Stat Widgets (.d-widget) */
.dashboard-body-wrapper .row>[class*="col-"]>.d-widget {
    height: 100% !important;
}

.dashboard-body-wrapper .d-widget {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    padding: 30px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-body-wrapper .d-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0059b3, #0077ee);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dashboard-body-wrapper .d-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 89, 179, 0.08) !important;
    border-color: rgba(0, 89, 179, 0.08) !important;
}

.dashboard-body-wrapper .d-widget:hover::before {
    opacity: 1;
}

.dashboard-body-wrapper .d-widget__content {
    background: transparent !important;
    padding: 0 !important;
    flex-grow: 1;
}

.dashboard-body-wrapper .d-widget__content>i {
    width: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
    font-size: 28px !important;
    background: linear-gradient(135deg, rgba(0, 89, 179, 0.1) 0%, rgba(0, 119, 238, 0.1) 100%) !important;
    color: #0059b3 !important;
    border-radius: 16px !important;
    margin-bottom: 24px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dashboard-body-wrapper .d-widget:hover .d-widget__content>i {
    background: linear-gradient(135deg, #0059b3 0%, #0077ee 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 89, 179, 0.2) !important;
    transform: scale(1.05);
}

.dashboard-body-wrapper .d-widget__amount {
    font-size: clamp(16px, 1.8vw, 24px) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px;
    line-height: 1.3;
    word-break: break-word;
    /* Soft break */
    overflow-wrap: break-word;
}

.dashboard-body-wrapper .currency-symbol {
    margin-right: 4px;
    display: inline-block;
}

.dashboard-body-wrapper .d-widget__amount .currency-symbol {
    color: #475569;
    font-weight: 600;
}

.dashboard-body-wrapper .d-widget__footer {
    border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;
    padding-top: 20px !important;
    margin-top: 24px !important;
    background: transparent !important;
    margin-top: auto;
}

.dashboard-body-wrapper .d-widget__footer a {
    color: #0059b3 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.dashboard-body-wrapper .d-widget__footer a i {
    font-size: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    background: transparent !important;
    color: inherit !important;
}

.dashboard-body-wrapper .d-widget__footer a:hover {
    color: #004080 !important;
}

.dashboard-body-wrapper .d-widget__footer a:hover i {
    transform: translateX(4px);
}

/* Latest Transactions Accordion List */
.dashboard-body-wrapper .table--acordion .accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
}

.dashboard-body-wrapper .table--acordion .accordion-item:last-child {
    border-bottom: none !important;
}

.dashboard-body-wrapper .table--acordion .accordion-button {
    background: transparent !important;
    padding: 20px 24px !important;
    box-shadow: none !important;
    transition: background 0.2s ease;
    flex-wrap: wrap !important;
    row-gap: 12px;
}

.dashboard-body-wrapper .table--acordion .accordion-button:hover {
    background: rgba(0, 0, 0, 0.02) !important;
}

.dashboard-body-wrapper .table--acordion .icon-wrapper .left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-body-wrapper .table--acordion .icon-wrapper .icon {
    flex-shrink: 0;
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    transform: none !important;
    /* Stop rotating the container wrapper */
}

.dashboard-body-wrapper .table--acordion .icon-wrapper .icon i {
    font-size: 20px !important;
    line-height: 1;
}

.dashboard-body-wrapper .table--acordion .accordion-item.rcv-item .icon i {
    transform: rotate(45deg);
}

.dashboard-body-wrapper .table--acordion .accordion-item.sent-item .icon i {
    transform: rotate(-45deg);
}

.dashboard-body-wrapper .table--acordion .sent-item .icon {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
}

.dashboard-body-wrapper .table--acordion .rcv-item .icon {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
}

.dashboard-body-wrapper .table--acordion .trans-title {
    font-weight: 600 !important;
    color: #0f172a !important;
}

.dashboard-body-wrapper .table--acordion .amount-wrapper b {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.dashboard-body-wrapper .table--acordion .sent-item .amount-wrapper b {
    color: #ef4444 !important;
}

.dashboard-body-wrapper .table--acordion .rcv-item .amount-wrapper b {
    color: #22c55e !important;
}

/* =========================================
   AUTHENTICATION PAGES (LOGIN / REGISTER)
   Fintech 2026 Split-Screen Glass Card
=========================================== */

/* Remove standard padding for auth section to let the card breathe */
.account-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 32px !important;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    max-width: 1100px;
    margin: 40px auto;
    position: relative;
    z-index: 10;
}

/* Left Hero Image Side */
.account-wrapper .left {
    width: 48% !important;
    min-height: 100% !important;
    position: relative;
    background-size: cover;
    background-position: center;
}

.account-wrapper .left::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Apply a beautiful Apple-like tech gradient over the image */
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.3) 0%, rgba(0, 198, 255, 0.2) 100%);
    backdrop-filter: blur(2px) saturate(120%);
}

/* Right Form Side */
.account-wrapper .right {
    width: 52% !important;
    padding: 80px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff !important;
}

/* Form Inner Alignment */
.account-wrapper .inner {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

/* Auth Titles */
.account-wrapper .title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1.5px;
    margin-bottom: 8px !important;
}

.account-wrapper .text-center p {
    color: #64748b !important;
    font-size: 16px !important;
}

/* Auth Form Controls */
.account-form {
    margin-top: 40px !important;
}

.account-form .form-group {
    margin-bottom: 24px;
}

.account-form label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    margin-bottom: 10px;
    display: block;
}

.account-form .form--control {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 16px 20px !important;
    background: #f8fafc !important;
    font-size: 15px !important;
    color: #0f172a !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.account-form .form--control:focus {
    background: #ffffff !important;
    border-color: #0072ff !important;
    box-shadow: 0 0 0 5px rgba(0, 114, 255, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.01) !important;
    outline: none !important;
}

/* Auth Button (Primary Action) */
.account-form .btn {
    border-radius: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
    padding: 18px !important;
    font-size: 16px !important;
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%) !important;
    box-shadow: 0 10px 24px rgba(0, 114, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: #ffffff !important;
    border: none !important;
}

.account-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.3) !important;
}

/* Auth Links (Forgot Password) */
.account-form a {
    color: #0072ff !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: color 0.2s ease;
}

.account-form a:hover {
    color: #005bb5 !important;
    text-decoration: underline !important;
}

/* Auth Bottom Text (Register Here) */
.account-wrapper .inner>p {
    margin-top: 30px !important;
    color: #64748b !important;
}

.account-wrapper .inner>p a {
    color: #0072ff !important;
    font-weight: 600 !important;
}

/* Mobile Responsiveness for Auth */
@media (max-width: 991px) {
    .account-wrapper {
        border-radius: 24px !important;
        margin: 20px 15px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
    }

    .account-wrapper .left {
        display: none !important;
    }

    .account-wrapper .right {
        width: 100% !important;
        padding: 50px 30px !important;
    }

    .account-wrapper .title {
        font-size: 28px !important;
    }
}

/* =========================================
   PHASE 2: GLOBAL INNER PAGES WOW UPGRADE
   ========================================= */

/* 1. Global Cards */
.dashboard-body-wrapper .card {
    border: none !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-body-wrapper .card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06) !important;
}

.dashboard-body-wrapper .card-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 24px 30px !important;
}

.dashboard-body-wrapper .card-header h3,
.dashboard-body-wrapper .card-header h5,
.dashboard-body-wrapper .card-header h6 {
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

.dashboard-body-wrapper .card-body {
    padding: 30px !important;
}

/* 2. Global Inputs & Forms */
.dashboard-body-wrapper .form--control,
.dashboard-body-wrapper select.form--control,
.dashboard-body-wrapper .custom-select-search-box input {
    background-color: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    color: #0f172a !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

.dashboard-body-wrapper .form--control:focus,
.dashboard-body-wrapper select.form--control:focus,
.dashboard-body-wrapper .custom-select-search-box input:focus {
    background-color: #ffffff !important;
    border-color: rgba(0, 114, 255, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.1) !important;
}

.dashboard-body-wrapper .input-group-text {
    background-color: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    color: #475569 !important;
    font-weight: 500 !important;
    padding: 0 20px !important;
}

.dashboard-body-wrapper .input-group>.form-control:not(:first-child),
.dashboard-body-wrapper .input-group>.custom-select:not(:first-child),
.dashboard-body-wrapper .input-group>.form--control:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.dashboard-body-wrapper .input-group>.input-group-text:first-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
}

.dashboard-body-wrapper .input-group>.input-group-text:last-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none !important;
}

/* 3. Global Buttons (Apple Pills) */
.dashboard-body-wrapper .btn {
    border-radius: 100px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    letter-spacing: 0.2px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: none !important;
}

.dashboard-body-wrapper .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.15) !important;
}

.dashboard-body-wrapper .btn-outline--primary {
    border: 1px solid #0072ff !important;
    color: #0072ff !important;
    background: transparent !important;
}

.dashboard-body-wrapper .btn-outline--primary:hover {
    background: #0072ff !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.2) !important;
}

/* Wow Effect Unified Search Box Pill (Transactions) */
.dashboard-body-wrapper .transaction-top-form {
    padding: 0 !important;
    margin-bottom: 24px !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.dashboard-body-wrapper .custom-select-search-box {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 100px !important;
    /* Premium Pill Shape */
    padding: 4px 6px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.dashboard-body-wrapper .custom-select-search-box:focus-within {
    background: #ffffff !important;
    border-color: rgba(0, 114, 255, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.1) !important;
}

/* Eradicated the ugly solid blue box; replaced with an elegant invisible button inside the pill */
.dashboard-body-wrapper .custom-select-search-box input.form--control {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 48px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 20px !important;
    margin: 0 !important;
}

.dashboard-body-wrapper .custom-select-search-box input.form--control:focus {
    box-shadow: none !important;
    /* Wrapper handles focus ring */
    background: transparent !important;
}

.dashboard-body-wrapper .search-box-btn {
    background: transparent !important;
    /* No ugly fill */
    border: none !important;
    color: #475569 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 24px !important;
    box-shadow: none !important;
    margin-right: 4px;
}

.dashboard-body-wrapper .search-box-btn:hover {
    color: #0072ff !important;
    transform: scale(1.1) !important;
    background: rgba(0, 114, 255, 0.05) !important;
}

/* Wow Effect D-User-Notification Upgrade (Logout From Other Devices) */
.dashboard-body-wrapper .d-user-notification {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.03), rgba(0, 114, 255, 0.01)) !important;
    border: 1px solid rgba(0, 114, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 24px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.03) !important;
}

.dashboard-body-wrapper .d-user-notification .icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    margin-right: 15px !important;
}

.dashboard-body-wrapper .d-user-notification .content p.text-white {
    color: #0f172a !important;
    /* Force high contrast dark text */
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

/* 9. Wow Effect Quick Links */
.dashboard-body-wrapper .quick-link-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    padding: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    position: relative;
}

.dashboard-body-wrapper .quick-link-card:hover {
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04) !important;
    transform: translateY(-4px) !important;
}

.dashboard-body-wrapper .quick-link-card .icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.06), rgba(0, 114, 255, 0.01)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    position: relative !important;
    border: none !important;
    /* Nuke old box border */
    transition: all 0.3s ease !important;
    box-shadow: inset 0 0 0 1px rgba(0, 114, 255, 0.05) !important;
}

/* Obliterate the legacy weird offset background circle */
.dashboard-body-wrapper .quick-link-card .icon::before,
.dashboard-body-wrapper .quick-link-card .icon::after {
    display: none !important;
}

.dashboard-body-wrapper .quick-link-card .icon i {
    font-size: 28px !important;
    color: #0072ff !important;
    transition: all 0.3s ease !important;
}

.dashboard-body-wrapper .quick-link-card:hover .icon {
    background: #0072ff !important;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.2) !important;
}

.dashboard-body-wrapper .quick-link-card:hover .icon i {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.dashboard-body-wrapper .quick-link-card .caption {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.dashboard-body-wrapper .quick-link-card:hover .caption {
    color: #0f172a !important;
}

/* 4. Modals */
.dashboard-body-wrapper .modal-content {
    border: none !important;
    border-radius: 28px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    overflow: hidden !important;
}

.dashboard-body-wrapper .modal-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 24px 30px !important;
}

.dashboard-body-wrapper .modal-body {
    padding: 30px !important;
}

.dashboard-body-wrapper .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 20px 30px !important;
    background: #f8fafc !important;
}

/* 5. Lists (Profile Settings etc.) */
.dashboard-body-wrapper .list-group {
    gap: 8px !important;
}

.dashboard-body-wrapper .list-group-item {
    border: none !important;
    background: #f8fafc !important;
    border-radius: 16px !important;
    padding: 18px 24px !important;
    transition: all 0.2s ease !important;
}

.dashboard-body-wrapper .list-group-item:hover {
    background: #f1f5f9 !important;
    transform: translateX(4px);
}

.dashboard-body-wrapper .list-group-item span.fw--bold {
    color: #475569 !important;
    font-weight: 500 !important;
}

/* 6. Badges (Fintech Pastels) */
.dashboard-body-wrapper .badge {
    padding: 8px 16px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    font-size: 12px !important;
    border: none !important;
}

.dashboard-body-wrapper .badge--success {
    background-color: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.1) !important;
}

.dashboard-body-wrapper .badge--warning {
    background-color: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.1) !important;
}

.dashboard-body-wrapper .badge--danger {
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.1) !important;
}

/* 7. Filters and Selects (Transactions Page) */
.dashboard-body-wrapper .custom-select-box-two select {
    background-color: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: #475569 !important;
    width: 100% !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.dashboard-body-wrapper .custom-select-box-two select:focus {
    background-color: #ffffff !important;
    border-color: rgba(0, 114, 255, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(0, 114, 255, 0.1) !important;
    outline: none !important;
}

.dashboard-body-wrapper .custom-select-box-two label {
    margin-bottom: 8px !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* 8. Bank Cards (Withdraw/Deposit) Inner Styles */
.dashboard-body-wrapper .bank-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    padding: 24px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.dashboard-body-wrapper .bank-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 114, 255, 0.1) !important;
}

.dashboard-body-wrapper .bank-card__icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1), rgba(0, 114, 255, 0.02)) !important;
    color: #0072ff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

.dashboard-body-wrapper .bank-card__content h6 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
}

/* 10. Wow Effect Default Avatar Placeholder */
.dashboard-header .default-avatar-icon {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08), rgba(0, 114, 255, 0.02)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0072ff !important;
    font-size: 22px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 114, 255, 0.1) !important;
}

.dashboard-header .header-user:hover .default-avatar-icon {
    background: #0072ff !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.2) !important;
}

/* =========================================
   PREMIUM DASHBOARD LANGUAGE SWITCHER
=========================================== */
.dash-lang-selector {
    position: relative;
    z-index: 1000;
}

.dash-lang-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    backdrop-filter: blur(5px) !important;
}

.dash-lang-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.dash-lang-btn i {
    font-size: 11px !important;
    transition: transform 0.3s ease !important;
}

.dash-lang-selector.show .dash-lang-btn i {
    transform: rotate(180deg) !important;
}

.dash-lang-dropdown {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    padding: 8px !important;
    min-width: 150px !important;
    margin-top: 10px !important;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute !important;
    right: 0 !important;
}

.dash-lang-selector .dash-lang-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dash-lang-dropdown .dropdown-item {
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.dash-lang-dropdown .dropdown-item:hover,
.dash-lang-dropdown .dropdown-item.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding-left: 20px !important;
}

/* Mobile Overrides - Best Practices (Anchored near trigger) */
@media (max-width: 1199px) {
    .dash-lang-selector {
        margin-right: 8px !important;
    }

    .dash-lang-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: auto !important;
        right: 0 !important;
        width: 150px !important;
        bottom: auto !important;
        margin-top: 10px !important;
        z-index: 9999 !important;
    }
}

@media (max-width: 575px) {
    .header-top-menu {
        display: none !important;
    }

    .dash-lang-btn {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
}


/* --- PREMIUM CARD SLIDESHOW (PayX Card Design) --- */
.card-slideshow-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    perspective: 2000px;
    z-index: 10;
}

.card-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    transform-style: preserve-3d;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotateY(15deg) scale(0.9) translate3d(0, 0, -50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    overflow: hidden;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.card-slide.active {
    opacity: 1;
    transform: rotateY(0deg) translate3d(0, 0, 0);
    pointer-events: auto;
    z-index: 2;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}



/* --- PREMIUM CARD SLIDESHOW (PayX Card Design) --- */

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #0077ff;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 119, 255, 0.3);
    border-color: rgba(0, 119, 255, 0.2);
}

/* Mobile Adjustments (Best Practices) */
@media (max-width: 1199px) {
    .card-slideshow-container {
        margin-top: 20px;
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .card-slideshow-container {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    /* Disable 3D on mobile for maximum clarity */
    .card-slide {
        transform: scale(0.95) !important;
        border-radius: 24px;
    }
    
    .card-slide.active {
        transform: scale(1) !important;
    }

    .card-img {
        border-radius: 24px;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }

    .slideshow-dots {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .card-slideshow-container {
        max-width: 100%;
    }
}



/* --- WHY SAYPRAPAY (ARCTIC FROSTED GLASS) --- */
.choose-section-light {
    position: relative;
    background: #f8fafc !important;
    /* Extremely clean light base */
    overflow: hidden;
}

.choose-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(35px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(35px) saturate(180%) !important;
    border: 1px solid rgba(0, 136, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: 45px 35px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 2;
    /* Soft Multi-layered Shadow */
    box-shadow:
        0 10px 20px rgba(0, 50, 100, 0.03),
        0 20px 40px rgba(0, 0, 0, 0.04) !important;
}

.choose-card:hover {
    transform: translateY(-12px) !important;
    background: rgba(240, 248, 255, 0.85) !important;
    /* Arctic Tint on Hover */
    border-color: rgba(0, 136, 255, 0.4) !important;
    box-shadow: 0 35px 70px rgba(0, 50, 100, 0.08) !important;
}

.choose-card__icon {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 30px !important;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.2));
    transition: all 0.5s ease;
}

.choose-card:hover .choose-icon-svg {
    filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.5)) brightness(1.1);
    transform: rotateY(180deg) scale(1.1);
}

.choose-card__content {
    position: relative;
    z-index: 5;
}

.choose-card__content .title {
    color: #0a192f !important;
    /* Deep Navy for perfect contrast */
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0a192f 0%, #1e293b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.choose-card__content p {
    color: #475569 !important;
    /* Graphite Grey for clean reading */
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Polar Shine Effect Sweep */
.choose-card::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    pointer-events: none;
}

.choose-card:hover::after {
    top: 150%;
    left: 150%;
}



/* --- ASSET MATRIX HUB (Piggy Bank Replacement) --- */
.asset-matrix-hub {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.matrix-core {
    position: relative;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #00f2ff 0%, #0088ff 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 80px rgba(0, 242, 255, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: corePulse 4s ease-in-out infinite;
}

.matrix-core-icon {
    font-size: 4.5rem;
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

/* 4-Orb Symmetry Layout */
.matrix-orb {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: orbFloat 7s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.matrix-orb:hover {
    transform: scale(1.15) !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: #00f2ff;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
}

/* Perfect 4-Corner Symmetry */
.orb-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

/* Top Left - Tenge */
.orb-2 {
    top: 5%;
    right: 10%;
    animation-delay: 1.5s;
}

/* Top Right - Card */
.orb-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

/* Bottom Right - QR */
.orb-4 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4.5s;
}

/* Bottom Left - Check */

.orb-5 {
    display: none !important;
}

.matrix-orb svg {
    width: 55%;
    height: 55%;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.4));
}

/* SVG Streams (Multi-layered Wow Factor) */
.matrix-streams-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stream-line {
    stroke: url(#matrixGrad);
    stroke-width: 3.5;
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: streamDash 6s linear infinite;
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.8));
    opacity: 0.9;
}

.stream-line-core {
    stroke: #fff;
    stroke-width: 1;
    stroke-dasharray: 5, 20;
    animation: streamDash 3s linear infinite;
    opacity: 0.4;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(0, 242, 255, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 100px rgba(0, 242, 255, 0.8);
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes streamDash {
    to {
        stroke-dashoffset: -250;
    }
}

/* --- FEATURE CARDS V2.1 (REFINED GLASS) --- */
.feaure-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 32px !important;
    padding: 55px 40px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.feaure-card__icon {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 35px !important;
    position: relative;
    z-index: 10;
}

.feature-icon-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.4));
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feaure-card__icon i,
.feaure-card__icon svg {
    width: 56px !important;
    height: 56px !important;
    color: #ffffff !important;
    stroke-width: 1.5 !important;
    transition: all 0.4s ease;
}

.feaure-card:hover .feaure-card__icon i,
.feaure-card:hover .feaure-card__icon svg {
    color: #00f2ff !important;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.8));
}

.feaure-card:hover .feature-icon-svg {
    filter: drop-shadow(0 0 35px var(--accent-cyan)) brightness(1.2);
    transform: scale(1.2) rotate(8deg);
}

.feaure-card__content {
    position: relative;
    z-index: 15;
}

.feaure-card__content .title {
    color: #ffffff !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 20px !important;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    display: block !important;
    opacity: 1 !important;
}

.feaure-card__content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    opacity: 1 !important;
    display: block !important;
}

.feaure-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 991px) {
    .asset-matrix-hub {
        height: 400px;
        transform: scale(0.8);
    }

    .matrix-core {
        width: 120px;
        height: 120px;
    }

    .matrix-orb {
        width: 70px;
        height: 70px;
    }

    .feaure-card {
        padding: 45px 30px !important;
    }

    .orb-5 {
        display: none;
    }

    /* Hide 5th on small screens for spacing */
}