:root {
    --primary-color: #525fe1;
    --dark-bg: #0f172a;
    --mint: #10b981;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
}

.fw-800 { font-weight: 800; }

/* Navbar */


/* Hero */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 90% 10%, rgba(82, 95, 225, 0.05) 0%, transparent 40%);
}

/* Cards */
.product-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-10px);
}
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}
.bg-primary-light { background: #eef0ff; }
.bg-success-light { background: #ecfdf5; }
.bg-warning-light { background: #fffbeb; }

/* Code Window */
.code-window {
    background: #1e293b;
    border-radius: 12px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #334155;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
/* Hero Animation Elements */
.hero-animation-wrapper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-hub {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), #3b448e);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    box-shadow: 0 25px 60px rgba(82, 95, 225, 0.4);
    z-index: 5;
    animation: pulse-hub 3s infinite ease-in-out;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    color: var(--primary-color);
    font-size: 1.5rem;
    z-index: 2;
}

/* Animations for "Money Flow" */
.icon-1 { top: 10%; left: 15%; animation: float-in 4s infinite; }
.icon-2 { bottom: 15%; left: 10%; animation: float-out 5s infinite 1s; }
.icon-3 { top: 20%; right: 10%; animation: float-in 6s infinite 0.5s; }
.icon-4 { bottom: 20%; right: 15%; animation: float-out 4.5s infinite 1.5s; }
.icon-5 { top: 50%; right: -5%; animation: float-in 7s infinite; }

@keyframes float-in {
    0% { transform: translate(100px, 100px) scale(0); opacity: 0; }
    50% { opacity: 1; transform: translate(0,0) scale(1.1); }
    100% { transform: translate(-20px, -20px) scale(1); opacity: 0; }
}

@keyframes float-out {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    50% { opacity: 1; transform: translate(100px, -100px) scale(1.2); }
    100% { transform: translate(150px, -150px) scale(0); opacity: 0; }
}

@keyframes pulse-hub {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Feature Boxes */
.feature-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    cursor: pointer;
}
.feature-box:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color) !important;
    background: #f8f9ff;
}
.fb-icon {
    width: 60px;
    height: 60px;
    background: #f1f3ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-blue: #00dfd8;
}

/* Background for the entire section */
.fintech-gradient-bg {
    background: radial-gradient(circle at top right, #1e293b, #0f172a, #0d9488);
    color: white;
}

/* Premium Glass Cards */
.industry-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-12px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 223, 216, 0.2);
}

/* Real-time Payment Animation */
.live-stream {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    position: relative;
    margin: 20px 0;
}

.money-flow-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: 0;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: move-money 2s infinite linear;
}

@keyframes move-money {
    0% { left: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Icon Floating Animation */
.industry-icon i {
    animation: float-icon 3s infinite ease-in-out;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); color: var(--neon-blue); }
}
.hub-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Core Styling */
.hub-core {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.core-inner {
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    animation: hub-pulse 2s infinite;
}

@keyframes hub-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Floating Feature Nodes */
.node {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 11;
    animation: float-node 4s infinite ease-in-out;
}

.node i { font-size: 1.2rem; }

/* Positioning Nodes in Orbit */
.node-1 { top: 10%; left: 20%; animation-delay: 0s; }
.node-2 { top: 15%; right: 15%; animation-delay: 1s; }
.node-3 { bottom: 15%; right: 20%; animation-delay: 2s; }
.node-4 { bottom: 10%; left: 15%; animation-delay: 0.5s; }
.node-5 { top: 50%; right: 5%; transform: translateY(-50%); animation-delay: 1.5s; }

@keyframes float-node {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Orbit Lines */
.orbit-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orbit-line {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 1;
    stroke-dasharray: 5, 5;
}

.eco-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}
/* Color Palette */
/* Color Palette */
:root {
    --indigo-deep: #0f172a;
    --violet-brand: #6366f1;
    --neon-cyan: #22d3ee;
    --silver-text: #94a3b8;
}

.premium-bg {
    background: radial-gradient(circle at 80% 20%, #1e1b4b 0%, var(--indigo-deep) 100%);
    /* background: radial-gradient(
    circle at 20% 30%,
    rgba(139, 92, 246, 0.35) 0%,
    rgba(88, 28, 135, 0.15) 45%,
    rgba(15, 23, 42, 0) 100%
  ); */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--neon-cyan), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-silver { color: var(--silver-text); }
.bg-soft-blue { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; border: 1px solid rgba(99, 102, 241, 0.3); }

/* Main Hub Animation */
.main-hub {
    width: 100px;
    height: 100px;
    background: var(--violet-brand);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-icon { font-size: 2.5rem; color: white; animation: pulse 2s infinite; }

/* Glassmorphism Nodes */
.glass-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.node-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; }
.node-text span { display: block; color: white; font-weight: 600; font-size: 0.9rem; }
.node-text small { color: var(--silver-text); font-size: 0.75rem; }

/* Node Positions */
.node-collection { top: 10%; right: 5%; }
.node-payout { bottom: 15%; right: 15%; }
.node-bank { top: 30%; left: -5%; }

/* Custom Animations */
@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px var(--neon-cyan)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px var(--neon-cyan)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--neon-cyan)); }
}

.animate-float { animation: float 5s infinite ease-in-out; }
.animate-float-delayed { animation: float 6s infinite ease-in-out 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Particle Stream (Moving Money) */
.particle {
    position: absolute;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    opacity: 0;
}

.p1 { animation: flow-in 4s infinite linear; }
.p2 { animation: flow-out 4s infinite linear 2s; }

@keyframes flow-in {
    0% { top: 10%; right: 10%; opacity: 0; }
    50% { top: 50%; right: 50%; opacity: 1; }
    100% { top: 50%; right: 50%; opacity: 0; }
}

@keyframes flow-out {
    0% { top: 50%; left: 50%; opacity: 0; }
    100% { top: 35%; left: 5%; opacity: 1; }
}

.bg-blur-effect {
    position: absolute;
    width: 300px; height: 300px;
    background: var(--violet-brand);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

.shadow-glow { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
/* Section Background */
.flow-gradient-bg {
    background: #0f0a1d;
    position: relative;
}

.text-violet { color: #8b5cf6; }
.bg-violet { background: #8b5cf6; }
.bg-violet-light { background: rgba(139, 92, 246, 0.1); }
.text-silver { color: #94a3b8; }

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.active-border {
    border: 1px solid #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

/* Icon Glows */
.flow-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.bg-success-glow { background: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }
.bg-violet-glow { background: #8b5cf6; box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
.bg-blue-glow { background: #3b82f6; box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }

/* Animated Connectors */
.connector-line {
    position: relative;
    height: 2px;
    background: rgba(139, 92, 246, 0.2);
    width: 100%;
}

.moving-arrow {
    position: absolute;
    top: -8px;
    left: 0;
    color: #8b5cf6;
    font-size: 1.2rem;
    animation: move-right 2s infinite linear;
}

.delay-1 { animation-delay: 1s; }

@keyframes move-right {
    0% { left: -20%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* Dots & Status */
.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.pulse-green {
    background: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.footer-premium {
    background: #0a0514; /* Deepest violet black */
    color: #94a3b8;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-logo {
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
}
.footer-logo span { color: #8b5cf6; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

/* Glass Subscription Box */
.glass-subscribe {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.btn-violet-glow {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Social Icon Effects */
.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #8b5cf6;
    transform: translateY(-5px);
}

/* Compliance Badges */
.badge-item {
    font-size: 0.65rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.x-small { font-size: 0.75rem; }
.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 15px;
}
.footer-bottom-links a:hover { color: #fff; }



/* price details  */

.pricing-body {
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0f172a 100%);
    min-height: 100vh;
}

/* Pricing Toggle Switch */
.custom-switch .form-check-input {
    width: 3.5em;
    height: 1.8em;
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.custom-switch .form-check-input:checked {
    background-color: #6366f1;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.featured-card {
    border: 2px solid #6366f1;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-display {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.price-display .period {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
}

.pricing-card ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Reusing your gradient text and glow */
.text-gradient {
    background: linear-gradient(to right, #22d3ee, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-glow { 
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5); 
}

/* product age */
/* --- Navbar Styling --- */
.navbar {
    transition: all 0.3s ease;
    height: 80px;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #3b82f6 !important;
}

/* --- Mega Menu Design --- */
@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu-content {
        display: block;
        margin-top: 0;
    }
}

.mega-menu-content {
    width: 350px;
    padding: 10px;
    border-radius: 20px !important;
    left: 50%;
    transform: translateX(-50%);
}

.product-item {
    padding: 15px !important;
    border-radius: 15px !important;
    transition: 0.2s;
}

.product-item:hover {
    background: #f8fafc !important;
    transform: translateX(5px);
}

/* --- Icon Boxes --- */
.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.bg-soft-primary { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bg-soft-success { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.bg-soft-violet { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    .navbar { height: auto; }
    .mega-menu-content { width: 100%; transform: none; left: 0; position: relative; }
    .nav-item.ms-lg-3 { margin-top: 15px; margin-bottom: 15px; }
}

