/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 07:30:29 */
:root {
            --primary: #465C6F;
            --primary-light: #5a7389;
            --primary-dark: #344657;
            --dark: #242424;
            --dark-light: #3a3a3a;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --accent-green: #22c55e;
            --accent-green-dark: #16a34a;
            --accent-orange: #f59e0b;
            --accent-red: #ef4444;
            --gradient-primary: linear-gradient(135deg, #465C6F 0%, #344657 100%);
            --gradient-dark: linear-gradient(135deg, #242424 0%, #1a1a2e 100%);
            --gradient-hero: linear-gradient(135deg, #242424 0%, #465C6F 50%, #344657 100%);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

 /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.8rem;
            position: relative;
            z-index: 1001;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.8);
        }

        .top-bar-item svg {
            width: 14px;
            height: 14px;
            fill: var(--accent-green);
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .top-bar-badge {
            background: rgba(255,255,255,0.1);
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            color: var(--accent-green);
            border: 1px solid rgba(34,197,94,0.3);
            display: flex;
            align-items: center;
            gap: 4px;
			line-height: 1.7;
        }

        .top-bar-badge .pulse-dot {
            width: 6px;
            height: 6px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }
.logo-text h2 {
    font-weight: 900 !important;
    letter-spacing: -1px;
    margin: 0;
	font-size: 20px;
}
.logo-text div {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
	justify-content: end;
}
.whb-main-header {
    box-shadow: var(--shadow-lg);
}

.nav-cta a.btn.btn-primary {
    text-transform: capitalize;
    color: #fff !important;
}
.nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-family: inherit;
            white-space: nowrap;
        }

        .btn svg {
            width: 18px;
            height: 18px;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(70,92,111,0.4);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(70,92,111,0.5);
        }

        .btn-dark {
            background: var(--dark);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(36,36,36,0.4);
        }

        .btn-dark:hover {
            background: var(--dark-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(36,36,36,0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 4px 14px rgba(0,0,0,0.15);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-green {
            background: var(--accent-green);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(34,197,94,0.4);
        }

        .btn-green:hover {
            background: var(--accent-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(34,197,94,0.5);
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 1rem;
        }

        .btn-xl {
            padding: 18px 40px;
            font-size: 1.05rem;
        }

        .btn-icon-only {
            padding: 10px;
            border-radius: var(--radius-md);
        }

        .phone-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }

        .phone-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            animation: phoneRing 2s ease-in-out infinite;
        }

        @keyframes phoneRing {
            0%, 100% { transform: rotate(0deg); }
            5% { transform: rotate(15deg); }
            10% { transform: rotate(-15deg); }
            15% { transform: rotate(10deg); }
            20% { transform: rotate(-10deg); }
            25% { transform: rotate(0deg); }
        }




        /* Top label */
        .hero-top-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
/*             opacity: 0; */
            transform: translateY(20px);
            animation: hero-fade-up 0.8s ease forwards 0.2s;
        }

        .hero-label-line {
            width: 40px;
            height: 2px;
            background: var(--accent-green);
            border-radius: 1px;
        }

        .hero-label-text {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-green);
        }

        /* Badge */
        .hero-badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            margin-bottom: 32px;
            
            transform: translateY(20px);
            animation: hero-fade-up 0.8s ease forwards 0.4s;
        }

        .hero-badge-star {
            font-size: 14px;
        }

        .hero-badge-text {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
        }

        .hero-badge-rating {
            display: flex;
            gap: 2px;
            margin-left: 4px;
        }

        .hero-badge-rating svg {
            width: 12px;
            height: 12px;
            fill: var(--accent-orange);
        }



/* ==========================================
           RIGHT SIDE - FLOATING CARDS
        ========================================== */
        .hero-right {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Glowing shield in background */
        .hero-glow-circle {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
            animation: glow-pulse 4s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        .hero-glow-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .hero-glow-ring-1 {
            width: 320px; height: 320px;
            animation: ring-spin 30s linear infinite;
        }

        .hero-glow-ring-2 {
            width: 240px; height: 240px;
            border-color: rgba(34,197,94,0.1);
            animation: ring-spin 25s linear infinite reverse;
        }

        .hero-glow-ring-3 {
            width: 160px; height: 160px;
            border-color: rgba(255,255,255,0.08);
            animation: ring-spin 20s linear infinite;
        }

        @keyframes ring-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Ring dots */
        .ring-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(34,197,94,0.4);
        }

        .hero-glow-ring-1 .ring-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
        .hero-glow-ring-2 .ring-dot { bottom: 0; left: 50%; transform: translate(-50%, 50%); }

        /* Center shield icon */
        .hero-center-shield {
            position: relative;
            z-index: 2;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: shield-float 6s ease-in-out infinite;
        }

        .hero-center-shield svg {
            width: 48px;
            height: 48px;
            fill: var(--accent-green);
        }

        @keyframes shield-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* Floating feature cards */
        .hero-float-card {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.12);
            padding: 14px 20px;
            border-radius: var(--radius-md);
            white-space: nowrap;
            transition: var(--transition);
        }

        .hero-float-card:hover {
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.25);
            transform: translateY(-4px) !important;
        }

        .hero-float-card .fc-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-float-card .fc-icon svg {
            width: 18px;
            height: 18px;
        }

        .hero-float-card .fc-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
        }

        .hero-float-card .fc-sub {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            font-weight: 400;
            margin-top: 2px;
        }

        /* Card positions & animations */
        .float-card-1 {
            top: 30px;
            right: -20px;
            opacity: 0;
            animation: float-card-in 0.8s ease forwards 1.2s, float-bob-1 6s ease-in-out infinite 2s;
        }

        .float-card-1 .fc-icon {
            background: rgba(34,197,94,0.2);
        }
        .float-card-1 .fc-icon svg { fill: var(--accent-green); }

        .float-card-2 {
            top: 180px;
            left: -40px;
            opacity: 0;
            animation: float-card-in 0.8s ease forwards 1.5s, float-bob-2 7s ease-in-out infinite 2.3s;
        }

        .float-card-2 .fc-icon {
            background: rgba(59,130,246,0.2);
        }
        .float-card-2 .fc-icon svg { fill: #3b82f6; }

        .float-card-3 {
            bottom: 80px;
            right: -30px;
            opacity: 0;
            animation: float-card-in 0.8s ease forwards 1.8s, float-bob-3 8s ease-in-out infinite 2.6s;
        }

        .float-card-3 .fc-icon {
            background: rgba(245,158,11,0.2);
        }
        .float-card-3 .fc-icon svg { fill: var(--accent-orange); }

        .float-card-4 {
            bottom: 20px;
            left: -10px;
            opacity: 0;
            animation: float-card-in 0.8s ease forwards 2.1s, float-bob-1 7.5s ease-in-out infinite 2.9s;
        }

        .float-card-4 .fc-icon {
            background: rgba(139,92,246,0.2);
        }
        .float-card-4 .fc-icon svg { fill: #8b5cf6; }

        @keyframes float-card-in {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes float-bob-1 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes float-bob-2 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }

        @keyframes float-bob-3 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(70, 92, 111, 0.08);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
/*     margin-bottom: 20px; */
}
.section-label svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}
.service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            transition: var(--transition);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(70,92,111,0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: rgba(70,92,111,0.08);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--primary);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon .elementor-icon svg {
            fill: var(--white);
        }

/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.choose-us{
    padding:80px 0;
    background:#f5f7fb;
}

.choose-us .stat-card{
    width:220px;
    padding:30px;
    text-align:center;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.choose-us .stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.choose-us .stat-icon{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:15px;
    background:#1e3a5f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.choose-us .stat-icon svg{
    width:28px;
    height:28px;
    fill:white;
}

.choose-us .stat-number{
    font-size:32px;
    font-weight:700;
    color:#1e3a5f;
}

.choose-us .stat-label{
    font-size:14px;
    color:#777;
}

