/*
Theme Name: Weblizar Demo 2026
Theme URI: www.weblizar.com
Author: weblizar
Author URI: http://weblizar.com/
Description: Weblizar theme is the home theme
Version:  1.01
Tags: white, red , full-width-template, threaded-comments, custom-menu, two-columns,translation-ready , custom-background , sticky-post
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl.html
Text Domain: weblizar
*/
       :root {
            --primary: #5b4df7;
            --primary-dark: #4638df;
            --secondary: #101828;
            --text: #667085;
            --light: #f8f9fc;
            --border: #eaecf0;
            --white: #ffffff;
            --success: #12b76a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--secondary);
            background: #fff;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
        }

        /* ================= HEADER ================= */

        .navbar {
            padding: 18px 0;
            background: rgba(255,255,255,.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #f0f1f3;
        }

        .navbar-brand img {
            width: 145px;
        }

        .navbar-nav .nav-link {
            color: #344054;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 15px !important;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            padding: 11px 20px;
            font-weight: 600;
            font-size: 14px;
            border: 0;
            transition: .3s;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            border: 1px solid #d0d5dd;
            color: #344054;
            border-radius: 8px;
            padding: 11px 20px;
            font-weight: 600;
            font-size: 14px;
            background: #fff;
        }

        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ================= HERO ================= */

        .hero {
            position: relative;
            overflow: hidden;
            padding: 110px 0 100px;
            background:
                radial-gradient(circle at 85% 20%, rgba(91,77,247,.13), transparent 30%),
                radial-gradient(circle at 10% 80%, rgba(37,99,235,.08), transparent 25%),
                #f8f9ff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #eeecff;
            color: var(--primary);
            padding: 8px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .hero h1 {
            font-size: 58px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 22px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: var(--text);
            max-width: 650px;
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-buttons a {
            padding: 14px 23px;
        }

        .hero-card {
            position: relative;
            background: #fff;
            border: 1px solid #e4e7ec;
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 25px 70px rgba(16,24,40,.12);
        }

        .hero-card img {
            width: 100%;
            border-radius: 12px;
        }

        .floating-card {
            position: absolute;
            background: #fff;
            padding: 15px 18px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(16,24,40,.12);
            font-size: 13px;
            font-weight: 600;
        }

        .floating-card.one {
            left: -40px;
            top: 40px;
        }

        .floating-card.two {
            right: -35px;
            bottom: 35px;
        }

        /* ================= STATS ================= */

        .stats {
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
            background: #fff;
        }

        .stat-box {
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .stat-box:last-child {
            border-right: 0;
        }

        .stat-box h3 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .stat-box p {
            color: var(--text);
            margin: 0;
            font-size: 14px;
        }

        /* ================= SECTION ================= */

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-heading {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-heading .label {
            color: var(--primary);
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            font-size: 40px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 15px;
        }

        .section-heading p {
            color: var(--text);
            font-size: 16px;
        }

        /* ================= PRODUCT CARD ================= */

        .product-card {
            height: 100%;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: .3s;
        }

        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 50px rgba(16,24,40,.10);
            border-color: #d9d6ff;
        }

        .product-image {
            height: 190px;
            overflow: hidden;
            background: #f2f4f7;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 23px;
        }

        .product-content h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 9px;
        }

        .product-content p {
            color: var(--text);
            font-size: 14px;
            min-height: 65px;
        }

        .product-link {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
        }

        /* ================= CATEGORY ================= */

        .category-card {
            background: #fff;
            padding: 32px 25px;
            border-radius: 15px;
            border: 1px solid var(--border);
            height: 100%;
            transition: .3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(16,24,40,.08);
        }

        .category-icon {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eeecff;
            color: var(--primary);
            border-radius: 12px;
            font-size: 25px;
            margin-bottom: 20px;
        }

        .category-card h5 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .category-card p {
            color: var(--text);
            font-size: 14px;
            margin-bottom: 0;
        }

        /* ================= FEATURED ERP ================= */

        .erp-section {
            background: #101828;
            color: #fff;
            overflow: hidden;
        }

        .erp-section .section-heading {
            color: #fff;
        }

        .erp-section .section-heading p {
            color: #98a2b3;
        }

        .erp-content h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .erp-content p {
            color: #98a2b3;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
        }

        .feature-list li {
            margin-bottom: 13px;
            color: #d0d5dd;
            font-size: 14px;
        }

        .feature-list i {
            color: #32d583;
            margin-right: 10px;
        }

        .erp-image {
            background: #fff;
            padding: 12px;
            border-radius: 16px;
            box-shadow: 0 30px 70px rgba(0,0,0,.3);
        }

        .erp-image img {
            width: 100%;
            border-radius: 10px;
        }

        /* ================= SERVICES ================= */

        .service-card {
            padding: 28px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 15px;
            height: 100%;
            transition: .3s;
        }

        .service-card:hover {
            border-color: #c8c3ff;
            transform: translateY(-5px);
        }

        .service-icon {
            color: var(--primary);
            font-size: 30px;
            margin-bottom: 17px;
        }

        .service-card h5 {
            font-weight: 700;
        }

        .service-card p {
            color: var(--text);
            font-size: 14px;
            margin: 0;
        }

        /* ================= WHY US ================= */

        .why-box {
            display: flex;
            gap: 18px;
            margin-bottom: 30px;
        }

        .why-icon {
            flex: 0 0 48px;
            width: 48px;
            height: 48px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #eeecff;
            color: var(--primary);
            border-radius: 10px;
            font-size: 21px;
        }

        .why-box h5 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .why-box p {
            color: var(--text);
            font-size: 14px;
            margin: 0;
        }

        /* ================= CTA ================= */

        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #5b4df7, #7165ff);
            color: #fff;
        }

        .cta h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta p {
            color: rgba(255,255,255,.8);
            max-width: 650px;
            margin: 0 auto 28px;
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            padding: 13px 24px;
            border-radius: 8px;
            font-weight: 700;
        }

        .btn-white:hover {
            background: #f2f4f7;
            color: var(--primary-dark);
        }

        /* ================= FOOTER ================= */

        footer {
            background: #101828;
            color: #fff;
            padding: 65px 0 20px;
        }

        footer img {
            width: 145px;
            margin-bottom: 18px;
            filter: brightness(0) invert(1);
        }

        footer p {
            color: #98a2b3;
            font-size: 14px;
        }

        footer h6 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer li {
            margin-bottom: 10px;
        }

        footer li a {
            color: #98a2b3;
            font-size: 14px;
        }

        footer li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #344054;
            margin-top: 45px;
            padding-top: 20px;
            color: #98a2b3;
            font-size: 13px;
        }

        .social-links a {
            display: inline-flex;
            width: 36px;
            height: 36px;
            border: 1px solid #344054;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 6px;
            transition: .3s;
        }

        .social-links a:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        /* ================= RESPONSIVE ================= */

        @media (max-width: 991px) {

            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 45px;
            }

            .hero-card {
                margin-top: 50px;
            }

            .floating-card.one {
                left: 10px;
            }

            .floating-card.two {
                right: 10px;
            }

            .stat-box {
                border-right: 0;
                margin-bottom: 25px;
            }
        }

        @media (max-width: 767px) {

            .hero h1 {
                font-size: 37px;
            }

            .hero p {
                font-size: 16px;
            }

            .section {
                padding: 65px 0;
            }

            .section-heading h2 {
                font-size: 31px;
            }

            .erp-content h2 {
                font-size: 30px;
            }

            .cta h2 {
                font-size: 30px;
            }

            .floating-card {
                display: none;
            }
        }

/* =========================================
   WEBLIZAR HEADER DROPDOWN STYLE
========================================= */

.navbar .navbar-nav > li {
    position: relative;
}

/* Parent menu */
.navbar .navbar-nav > li > .nav-link {
    position: relative;
}

/* Dropdown */
.navbar .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 230px;
    margin: 0;
    padding: 8px 0;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 0;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    display: block;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999;
}

/* Show dropdown on hover */
@media (min-width: 992px) {

    .navbar .navbar-nav > .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Dropdown item */
    .navbar .dropdown-menu .nav-item {
        width: 100%;
    }

    .navbar .dropdown-menu .nav-link {
        display: block;

        width: 100%;

        padding: 11px 20px;

        color: #333;

        font-size: 14px;
        font-weight: 500;

        background: transparent;

        transition: all .2s ease;
    }

    /* Hover */
    .navbar .dropdown-menu .nav-link:hover {
        color: #e84e1f;
        background: #f8f8f8;

        padding-left: 25px;
    }

    /* Remove Bootstrap arrow */
    .navbar .dropdown-toggle::after {
        display: none;
    }

    /* Our arrow */
    .dropdown-arrow {
        font-size: 10px;
        margin-left: 5px;

        transition: transform .2s ease;
    }

    .dropdown:hover > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }
}


/* =========================================
   SECOND LEVEL DROPDOWN
========================================= */

@media (min-width: 992px) {

    .navbar .dropdown-submenu {
        position: relative;
    }

    .navbar .dropdown-submenu > .dropdown-menu {
        top: -8px;
        left: 100%;

        margin-left: 1px;

        transform: translateX(8px);
    }

    .navbar .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .navbar .dropdown-submenu > .nav-link::after {
        content: "\f285";

        font-family: "bootstrap-icons";

        float: right;

        font-size: 10px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .navbar .dropdown-menu {
        position: static;

        width: 100%;

        margin: 0;
        padding: 0;

        border: 0;

        box-shadow: none;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown-menu .nav-link {
        padding: 10px 25px;
    }

    .navbar .dropdown-menu .dropdown-menu .nav-link {
        padding-left: 40px;
    }
}