  

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
        }

        /* Header */
        .main-header {
            background: #fff;
            position: relative;
            z-index: 1000;
        }

        .header-wrapper {
            min-height: 72px;
            position: relative;
            overflow: visible;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 12px rgb(0 0 0 / 12%);
        }

        /* Blue diagonal background */
        .header-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 34%;
            height: 100%;
            pointer-events: none;
        }

        .header-container {
            position: relative;
            z-index: 2;
        }

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

        .navbar-brand img {
            max-height: 43px;
            width: auto;
            display: block;
        }
        /* Dropdown Parent */
        .nav-dropdown {
            position: relative;
        }

        /* Mega menu */
        .category-mega-menu {
            position: absolute !important;
            top: 100% !important;
            left: 50% !important;
            transform: translateX(-50%);
            width: calc(100vw - 30px);
            max-width: 1200px;
            padding: 24px 28px !important;
            background: #f8fbff !important;
            border: 1px solid #dce8f7 !important;
            border-radius: 8px !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
            z-index: 99999;
            display: none;
        }

        /* Show dropdown on hover */
        .nav-dropdown:hover > .category-mega-menu {
            display: flex !important;
        }

        /* Keep dropdown open when mouse is over it */
        .category-mega-menu:hover {
            display: flex !important;
        }
        /* =========================================
        COLUMNS
        ========================================= */

        .category-column {
            width: 33.333%;
            padding: 0 28px;
        }

        /* Vertical separator */
        .category-column + .category-column {
            border-left: 1px solid #7caeff;
        }

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

        .category-column a {
            display: flex;
            align-items: center;

            gap: 10px;

            width: 100%;

            padding: 6px 0;
            margin-bottom: 8px;

            color: #111;
            text-decoration: none;

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

            white-space: nowrap;
        }

        .category-icon {
            width: 25px;
            height: 25px;

            flex: 0 0 25px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #edf4ff;

            border: 1px solid #d8e6fb;

            border-radius: 4px;

            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        .category-icon i {
            color: #0755d9;
            font-size: 14px;
        }

        /* Hover */
        .category-column a:hover {
            color: #0755d9;
        }

        .category-column a:hover .category-icon {
            background: #e2edff;
        }
        .services-mega-menu {
            width: 350px !important;
            min-width: 350px !important;

            left: auto !important;
            right: auto !important;

            transform: none !important;

            padding: 18px 25px !important;
        }

        /* Services column */
        .services-column {
            width: 100%;
        }

        /* Service item */
        .services-column a {
            display: flex;
            align-items: center;
            gap: 10px;

            width: 100%;

            padding: 8px 0;
            margin-bottom: 6px;

            color: #111;
            text-decoration: none;

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

        /* Hover */
        .services-column a:hover {
            color: #0755d9;
        }
        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .main-nav .nav-link {
            color: #071957;
            font-size: 14px;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 4px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .main-nav .nav-link:hover {
            color: #1254c4;
            background: #f0f4fc;
        }

        .main-nav .nav-link.active {
            background: #0B4BC833;
            color: #071957;
        }

        /* Buttons */
        .header-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .report-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 81px;
            height: 35px;
            padding: 0 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .report-btn-outline {
            color: #0755d9;
            border: 1px solid #0755d9;
            background: #fff;
        }

        .report-btn-outline:hover {
            background: #0755d9;
            color: #fff;
        }

        .report-btn-primary {
            color: #0d4dcc;
            border: 1px solid #0d4dcc;
        }

        .report-btn-primary:hover {
            background: #0646b5;
            border-color: #0646b5;
            color: #fff;
        }
        .header-search{
            background: #0755d9;
            padding:4px 9px;
            margin-left:5px;
            border:1px solid #0755d9;
            border-radius:4px;
            
        }
        .header-search img{
            height: 24px;
            width: 24px;
        }        
        /* Mobile */
        @media (max-width: 991.98px) {

            .header-wrapper {
                min-height: 70px;
            }

            .main-nav {
                align-items: stretch;
                flex-direction: column;
                gap: 2px;
                padding: 15px 0;
            }

            .main-nav .nav-link {
                padding: 10px 15px;
            }

            .header-buttons {
                flex-direction: column;
                align-items: stretch;
                padding-bottom: 15px;
            }

            .report-btn {
                width: 100%;
            }

            .navbar-brand img {
                max-height: 38px;
            }
        }
    /* Header search icon */
        .header-search {
            cursor: pointer;
        }

        .header-search img {
            cursor: pointer;
        }

/* ================================
   SEARCH POPUP OVERLAY
================================ */

.search-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;

    z-index: 99999;
}

.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ================================
   MAIN POPUP
================================ */

.search-popup {
    position: relative;

    width: calc(100% - 30px);
    max-width: 40%;

    background: #ffffff;

    border: 1px solid #d8e5f5;
    border-radius: 7px;

    padding: 27px 32px 25px;

    text-align: center;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);

    transform: scale(0.97);
    transition: transform 0.25s ease;
}

.search-popup-overlay.active .search-popup {
    transform: scale(1);
}


/* ================================
   CLOSE BUTTON
================================ */

.search-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;

    border: 0;
    background: transparent;

    font-size: 25px;
    line-height: 1;

    color: #777;

    cursor: pointer;

    z-index: 2;
}

.search-popup-close:hover {
    color: #000;
}


/* ================================
   ICON
================================ */

.search-popup-icon {
    margin-bottom: 18px;
}

.search-popup-icon img {
    width: 54px;
    height: 54px;

    object-fit: contain;
}


/* ================================
   HEADING
================================ */

.search-popup-heading {
    margin-bottom: 7px;

    font-size: 31px;
    line-height: 1.2;

    font-weight: 700;

    color: #050505;
}

.search-popup-heading span {
    color: #2028d9;
}


/* ================================
   DESCRIPTION
================================ */

.search-popup > p {
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0 auto 21px;
    font-size: 15px;
    line-height: 1.35;
    color: #111;
}


/* ================================
   SEARCH FORM
================================ */

.popup-search-form {
    margin: 0 0 26px;
}


/* LIGHT BLUE SEARCH AREA */

.popup-search-box {
    width: 100%;

    padding: 14px 10px;

    background: #e9f5ff;

    border-radius: 9px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


/* WHITE INPUT AREA */

.popup-search-box input {
    flex: 1;

    height: 60px;

    min-width: 0;

    padding: 15px 20px;

    border: 0;
    outline: none;

    background: #ffffff;

    border-radius: 8px;

    font-size: 13px;

    color: #333;

    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.popup-search-box input::placeholder {
    color: #b7b7b7;
}


/* SEARCH BUTTON */

.popup-search-box button {
    flex: 0 0 auto;

    width: 28px;
    height: 28px;

    margin-left: -38px;
    margin-right: 10px;

    padding: 0;

    border: 0;
    border-radius: 4px;

    background: #2028d9;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    position: relative;
    z-index: 2;
}

.popup-search-box button img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}


/* ================================
   SUGGESTION TITLE
================================ */

.search-suggestions-title {
    margin-bottom: 9px;

    text-align: left;

    font-size: 14px;

}


/* ================================
   SUGGESTIONS
================================ */

.search-suggestions {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    width: 100%;
}


/* SUGGESTION CARD */

.search-suggestions a {
    /* min-height: 67px; */

    padding: 10px;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;

    text-align: left;

    text-decoration: none;

    background: #f2f8ff;

    border: 1px solid #edf2f8;

    border-radius: 5px;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

    transition: all 0.2s ease;
}

.search-suggestions a:hover {
    transform: translateY(-2px);

    border-color: #d5e4f7;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
}


/* SUGGESTION TEXT */

.search-suggestions a span {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: #111;
}


/* SUGGESTION ICON */

.search-suggestions a i {
    width: 23px;
    height: 23px;

    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-style: normal;

    font-size: 12px;

    background: #ffffff;

    color: #555;

    border-radius: 2px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}
