::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: #d6d6d6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #3f4344;
    border-radius: 10px;
}

:root {
    --primary-color: #000a64;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border: none !important;
}

/* Color Section */

body {
    font-family: Montserrat;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

/* =========================================
   HEADER
========================================= */

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.navbar {
    position: relative;
    z-index: 9999;
    padding: 0 !important;
}

/* =========================================
   SEARCH BAR
========================================= */

.search-box {
    position: relative;
    z-index: 10000;
}

.search-box .form-control {
    box-shadow: none !important;
}

/* LIVE SEARCH */

#livesearch {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    z-index: 10001;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#livesearch a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000;
    transition: 0.2s ease;
}

#livesearch a:hover {
    background-color: #f5f5f5;
}

/* Nav Item */

.navbar-nav {
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 700;
    padding: 8px 24px !important;
    transition: 0.3s ease;
}

/* UNDERLINE EFFECT */

.nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgb(43, 149, 219);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item a:hover {
    color: rgb(43, 149, 219) !important;
}

/* =========================================
   DROPDOWN
========================================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.dropdown-item {
    color: rgba(0, 0, 0, 0.7);
    padding: 14px 18px !important;
    transition: 0.2s ease;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: rgb(43, 149, 219);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #e5e5e5 !important;
}

/* =========================================
   BUTTONS
========================================= */

.accordion-button:not(.collapsed),
.btn-close:focus {
    color: #0095D4 !important;
}

/* =========================================
   DESKTOP NAVBAR
========================================= */

@media (min-width: 992px) {

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;
        pointer-events: none;
        z-index: 9999;
        min-width: 260px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        background: #fff;
    }

    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        left: -230px !important;
        width: 580px;
    }
}

/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 991px) {

    .navbar-toggler {
        padding: 10px 0;
    }

    #mainNavbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9999;
        padding: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-top: 1px solid #eee;
    }

    .navbar-collapse {
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        align-items: flex-start;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border: 0 !important;
    }

    .nav-item::after {
        display: none;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0 !important;
    }

    /* MOBILE DROPDOWN */

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        box-shadow: none !important;
        border: 0 !important;
        padding-left: 10px !important;
        background: transparent;
    }

    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-item {
        padding: 10px 0 !important;
    }

    .drop-industry {
        font-size: 13px !important;
    }
}

/* Header End */

/* Pagination */

.pagination {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.pagination .page-link {
    padding: 8px 14px;
    color: var(--primary-color);
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 100px;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 100px;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-link:focus {
    outline: none;
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #ddd;
}

/* Pagination End */

.accordion-button:focus{
    box-shadow: none !important;
}

.form-control:focus{
    box-shadow: none !important;
}