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

:root {
    --hrv-trust-navy: #0B2545;
    --hrv-trust-navy-dark: #061528;
    --hrv-brand-primary: #2090C0;
    --hrv-brand-primary-hover: #1878A8;
    --hrv-growth-emerald: #2090C0;
    --hrv-growth-emerald-hover: #1878A8;
    --hrv-empowerment-amber: #F0C050;
    --hrv-empowerment-amber-hover: #D89B28;
    --hrv-tech-sky: #28A0D8;
    --hrv-cloud-white: #F8F9FA;
    --hrv-slate-charcoal: #1D2A44;
    --hrv-card-border: rgba(11, 37, 69, 0.08);
    --hrv-font-heading: 'Plus Jakarta Sans', sans-serif;
    --hrv-font-body: 'Inter', sans-serif;
    --hrv-font-data: 'Outfit', sans-serif;
}

body {
    font-family: var(--hrv-font-body);
    color: var(--hrv-slate-charcoal);
    background-color: var(--hrv-cloud-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--hrv-font-heading);
    color: var(--hrv-trust-navy);
    font-weight: 700;
}

.text-navy {
    color: var(--hrv-trust-navy) !important;
}

.font-data, .calc-output, .roi-table {
    font-family: var(--hrv-font-data);
}

/* NAVBAR STYLING */
.hrv-navbar {
    background-color: var(--hrv-trust-navy);
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.15);
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    border: none !important;
    margin-bottom: 0 !important;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.navbar-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.logo-badge {
    background: linear-gradient(135deg, var(--hrv-brand-primary), var(--hrv-tech-sky));
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(32, 144, 192, 0.4);
}

.nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--hrv-empowerment-amber) !important;
    transform: translateY(-1px);
}

/* MOBILE NAVBAR SMOOTH & NATURAL DRAWER STYLING */
@media (max-width: 991.98px) {
    .hrv-navbar {
        padding: 0.6rem 1rem;
    }
    
    .navbar-logo-img {
        height: 36px;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        padding: 0.45rem 0.7rem;
        border-radius: 10px;
        transition: all 0.2s ease;
    }
    
    .navbar-toggler:focus, .navbar-toggler:active {
        box-shadow: 0 0 0 3px rgba(32, 144, 192, 0.35);
        border-color: var(--hrv-growth-emerald) !important;
    }
    
    .navbar-collapse {
        background: rgba(6, 21, 40, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        margin-top: 0.8rem;
        padding: 1.25rem 1rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    }
    
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
        border-radius: 10px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .navbar-collapse .dropdown-menu {
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-left: 3px solid var(--hrv-growth-emerald) !important;
        border-radius: 12px !important;
        padding: 0.5rem !important;
        margin-top: 0.3rem !important;
        margin-bottom: 0.6rem !important;
        box-shadow: none !important;
    }
    
    .navbar-collapse .dropdown-item {
        color: rgba(255, 255, 255, 0.92) !important;
        font-size: 0.92rem;
        padding: 0.65rem 0.85rem !important;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .navbar-collapse .dropdown-item:hover, .navbar-collapse .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        color: var(--hrv-empowerment-amber) !important;
        transform: translateX(4px);
    }
}

@media (max-width: 400px) {
    .navbar-brand-logo {
        font-size: 1.1rem;
        gap: 6px;
    }
    .logo-badge {
        font-size: 0.95rem;
        padding: 4px 8px;
    }
}

/* BUTTONS */
.btn-hrv-emerald {
    background-color: var(--hrv-growth-emerald);
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(32, 144, 192, 0.25);
}

.btn-hrv-emerald:hover {
    background-color: var(--hrv-growth-emerald-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 144, 192, 0.35);
}

.btn-hrv-navy {
    background-color: var(--hrv-trust-navy);
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    border: none;
    transition: all 0.25s ease;
}

.btn-hrv-navy:hover {
    background-color: var(--hrv-trust-navy-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hrv-outline-gold {
    border: 2px solid var(--hrv-empowerment-amber);
    color: var(--hrv-empowerment-amber);
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-hrv-outline-gold:hover {
    background-color: var(--hrv-empowerment-amber);
    color: var(--hrv-trust-navy);
}

/* HERO BANNER */
.hero-section {
    background: linear-gradient(135deg, var(--hrv-trust-navy) 0%, #0d3463 60%, var(--hrv-tech-sky) 100%);
    color: #ffffff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 183, 3, 0.15);
    border: 1px solid var(--hrv-empowerment-amber);
    color: var(--hrv-empowerment-amber);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

/* CARDS & GLASSMORPHISM */
.hrv-card {
    background: #ffffff;
    border: 1px solid var(--hrv-card-border);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hrv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(11, 37, 69, 0.1);
}

.hrv-glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.12);
}

/* FEATURE BADGES HIGH CONTRAST STYLING */
.product-feature-badge {
    background-color: #eef6fb !important;
    border: 1px solid #b6dced !important;
    color: #0B2545 !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.product-feature-badge i {
    color: #2090C0 !important;
    font-weight: 800 !important;
}

/* BADGES */
.badge-gold {
    background-color: var(--hrv-empowerment-amber);
    color: var(--hrv-trust-navy);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.badge-emerald {
    background-color: var(--hrv-growth-emerald);
    color: white;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.badge-sky {
    background-color: var(--hrv-tech-sky);
    color: white;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* CALCULATOR STYLING */
.calc-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--hrv-card-border);
    box-shadow: 0 15px 35px rgba(11, 37, 69, 0.08);
    padding: 2.2rem;
}

.form-range::-webkit-slider-thumb {
    background: var(--hrv-growth-emerald);
    box-shadow: 0 2px 6px rgba(0, 168, 107, 0.4);
}

.calc-display-box {
    background: linear-gradient(135deg, var(--hrv-trust-navy), #133966);
    color: white;
    border-radius: 16px;
    padding: 1.8rem;
}

/* FOOTER */
.hrv-footer {
    background-color: var(--hrv-trust-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--hrv-growth-emerald);
}

.hrv-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hrv-footer a:hover {
    color: var(--hrv-empowerment-amber);
}

/* ID CARD GENERATOR CANVAS VIEWPORT */
.id-card-canvas-wrapper {
    background: #eef2f7;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOBILE LANDING PAGE UI/UX OPTIMIZATIONS */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2.5rem 0 2.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.2rem !important;
    }

    .hrv-glass-card {
        padding: 1.25rem !important;
        margin-top: 1rem;
        border-radius: 16px;
    }

    .form-control, .form-select {
        min-height: 48px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .form-range::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }
    
    .calc-card, .calc-display-box {
        padding: 1.25rem !important;
        border-radius: 16px;
    }

    .table-responsive {
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .display-5, .display-6 {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
    }

    .product-feature-badge {
        font-size: 0.78rem !important;
        padding: 4px 8px !important;
    }

    .mobile-stat-card {
        background: #ffffff;
        border: 1px solid rgba(11, 37, 69, 0.08);
        border-radius: 12px;
        padding: 0.85rem 0.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
}

/* ==========================================================================
   ANIMATIONS & GRAPHICAL FINTECH POLISH
   ========================================================================== */

/* Keyframe Animations */
@keyframes floatSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(0, 168, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); }
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes glowOrbPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.15); }
}

/* Hero Graphical Mesh & Glowing Ambient Background */
.hero-graphical-container {
    position: relative;
    overflow: hidden;
}

.hero-glow-orb-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.28) 0%, rgba(11, 37, 69, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    animation: glowOrbPulse 8s infinite ease-in-out;
}

.hero-glow-orb-2 {
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.22) 0%, rgba(19, 111, 99, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: glowOrbPulse 10s infinite ease-in-out reverse;
}

/* Floating Glassmorphism Hero Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 5;
    color: #ffffff;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge-1 {
    top: 8%;
    left: -15px;
    animation: floatSlow 5s infinite ease-in-out;
}

.floating-badge-2 {
    bottom: 12%;
    left: 20px;
    animation: floatReverse 6s infinite ease-in-out;
}

.floating-badge-3 {
    top: 15%;
    right: -10px;
    animation: floatReverse 5.5s infinite ease-in-out;
}

.floating-badge-4 {
    bottom: 8%;
    right: 15px;
    animation: floatSlow 6.5s infinite ease-in-out;
}

@media (max-width: 991.98px) {
    .floating-badge {
        display: none !important;
    }
}

/* Enhanced 3D Card Hover Depth */
.hrv-card {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.hrv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--hrv-growth-emerald), var(--hrv-empowerment-amber));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hrv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(11, 37, 69, 0.12) !important;
}

.hrv-card:hover::after {
    opacity: 1;
}

/* Gradient Icon Boxes */
.gradient-icon-box {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.hrv-card:hover .gradient-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box-emerald {
    background: linear-gradient(135deg, rgba(32, 144, 192, 0.2), rgba(40, 160, 216, 0.1));
    color: #2090C0;
}

.icon-box-navy {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.15), rgba(32, 144, 192, 0.1));
    color: #0B2545;
}

.icon-box-amber {
    background: linear-gradient(135deg, rgba(240, 192, 80, 0.25), rgba(216, 155, 40, 0.15));
    color: #d97706;
}

.icon-box-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(255, 99, 132, 0.1));
    color: #dc3545;
}

/* Shimmer Button Effect */
.btn-hrv-emerald {
    position: relative;
    overflow: hidden;
}

.btn-hrv-emerald::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
}

.btn-hrv-emerald:hover::before {
    animation: shimmerEffect 1.2s infinite;
}

/* Stat Counter Card */
.stat-counter-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
    border: 1px solid rgba(11, 37, 69, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.stat-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(32, 144, 192, 0.15);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2090C0;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
    vertical-align: middle;
    margin-right: 6px;
}

/* ==========================================================================
   VEER MASCOT & FLOATING BRAND AMBASSADOR WIDGET
   ========================================================================== */

/* Mascot Hero Display Container */
.mascot-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mascot-hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(32, 144, 192, 0.3);
}

.mascot-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.mascot-badge-tag {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 37, 69, 0.88);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Service 3D Icon Graphic Header */
.service-3d-graphic {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 2px solid #ffffff;
    transition: transform 0.3s ease;
}

.service-3d-graphic:hover {
    transform: scale(1.08) rotate(3deg);
}

/* Floating "Ask Veer" Interactive Assistant */
.ask-veer-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
}

.veer-speech-bubble {
    background: #ffffff;
    color: #0B2545;
    padding: 12px 18px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 12px 35px rgba(11, 37, 69, 0.2);
    border: 1px solid rgba(11, 37, 69, 0.08);
    max-width: 250px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
    position: relative;
    animation: floatSlow 4s infinite ease-in-out;
    display: block;
}

.veer-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.veer-floating-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2545, #2090C0);
    padding: 3px;
    box-shadow: 0 8px 25px rgba(32, 144, 192, 0.4);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: none;
    position: relative;
    outline: none;
}

.veer-floating-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(32, 144, 192, 0.6);
}

.veer-floating-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
}

.veer-online-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background-color: #2090C0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

@media (max-width: 576px) {
    .ask-veer-widget {
        bottom: 16px;
        right: 16px;
    }
    .veer-speech-bubble {
        display: none;
    }
    .veer-floating-btn {
        width: 58px;
        height: 58px;
    }
}


