.jh-hero-slider-section {
        position: relative;
        overflow: hidden;
        background-image: url('img/hero-bg1.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 155px 0 70px 0;
    }

    /* Ambient Atmosphere Glow */
    .jh-hero-ambient-glow {
        position: absolute;
        top: 15%;
        left: 8%;
        width: 580px;
        height: 580px;
        background: radial-gradient(circle, rgba(2, 86, 211, 0.14) 0%, rgba(56, 189, 248, 0.06) 50%, transparent 70%);
        filter: blur(65px);
        pointer-events: none;
        z-index: 1;
        animation: jhAuraPulse 8s ease-in-out infinite alternate;
    }
    @keyframes jhAuraPulse {
        0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
        100% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
    }

    /* Slider Viewport */
    .jh-slider-viewport {
        position: relative;
        width: 100%;
        z-index: 2;
    }
    .jh-slide {
        display: none;
        opacity: 0;
    }
    .jh-slide.active {
        display: block;
        animation: jhSlideInSmooth 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes jhSlideInSmooth {
        0% {
            opacity: 0;
            transform: translateY(18px) scale(0.99);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Eyebrow Badge Pill with Pulsing Beacon */
    .jh-hero-badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 18px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(2, 86, 211, 0.18);
        border-radius: 30px;
        box-shadow: 0 4px 20px rgba(2, 86, 211, 0.08);
        margin-bottom: 18px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .jh-hero-badge-pill:hover {
        transform: translateY(-2px);
        border-color: #0256d3;
        box-shadow: 0 8px 25px rgba(2, 86, 211, 0.18);
    }
    .jh-pulse-beacon {
        position: relative;
        width: 10px;
        height: 10px;
        background: #10b981;
        border-radius: 50%;
        display: inline-block;
    }
    .jh-pulse-beacon::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 16px;
        height: 16px;
        border: 2px solid #10b981;
        border-radius: 50%;
        animation: jhBeaconPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    @keyframes jhBeaconPulse {
        0% { transform: scale(0.8); opacity: 1; }
        100% { transform: scale(2.3); opacity: 0; }
    }
    .jh-badge-icon img {
        width: 16px;
        height: 16px;
        vertical-align: middle;
    }
    .jh-badge-text {
        font-size: 13.5px;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: 0.2px;
    }
    .jh-badge-sparkle {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, #0256d3 0%, #3b82f6 100%);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 9px;
        border-radius: 12px;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        box-shadow: 0 2px 8px rgba(2, 86, 211, 0.25);
    }

    /* Main Headline */
    .jh-hero-title {
        font-size: clamp(34px, 4.4vw, 54px);
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a;
        letter-spacing: -0.025em;
        margin-bottom: 16px;
    }
    .jh-hero-title span.jh-title-gradient {
        background: linear-gradient(135deg, #0256d3 0%, #2563eb 50%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    /* Description */
    .jh-hero-desc {
        font-size: 16.5px;
        line-height: 1.68;
        color: #475569;
        max-width: 580px;
        margin-bottom: 22px;
    }

    /* Slide-Specific Customer Trust Chips */
    .jh-hero-value-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
    }
    .jh-vchip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 15px;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 20px;
        font-size: 12.5px;
        font-weight: 600;
        color: #334155;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        transition: all 0.25s ease;
    }
    .jh-vchip:hover {
        background: #ffffff;
        border-color: #cbd5e1;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(2, 86, 211, 0.08);
    }

    /* Action Buttons (CTAs) */
    .jh-hero-btn-group {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 20px;
    }
    .jh-hero-btn-primary {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 32px;
        background: linear-gradient(135deg, #0256d3 0%, #1d4ed8 100%);
        color: #ffffff !important;
        border-radius: 35px;
        font-weight: 700;
        font-size: 15px;
        letter-spacing: 0.2px;
        text-decoration: none !important;
        box-shadow: 0 10px 25px -4px rgba(2, 86, 211, 0.45);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .jh-hero-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.75s ease;
    }
    .jh-hero-btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 32px -4px rgba(2, 86, 211, 0.55);
    }
    .jh-hero-btn-primary:hover::before {
        left: 100%;
    }
    .jh-hero-btn-primary .jh-btn-arrow {
        display: inline-flex;
        transition: transform 0.25s ease;
    }
    .jh-hero-btn-primary:hover .jh-btn-arrow {
        transform: translateX(4px);
    }

    /* WhatsApp Secondary CTA */
    .jh-hero-btn-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #ffffff !important;
        border-radius: 35px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none !important;
        box-shadow: 0 10px 25px -4px rgba(37, 211, 102, 0.35);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .jh-hero-btn-whatsapp:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.45);
    }
    .jh-wa-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Micro Trust Reassurance Bar */
    .jh-hero-micro-trust {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12.5px;
        color: #64748b;
        font-weight: 600;
    }
    .jh-hero-micro-trust .dot {
        color: #cbd5e1;
    }

    /* Right Side Showcase & Floating Metric Cards */
    .jh-hero-showcase-wrap {
        position: relative;
        z-index: 2;
        min-height: 440px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .jh-showcase-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 420px;
        height: 420px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(2, 86, 211, 0.22) 0%, rgba(56, 189, 248, 0.08) 50%, transparent 75%);
        filter: blur(45px);
        z-index: 0;
        pointer-events: none;
    }
    .jh-hero-main-img {
        position: relative;
        z-index: 1;
        text-align: center;
        width: 100%;
    }
    .jh-hero-main-img img {
        width: 100%;
        max-width: 490px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 35px rgba(2, 86, 211, 0.14));
        animation: jhFloatHero 6s ease-in-out infinite alternate;
        transition: transform 0.4s ease;
    }
    @keyframes jhFloatHero {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-12px); }
    }

    /* Floating Metric Cards */
    .jh-float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.95);
        border-radius: 14px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0,0,0,0.04);
        z-index: 3;
        pointer-events: auto;
        transition: all 0.3s ease;
    }
    .jh-float-card:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 16px 36px rgba(2, 86, 211, 0.18);
    }

    /* Card Placements */
    .jh-card-growth {
        top: 6%;
        right: -10px;
        animation: jhFloatCard1 5s ease-in-out infinite alternate;
    }
    @keyframes jhFloatCard1 {
        0% { transform: translateY(0px) rotate(0deg); }
        100% { transform: translateY(-8px) rotate(1deg); }
    }
    .jh-card-rating {
        bottom: 8%;
        left: -20px;
        animation: jhFloatCard2 5.5s ease-in-out infinite alternate;
    }
    @keyframes jhFloatCard2 {
        0% { transform: translateY(0px); }
        100% { transform: translateY(8px); }
    }
    .jh-card-speed {
        top: 48%;
        right: -30px;
        animation: jhFloatCard3 6s ease-in-out infinite alternate;
    }
    @keyframes jhFloatCard3 {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-6px); }
    }

    /* Card Icons & Badges */
    .jh-fc-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        flex-shrink: 0;
    }
    .jh-icon-growth {
        background: #dcfce7;
        color: #16a34a;
    }
    .jh-icon-purple {
        background: #f3e8ff;
        color: #9333ea;
    }
    .jh-icon-cyan {
        background: #cffafe;
        color: #0891b2;
    }
    .jh-icon-rose {
        background: #ffe4e6;
        color: #e11d48;
    }
    .jh-icon-amber {
        background: #fef3c7;
        color: #d97706;
    }
    .jh-fc-stars {
        color: #f59e0b;
        font-size: 13px;
        letter-spacing: 1px;
    }
    .jh-speed-badge {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #0256d3 0%, #38bdf8 100%);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 13px;
        box-shadow: 0 4px 10px rgba(2, 86, 211, 0.3);
        flex-shrink: 0;
    }
    .jh-badge-emerald {
        background: linear-gradient(135deg, #059669 0%, #34d399 100%) !important;
        box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3) !important;
    }
    .jh-badge-cyan {
        background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%) !important;
        box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3) !important;
    }

    .jh-fc-value {
        font-size: 13.5px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
    }
    .jh-fc-label {
        font-size: 11px;
        color: #64748b;
        font-weight: 600;
        margin-top: 2px;
    }

    /* Slider Navigation Arrows */
    .jh-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(226, 232, 240, 0.95);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1e293b;
        font-size: 16px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .jh-slider-arrow:hover {
        background: #0256d3;
        color: #ffffff;
        border-color: #0256d3;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 12px 28px rgba(2, 86, 211, 0.4);
    }
    .jh-slider-prev {
        left: 25px;
    }
    .jh-slider-next {
        right: 25px;
    }

    /* Bottom Floating Controller Dock */
    .jh-slider-control-dock {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 7px 18px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        z-index: 10;
    }
    .jh-dock-counter {
        font-size: 12.5px;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: 0.5px;
        font-family: monospace, sans-serif;
    }
    .jh-dock-counter .sep {
        color: #94a3b8;
        margin: 0 2px;
    }
    .jh-dock-dots {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .jh-slider-dot {
        width: 9px;
        height: 9px;
        border-radius: 10px;
        background: rgba(30, 41, 59, 0.22);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .jh-slider-dot.active {
        width: 28px;
        background: linear-gradient(135deg, #0256d3 0%, #38bdf8 100%);
        box-shadow: 0 2px 10px rgba(2, 86, 211, 0.4);
    }

    /* Live Autoplay Progress Line */
    .jh-slider-progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 0%;
        background: linear-gradient(90deg, #0256d3, #38bdf8, #25D366);
        z-index: 10;
        transition: width 0.1s linear;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .jh-hero-slider-section {
            padding: 130px 0 60px 0;
        }
        .jh-slider-arrow {
            display: none;
        }
        .jh-float-card.jh-card-speed {
            display: none;
        }
        .jh-card-growth {
            right: 0;
            top: 2%;
        }
        .jh-card-rating {
            left: 0;
            bottom: 2%;
        }
        .jh-hero-title {
            font-size: 32px;
        }
        .jh-hero-btn-group {
            gap: 12px;
        }
        .jh-hero-btn-primary, .jh-hero-btn-whatsapp {
            padding: 12px 22px;
            font-size: 14px;
        }
    }
    @media (max-width: 575px) {
        .jh-hero-title {
            font-size: 26px;
        }
        .jh-hero-desc {
            font-size: 15px;
        }
        .jh-float-card {
            padding: 8px 12px;
        }
        .jh-fc-value {
            font-size: 12px;
        }
        .jh-fc-label {
            font-size: 10px;
        }
        .jh-hero-btn-group {
            flex-direction: column;
            align-items: stretch;
        }
        .jh-hero-btn-primary, .jh-hero-btn-whatsapp {
            justify-content: center;
        }
        .jh-slider-control-dock {
            bottom: 15px;
        }
    }

/* Helper & Utility Classes for Slider Elements (Zero Inline Styles) */
.jh-hero-header-reset { padding: 0 !important; margin: 0 !important; }
.jh-color-blue { color: #0256d3 !important; }
.jh-color-amber { color: #f59e0b !important; }
.jh-color-emerald { color: #10b981 !important; }
.jh-color-purple { color: #8b5cf6 !important; }
.jh-color-cyan { color: #06b6d4 !important; }
.jh-color-red { color: #ea4335 !important; }
