@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
     body {
        background-image: url('/public/front_asset/images/logins.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        /* font-family: 'Courier New', Courier, monospace; */
        font-family: "Poppins", sans-serif !important;
    }

    .header-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 20px;
}

.office-name {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Optional: Add a hover effect for the logo */
.logo-img:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

    .nav-pills .nav-link {
        border-radius: 0.375rem;
        margin-bottom: 8px;
        background-color: #f1f1f1;
        color: #333;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        text-align: left;
    }

    .nav-pills .nav-link:hover {
        background-color: rgb(62 91 160);
        color: #fff;
        border-color: #ced4da;
    }

    .nav-pills .nav-link.active {
        background-color: rgb(62 91 160) !important;
        color: #fff !important;
        font-weight: 600;
        box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
    }

    .tab-left {
        min-height: 500px;
    }

    .tab-content {
        min-height: 500px;
    }
    .customer-btn{
        background-color: rgb(62 91 160) !important;
        color: #fff !important;
     
    }
    h1,h2,h3,h4,h5,h6{
       font-weight: 300 !important;
    }


    body.loading {
        overflow: hidden;
    }

    .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: transparent;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.4s ease-out;
    }

    .page-content {
        opacity: 0.5;
        transition: opacity 0.5s ease-in;
    }

    body.loaded .page-content {
        opacity: 1;
    }