*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    font-family: "Poppins", sans-serif !important;
}
* {
    margin: 0;
    padding: 0;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}
.form-control:focus {
    outline: none !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100% !important;
}

:root {
    --font-family-poppins: "Poppins", sans-serif;
    --font-family-inter: "Inter", sans-serif;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-semiBold: 600;

    --font-size-16: 16px;
    --font-size-15: 15px;
    --font-size-18: 15px;
    --font-size-20: 20px;
    --font-size-24: 24px;
    --font-size-30: 30px;
    --font-size-36: 36px;

    --color-black: #000000;
    --color-dark-gray: #3a3a3a;
    --color-blue: #2F6EDB;
    --color-darker-blue: #0266d6;
    --color-yellow: #ffb400;
    --color-white: #ffffff;

    --line-spacing-18: 18px;
    --line-spacing-19: 19px;
    --line-spacing-38: 38px;
    --line-spacing-46: 46px;
    --character-spacing-0: 0;
}

/* NavBar */
/* @media (min-width: 992px) {
    .custom-nav {
        height: 68px !important;
    }
} */
.custom-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0 5px 0;
}
.navbar-brand {
    padding: 0;
}
.navbar-brand img {
    height: 28px;
}
.custom-nav .navbar-nav {
    display: flex;
    gap: 42px;
}

.custom-nav .custom-gap {
    display: flex;
    justify-content: center;
    z-index: 100;
}

.custom-nav .nav-link {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    padding: 0 !important;
}

.custom-nav .nav-link:hover {
    color: var(--color-yellow);
}
.custom-nav .nav-link.active-nav-link {
    color: #1079e5;
}

.custom-nav .nav-item.dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.custom-nav .nav-item.dropdown p {
    font-weight: var(--font-weight-regular);
}

.dropdown-toggle::after {
    content: url(../assets/down-arrow.svg);
    position: absolute;
    top: 8px;
    right: -25px;
    border: 0;
}

/* Alpine Css */
[x-cloak] {
    display: none !important;
}

/* Login Page */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding: 40px 0;
}

.login-page .logo {
    margin-bottom: 50px;
    width: 310px;
}

.login-container {
    width: 710px;
    padding: 48px 95px;
    background-color: #f6f7fc;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
}

.login-page h2 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    line-height: var(--line-spacing-38);
    font-family: var(--font-family-poppins);
    text-align: center;
    padding-bottom: 16px;
}

.login-page .lead-text {
    text-align: center;
    font-size: var(--font-size-20);
    margin-bottom: 18px;
    color: var(--color-dark-gray);
    line-height: var(--line-spacing-38);
    padding: 12px 0;
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
}

.login-page .highlight-blue {
    color: var(--color-blue);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-20);
    line-height: var(--line-spacing-19);
}

.login-page .highlight-yellow {
    color: var(--color-yellow);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-20);
    line-height: var(--line-spacing-19);
}

.login-page .highlight-dark-gray {
    color: var(--color-dark-gray);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-20);
    line-height: var(--line-spacing-19);
}

.login-page .signup-btn {
    background-color: var(--color-yellow);
    border: none;
    color: var(--color-black);
    font-weight: var(--font-weight-semiBold);
    margin-bottom: 20px;
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.login-page .user-already {
    padding: 10px 0;
    border-top: 1px solid #cccccc;
    text-align: center;
    color: var(--color-dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-20);
    line-height: var(--line-spacing-38);
}
.login-page .user-already a {
    color: var(--color-blue);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-24);
    line-height: var(--line-spacing-19);
    text-decoration: none;
}

.login-page .login-link {
    color: var(--color-blue);
    font-weight: var(--font-weight-semiBold);
}
.login-page .form-group:first-child {
    margin-bottom: 28px;
}
.login-page .form-group:nth-child(2) {
    margin-bottom: 8px;
}
.login-page .form-group input {
    padding: 12px;
    border-radius: 5px;
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-16);
    line-height: var(--line-spacing-18);
    color: var(--color-black);
}

.login-page .form-group input::placeholder {
    color: var(--color-black);
}

.login-page .login-btn {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}

.login-page .forgot-password {
    text-align: right;
    color: var(--color-blue);
    font-size: var(--font-size-15);
    font-family: var(--font-family-inter);
    margin-bottom: 12px;
}

/* Signup Page */

.signup-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding: 40px 0;
}
.signup-page .logo {
    margin-bottom: 50px;
    width: 310px;
}

.signup-container {
    width: 710px;
    padding: 48px 95px;
    background-color: #f6f7fc;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
}

.signup-page h2 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    line-height: var(--line-spacing-38);
    font-family: var(--font-family-poppins);
    text-align: center;
    padding-bottom: 16px;
}

.signup-page .sub-supplier {
    margin-top: 25px;
    padding: 18px 0;
    border-top: 1px solid #cccccc;
    text-align: center;
    color: var(--color-dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-20);
    line-height: var(--line-spacing-38);
}

.signup-page .login-link {
    color: var(--color-blue);
    font-weight: var(--font-weight-semiBold);
}
.signup-page .form-group:first-child,
.signup-page .form-group:nth-child(2) {
    margin-bottom: 16px;
}
.signup-page .form-group:nth-child(3) {
    margin-bottom: 16px;
}
.signup-page .form-group:nth-child(4) {
    margin-bottom: 16px;
}
.signup-page .form-group input {
    padding: 12px;
    border-radius: 5px;
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-16);
    line-height: var(--line-spacing-18);
    color: var(--color-black);
}

.signup-page .form-group input::placeholder {
    color: var(--color-black);
}

.signup-page .blue-btn {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.signup-page .yellow-btn {
    background-color: var(--color-yellow);
    border: none;
    color: var(--color-black);
    font-weight: var(--font-weight-semiBold);
    /* margin-bottom: 20px; */
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.signup-page .grey-btn {
    background-color: var(--color-dark-gray);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.signup-page .btns-signup {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 20px;
}
.signup-page .next-step {
    background-color: transparent;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.signup-page .next-step i {
    font-size: 20px;
    line-height: var(--line-spacing-19);
    margin-bottom: -6px;
}

/* Find Subs and Suppliers */

.find-subs-page .logo {
    margin-bottom: 50px;
    width: 310px;
}

.find-subs-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 68px 0 110px 0;
}

.find-subs-container {
    width: 743px;
    padding: 62px 95px;
    background-color: #f6f7fc;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
}
.find-subs-container.find-jobs-gc {
    padding: 80px 95px;
}

.find-subs-page h2 {
    font-size: var(--font-size-30);
    font-weight: var(--font-weight-semiBold);
    color: var(--color-black);
    line-height: var(--line-spacing-38);
    font-family: var(--font-family-poppins);
    text-align: center;
    padding-bottom: 28px;
}

.find-subs-page .blue-btn {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.find-subs-page .yellow-btn {
    background-color: var(--color-yellow);
    border: none;
    color: var(--color-black);
    font-weight: var(--font-weight-semiBold);
    margin-bottom: 20px;
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.find-subs-page .grey-btn {
    background-color: var(--color-dark-gray);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}
.find-subs-page .btns-signup {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 28px;
}
.find-subs-page .next-step {
    background-color: transparent;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    font-weight: var(--font-weight-semiBold);
    padding: 20px 20px;
    width: 100%;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Profile */

.profile-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    padding: 68px 0 184px 0;
}

.profile-page h2 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
   
}
.profile-page h2 span {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}

.profile-input {
    margin-bottom: 28px;
}

.profile-page .form-control,
.profile-page .form-select {
    height: 56px;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
}

.profile-page label {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-18);
    margin-bottom: 10px;
}

.profile-page .im-done {
    background-color: var(--color-blue);
    border: none;
    border-radius: 8px;
    width: 300px;
    height: 70px;
    margin-top: 30px;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}

.profile-page .im-done:hover {
    background-color: #ffb401;
}
.profile-page .form-control.textarea {
    height: 172px;
}

.profile-page .checkbox-container .checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-check-input {
    width: 28px;
    height: 28px;
    margin-top: 0;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #c1c1c1;
}

.form-check-input:checked {
    background-color: #2F6EDB;
    border-color: #c1c1c1;
}
.form-check .form-check-input {
    margin-left: 0px !important;
    float: none !important;
}
/* upload project page */

.upload-project-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    padding: 68px 0 184px 0;
}

.upload-project-page h2 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
    margin-bottom: 24px;
}
.upload-project-page h2 span {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}

.profile-input {
    margin-bottom: 28px;
}

.upload-project-page .form-control,
.upload-project-page .form-select {
    height: 56px;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
}

.upload-project-page .form-control.textarea {
    height: 172px;
}

.upload-project-page label {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-18);
    margin-bottom: 10px;
}

.upload-project-page .im-done {
    background-color: var(--color-blue);
    border: none;
    border-radius: 8px;
    width: 300px;
    height: 70px;
    margin-top: 30px;
    color: var(--color-white);
    font-weight: var(--font-weight-semiBold);
    font-size: var(--font-size-24);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-19);
}

.upload-project-page .im-done:hover {
    background-color: #ffb401;
}

.upload-project-page .wrapper-file-input h4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-15);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-18);
    color: #00000059;
}
.upload-project-page .wrapper-file-input-img {
    width: 44px;
}

.upload-project-page .input-box {
    height: 200px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    cursor: pointer;
}

.upload-project-page input[type="file"] {
    display: none;
}

.upload-project-page .wrapper-file-section {
    .selected-files {
        h5 {
            margin-bottom: 10px;
        }
        .file-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .item {
            display: flex;
            justify-content: space-between;
            border: 1px solid #cacaca;
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 5px;
        }
        .remove {
            color: #c0392b;
            cursor: pointer;
        }
        .remove:hover {
            color: #e74c3c;
        }
    }
}

/* Find Subs Single */
.findsubs-single-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    min-height: 100vh;
    padding-bottom: 144px;
}

.findsubs-single-page .slug {
    display: flex;
    align-items: center;
    gap: 6px;
    /* padding: 28px 0 16px 0; */
}
.findsubs-single-page .slug a {
    text-decoration: none;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-16);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
}
.findsubs-single-page .slug span {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-16);
    font-family: var(--font-family-poppins);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
}

.findsubs-single-page h2 {
    /* font-size: var(--font-size-36); */
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
    margin-bottom: 24px;
}

.findsubs-single-page .search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    padding: 15px 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.findsubs-single-page .search-bar .fields {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
}

.findsubs-single-page .dropdown {
    width: 25%;
    display: flex;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 8px;
    height: 46px;
    padding: 0 0.5em;
}
.findsubs-single-page .dropdown .form-select {
    border: 0;
    border-radius: 8px;
}

.list-of-general-contractors .dropdown .form-control {
    border: 0;
    border-radius: 8px;
}

.findsubs-single-page .dropdown input.form-control::placeholder {
    color: var(--color-black);
}

.findsubs-single-page .dropdown i {
    color: #b7b7b7;
}

.findsubs-single-page .search-bar button {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-16);
    width: 217px;
    height: 48px;
    border-radius: 8px;
}
.findsubs-single-page .profile-card-container {
    margin-top: 13px;
}

.findsubs-single-page .profile-card {
    display: flex;
    background-color: var(--color-white);
    border: 1px solid #c1c1c1;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    height: 192px;
}

.findsubs-single-page .profile-card .profile-img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.findsubs-single-page .profile-info {
    flex-grow: 1;
}

.findsubs-single-page .profile-info h5 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    margin: 0;
    color: var(--color-black);
}

.findsubs-single-page .profile-info p {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-46);
    margin: 0;
    color: var(--color-black);
}

.findsubs-single-page .profile-info span {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-spacing-46);
    margin: 0;
    color: var(--color-blue);
}

.list-of-jobs .view-button {
    display: flex;
    align-items: flex-start !important;
    gap: 20px;
    width: 152px;
    height: 100%;
}

.findsubs-single-page .view-button {
    display: flex;
    align-items: center;
    gap: 10px;
    /* width: 152px; */
}

.findsubs-single-page .view-button button {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-16);
    width: 112px;
    height: 48px;
    border-radius: 8px;
}

.findsubs-single-page .view-button img {
    width: 50px;
}

/* List Jobs */

.list-jobs-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    min-height: 100vh;
    padding: 72px 0;
}

.list-jobs-page h2 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
    margin-bottom: 34px;
}

.list-jobs-page .profile-card {
    display: flex;
    background-color: var(--color-white);
    border: 1px solid #c1c1c1;

    border-radius: 8px;
    padding: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    height: 135px;
}

.list-of-jobs .search-bar .fields {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 75%;
}

.list-of-jobs .dropdown {
    width: 33.3%;
    display: flex;
    align-items: center;
}

.list-of-jobs .dropdown:last-child .form-select {
    border: 0;
}

.list-jobs-page .profile-card .profile-img {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.list-jobs-page .profile-info {
    flex-grow: 1;
}

.list-jobs-page .profile-info h5 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    margin: 0;
    color: var(--color-black);
}

/*  */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}
.card-body{
    padding: 0 !important;
}
.card-body h5 {
    font-weight: bold;
    font-size: 1.2rem;
}
.rating-container .stars {
    color: #FFD700; /* Gold stars */
}
.rating-value {
    font-size: 1rem;
    color: #6c757d; /* Muted text */
}
.badge {
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 0.875rem;
}

/* Application Statistics */
.application-statistics-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    min-height: calc(100vh - 72px);
    padding: 40px 0 !important;
}
.application-statistics-page h2 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
    margin-bottom: 34px;
}

.application-statistics-page .card {
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    padding: 36px 30px;
    cursor: pointer;
}
.application-statistics-page .card-job{
    background-color:#306BEB ;
    display: flex;
    gap: 20px;
    
    border-radius: 8px;
    padding: 36px 20px 36px 30px;
    cursor: pointer;
}
.card-job .job-svg{
    display: flex;
    align-items: center;
}
.application-statistics-page .card-subs{
    background-color:hsl(0, 0%, 83%) ;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    padding: 36px 20px 36px 30px;
    cursor: pointer;
}
.card-subs .job-svg{
    display: flex;
    align-items: center;
}
.application-statistics-page .card-application{
    background-color:#F37A4F ;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    padding: 36px 20px 36px 30px;
    cursor: pointer;
}
.card-application .application-svg{
    display: flex;
    align-items: center;
}
.application-statistics-page .card-review{
    background-color: #5E5E5E ;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    padding: 36px 20px 36px 30px;
    cursor: pointer;
}
.card-review .review-svg{
    display: flex;
    align-items: center;
}
.application-statistics-page .card-shortlisted{
   background-color: var(--color-yellow);
    display: flex;
    gap: 20px;
    border-radius: 8px;
    padding: 36px 12px 36px 30px;
    cursor: pointer;
}
.application-statistics-page .card-shortlisted .shortlisted-svg{
    display: flex;
    align-items: center;
}
/* .application-statistics-page .card:hover {
    padding: 35px 0;
}
.application-statistics-page .card:hover .job-svg,
.application-statistics-page .card:hover .application-svg,
.application-statistics-page .card:hover .shortlisted-svg,
.application-statistics-page .card:hover .review-svg {
    display: flex;
    width: 82px;
    height: 82px;
    align-items: center;
    justify-content: center;
} */
/* .application-statistics-page .card:hover .job-svg svg g path,
.application-statistics-page .card:hover .application-svg svg g path,
.application-statistics-page .card:hover .shortlisted-svg svg g path,
.application-statistics-page .card:hover .review-svg svg g path {
    width: 44px;
    height: 44px;

    fill: #fff;
} */

/* .application-statistics-page .job:hover {
    background-color: #dee7ff;
} */
/* .application-statistics-page .job:hover .job-svg {
    border-radius: 50%;
    background-color: #3b6df1;
    padding: 14px;
}

.application-statistics-page .application:hover {
    background-color: #ffd4c5;
}
.application-statistics-page .application:hover .application-svg {
    border-radius: 50%;
    background-color: #ff571a;
    padding: 14px;
}

.application-statistics-page .review:hover {
    background-color: #ffe9c4;
}
.application-statistics-page .review:hover .review-svg {
    border-radius: 50%;
    background-color: #ffa917;
    padding: 14px;
}

.application-statistics-page .shortlisted:hover {
    background-color: #c6ffd2;
}
.application-statistics-page .shortlisted:hover .shortlisted-svg {
    border-radius: 50%;
    background-color: #1fa039;
    padding: 14px;
} */

.application-statistics-page .card h1 {
    font-size: 3.75em;
    font-weight: var(--font-weight-medium);
    line-height: 1em;
    margin-top: 0.2em;
}

.application-statistics-page .card p {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-38);
}

.application-statistics-page .not {
    margin: 70px 0 30px 0;
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}

.application-statistics-page .app {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}

.application-statistics-page .application h1 {
    color: #ff571a;
}
.application-statistics-page .shortlisted h1 {
    color: #1fa039;
}
.application-statistics-page .review h1 {
    color: #ffa917;
}
.application-statistics-page .job h1 {
    color: var(--color-blue);
}

/* Project */

.project-page .card {
    width: 1600px !important;
    margin: auto;
    padding: 16px 56px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.project-page .budget {
    padding: 1em 0;
    /* border-top: 1px solid #cccccc; */
    /* border-bottom: 1px solid #cccccc; */
}

.project-page .budget-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-page .budget p {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}

.project-page .budget-details span {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}
.project-page .budget .budget-apply {
    display: flex;
    gap: 35px;
}
.project-page .budget .budget-apply button {
    width: 300px;
    height: 70px;
    border-radius: 8px;
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-semiBold);
}

.project-page .project-image {
    width: 100%;
    max-width: 650px;
    border-radius: 10px;
    margin-left: auto;
}
.project-page .profile.address {
    border-bottom: 0;
}
.project-page .card h5 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    margin-bottom: 30px;
}

.project-page .apply-btn {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    width: 140px;
    height: 48px;
    border-radius: 5px;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
}

.project-page .apply-btn:hover {
    background-color: var(--color-darker-blue);
}
.project-page .profile {
    padding: 2em 0;
    /* border-bottom: 1px solid #cccccc; */
}
.project-page .profile p {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-46);
}
.project-page .profile-section {
    display: flex;
    align-items: center;
    /* margin-top: 20px; */
}

.project-page .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.project-page .project-info {
    margin-bottom: 40px;
    margin-top: -1.5em;
}
.project-page .project-desc {
    margin-bottom: 15px;
}

.project-page .address {
    font-size: var(--font-size-16);
    color: var(--color-dark-gray);
    font-weight: var(--font-weight-regular);
}

.project-page .budget > p,
.special-heading {
    font-size: var(--font-size-24);
    line-height: 1.4 !important;
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold) !important;
    border-left: 4px solid var(--color-blue);
    padding-left: 0.4em;
}
.project-page .profile .budget-details p {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-46);
}
.project-page .address-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-page .address-details .budjet-details-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-page .address-details .budjet-details-inner h4 {
    font-size: var(--font-size-24);
    line-height: var(--line-spacing-46);
    color: #888888;
}
.project-page .address-details .budjet-details-inners {
    display: flex;
    align-items: center;
    gap: 10px;
}
.project-page .address-details .budjet-details-inners h4 {
    font-size: var(--font-size-24);
    line-height: var(--line-spacing-46);
}
.heading_budget {
    color: #888888;
    font-size: 24px;
}
.project-page .address-details .budjet-details-inner p {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-46);
}

.descriptions {
    width: 90%;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0px 0px 6px #0000000a;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
}

.location-details {
    font-weight: var(--font-weight-regular) !important;
}

.project-page .profile-name {
    /* font-size: var(--font-size-24) !important; */
    font-weight: var(--font-weight-semiBold) !important;
    /* line-height: 1.2 !important; */
    color: var(--color-black) !important;
}

.project-page .profile-email {
    font-size: var(--font-size-14) !important;
    font-weight: var(--font-weight-regular) !important;
    /* line-height: var(--line-spacing-38) !important; */
}

/* Chat */
/* Chat */
/* Chat */
/* Chat */
/* Chat */
/* Chat */
/* Chat */
/* Chat */

#sidebar.expanded {
    width: 240px;
    position: absolute;
    z-index: 123;
    background: #fff;
    height: 100%;
}
#sidebar.expanded .responsive-close {
    display: block;
}

.chat-page .chat-container {
    height: 84vh;
    /* min-height: 600px; */
    background-color: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
    display: flex;
    padding: 25px 30px 25px 30px;
}

.chat-page .sidebar {
    width: 290px;
    overflow-y: auto;
}

.chat-page .sidebar .search {
    position: relative;
    padding-right: 20px;
}
.chat-page .sidebar .search input {
    padding-left: 3em;
    height: 48px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 13px;
}

.chat-page .sidebar .search input:focus {
    outline: none;
    border: 1px solid #000;
    box-shadow: none;
}

.chat-page .sidebar .search img {
    position: absolute;
    top: 32%;
    left: 15px;
}

.chat-page .chat-section {
    background: #eff5ff 0% 0% no-repeat padding-box;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-page .sidebar .tab-container {
    display: flex;
    justify-content: flex-start;
    padding: 26px 0 17px 0;
}
.chat-page .tab {
    cursor: pointer;
    padding: 0 1.2em;
    font-size: 14px;
    color: var(--color-dark-gray);
    font-weight: var(--font-weight-medium);
}

.chat-page .tab.active {
    color: #2F6EDB;
}

.chat-page .contact {
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    justify-content: space-between;
}
.chat-page .contact.active,
.chat-page .contact:hover {
    background: #2f6edb 0% 0% no-repeat padding-box;
    color: white; /* White text for active or hovered item */
}

.chat-page .contact img {
    width: 42px;
    height: 42px;
}

.chat-page .contact .peek {
    flex: 1;
    margin: 0 1em;
}

.chat-page .contact .peek h6 {
    color: #08080a;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 24px;
}
.chat-page .contact .peek p {
    color: #999999;
    font-weight: var(--font-weight-regular);
    font-size: 12px;
    line-height: 18px;
}

.chat-page .contact:hover,
.chat-page .contact.active {
    background-color: #e7f0ff;
}

.chat-page .chat-header {
    border-bottom: 1px solid #ddd;
    height: 100px;
    padding: 0 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #989fc91f;
}

.chat-page .chat-body {
    overflow-y: auto;
    flex: 1;
    padding: 0 38px;
}

.chat-page .message {
    display: flex;
    padding: 1em 0;
    align-items: center;
    gap: 1em;
}
.chat-page .message.outgoing {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat-page .message.incoming {
    justify-content: flex-start;
    display: flex;
    align-items: flex-start;
}

.chat-page .message .message-text {
    max-width: 340px;
    padding: 15px;
}

.chat-page .message.incoming .message-text {
    background-color: #ffffff;
    border-radius: 24px 24px 24px 0px;
}
.chat-page .message .sender-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-top: 6px;
}
.chat-page .message.outgoing .message-content {
    order: 2;
}
.chat-page .message.outgoing .message-text {
    background: #2f6edb 0% 0% no-repeat padding-box;
    color: #ffffff;
    border-radius: 24px 24px 0px 24px;
}

.multiple-incoming {
    display: flex;
    align-items: center;
    gap: 1em;
}

.chat-page .placeholder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 316px;
    height: 316px;
    margin-top: 20px;
    background-color: #fff;
    padding: 0.5em;
}

.chat-page .incoming .placeholder-container {
    border-radius: 0px 32px 32px 32px;
}
.chat-page .outgoing .placeholder-container {
    border-radius: 32px 0px 32px 32px;
}

.chat-page .text-muted {
    align-self: center;
}

.chat-page .box {
    background-color: #2F6EDB;
    border-radius: 15px;
}

.chat-page .large {
    grid-column: span 2;
    height: 150px;
}

.chat-page .small {
    height: 140px;
}

.chat-page .more-items {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chat-page .more-items span {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.chat-page .media-message .media-block {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.chat-page .chat-footer {
    padding-top: 10px;
    height: 75px;
    width: 100%;
    background-color: #fff;
    padding: 0 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    border-top: 1px dashed #989fc91f;
}
.chat-page .candidate-status {
    display: flex;
    align-items: center;
    gap: 1em;
}

.chat-page .chat-actions {
    display: flex;
    gap: 1em;
}
.chat-page .candidate-status-name {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-medium);
    line-height: 30px;
    color: var(--color-black);
}
.chat-page .candidate-status-status {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-19);
    color: var(--color-black);
    margin-left: 16px;
    position: relative;
}
.chat-page .candidate-status-status::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.chat-page .btn-video,
.chat-page .btn-calling,
.chat-page .btn-search {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-page .chat-footer i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px dashed #eef0f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-page .chat-footer i:nth-child(2) {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f6f6f9;
    background: #f6f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-page .chat-footer input {
    border-radius: 50px;
    height: 40px;
}
.send-msg {
    position: relative;
    flex: 1;
}

.chat-page .chat-footer button {
    right: 20px;
    top: 15%;
    position: absolute;
    height: 28px;
    width: 28px;
    background-color: var(--color-blue);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-icon {
    display: none;
}

/* Profile Inner Page */
.profile-dropdown::before{
    content: "";
    position: absolute;
    top: -20px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
}
.dropdown-toggle::after {
    content: none !important;
}
.profile-inner-page .profile-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 44px;
}

.profile-inner-page .profile-edit {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.profile-inner-page .profile-header-section {
    padding: 30px 24px;
    background: url(../assets/blockBg.svg);
    background-size: cover;
    border-radius: 24px;
}

.profile-inner-page .profile-header-section .profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.profile-inner-page .profile-header-section .profile-info h2 {
    margin-top: 22px;
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-18);
    color: var(--color-black);
    margin-bottom: 5px;
}

.profile-inner-page .profile-header-section .profile-info p {
    margin: 0;
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-18);
    color: #636c77;
}

.profile-inner-page .profile-header-section .profile-contact {
    display: flex;
    gap: 46px;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-18);
}
.profile-inner-page .profile-edit-button {
    background-color: var(--color-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
}

.profile-inner-page .profile-header-section .profile-contact-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-18);
    color: #2a2a2a;
}
.profile-inner-page .profile-header-section .profile-contact-inner a {
    color: #2a2a2a;
}
.profile-inner-page .profile-edit-button {
    background-color: #2F6EDB;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

.profile-inner-page .profile-edit-button:hover {
    background-color: #0056b3;
}

.profile-inner-page .profile-details {
    margin-top: 20px;
}

.profile-inner-page .profile-details h3 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
}

.profile-inner-page .profile-details p {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-regular);
    line-height: 24px;
    color: #636c77;
    margin-bottom: 1em;
}

@media (min-width: 1800px) {
    .nav-container {
        max-width: 1750px;
    }
    .chat-main-container {
        max-width: 1362px;
    }
    .project-page .card {
        width: 1200px;
    }
    .chat-page .chat-container {
        height: 84vh;
        min-height: 600px;
    }
}

@media (max-width: 1700px) {
    :root {
        --font-size-16: 13px;
        --font-size-15: 12px;
        --font-size-20: 17px;
        --font-size-24: 21px;
        --font-size-30: 27px;
        --font-size-36: 33px;

        --line-spacing-18: 15px;
        --line-spacing-19: 16px;
        --line-spacing-38: 35px;
        --line-spacing-46: 43px;
    }
    .signup-container,
    .login-container {
        width: 710px;
        padding: 35px 85px;
    }
    .signup-page h2,
    .login-page h2 {
        padding-bottom: 10px;
        line-height: 1.2;
    }

    .signup-page .form-group:first-child,
    .signup-page .form-group:nth-child(2),
    .login-page .form-group:first-child,
    .login-page .form-group:nth-child(2) {
        margin-bottom: 10px;
    }
    .signup-page .sub-supplier,
    .login-page .sub-supplier {
        margin-top: 18px;
        padding: 6px 0;
    }
    .signup-page .btns-signup,
    .login-page .btns-signup {
        gap: 10px;
        margin-bottom: 5px;
    }
    .signup-page .blue-btn,
    .login-page .blue-btn {
        padding: 16px 20px;
    }
    .signup-page .grey-btn,
    .login-page .grey-btn {
        padding: 16px 20px;
    }
    .signup-page .yellow-btn,
    .login-page .yellow-btn {
        padding: 16px 20px;
        margin-bottom: 6px;
    }
    .signup-page .next-step,
    .login-page .next-step {
        padding: 16px 20px;
    }
    .find-subs-page .blue-btn {
        padding: 16px 20px;
    }
    .find-subs-page .yellow-btn {
        padding: 16px 20px;
    }
    .find-subs-page .grey-btn {
        padding: 16px 20px;
    }
    .find-subs-page .next-step {
        padding: 16px 20px;
    }
    .custom-nav .navbar-nav {
        display: flex;
        gap: 30px;
    }
    .signup-page,
    .login-page {
        height: auto;
        padding: 15px 0;
    }
    .signup-page .logo,
    .login-page .logo {
        margin-bottom: 15px;
        width: 200px;
    }
    .signup-container,
    .login-container {
        padding: 30px 70px;
    }
    .login-page .lead-text {
        line-height: 1.5em;
    }
}

@media (max-width: 1400px) {
    .project-page .card {
        width: 1000px;
    }
    .chat-page .chat-container {
        height: 81vh;
        /* min-height: 600px; */
    }
}

@media (max-width: 1200px) {
    .custom-nav .navbar-nav {
        display: flex;
        gap: 10px;
    }
    .custom-nav .nav-link {
        font-size: 12px;
        font-weight: var(--font-weight-medium);
        color: var(--color-black);
        padding: 0 !important;
    }
    .findsubs-single-page .search-bar button {
        width: 200px;
    }
    .project-page .card {
        width: 900px;
    }
    .findsubs-single-page .search-bar .fields {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }
}
@media (max-width: 1115px) {
    .custom-nav .nav-link {
        font-size: 11px;
        font-weight: var(--font-weight-medium);
        color: var(--color-black);
        padding: 0 !important;
    }
}
@media (max-width: 1080px) {
    :root {
        --font-size-16: 13px;
        --font-size-15: 12px;
        --font-size-18: 15px;
        --font-size-20: 17px;
        --font-size-24: 21px;
        --font-size-30: 27px;
        --font-size-36: 33px;

        --line-spacing-18: 15px;
        --line-spacing-19: 16px;
        --line-spacing-38: 35px;
        --line-spacing-46: 43px;
    }

    .custom-nav .nav-link {
        font-size: 11px;
        font-weight: var(--font-weight-medium);
        color: var(--color-black);
        padding: 0 !important;
    }

    .chat-page .sidebar {
        width: 240px;
        overflow-y: auto;
    }
    #suggestions{
        width: 31% !important;
    }
}

@media (max-width: 1024px) {
    .custom-nav .nav-link {
        font-size: 10px !important;
        font-weight: var(--font-weight-medium);
        color: var(--color-black);
        padding: 0 !important;
    }
}
@media (max-width: 1010px) {
    .custom-nav .nav-link {
        font-size: 10px;
        font-weight: var(--font-weight-medium);
        color: var(--color-black);
        padding: 0 !important;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-16: 13px;
        --font-size-15: 12px;
        --font-size-20: 17px;
        --font-size-24: 21px;
        --font-size-30: 27px;
        --font-size-36: 33px;

        --line-spacing-18: 15px;
        --line-spacing-19: 16px;
        --line-spacing-38: 35px;
        --line-spacing-46: 43px;
    }
    #suggestions{
        width:23% !important;
    }
    .collapse:not(.show) {
        display: none !important;
    }
    .custom-nav .nav-link {
        font-size: var(--font-size-18);
        color: var(--color-black);
        padding: 0 !important;
    }
    .custom-nav .navbar-toggler {
        padding: 0.35rem 0.75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: #fff;
        border: 1px solid #000;
        border-radius: 0.4rem;
        transition: box-shadow 0.15s ease-in-out;
        order: 3;
        border: transparent !important;
    }

    .custom-nav .custom-gap {
        gap: 16px;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 2em 3em;
        position: absolute;
        top: 100%;
        width: 720px;
        transform: translateX(-1%);
    }

    .custom-nav .nav-item.dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .findsubs-single-page .search-bar {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        flex-direction: column;
    }

    .findsubs-single-page .search-bar .fields {
        width: 100%;
    }
    .findsubs-single-page .dropdown:nth-child(4) .form-select {
        border: 0;
    }
    /* .application-statistics-page .res-row {
        row-gap: 1em;
    } */
    .project-page .card {
        width: 720px;
    }
    .project-page .card {
        width: 100%;
    }
    .project-page .card .custom-res {
        display: flex;
        gap: 26px;
    }
    .project-page .project-info {
        margin-bottom: 40px;
        margin-top: 2em;
    }
    .profile-inner-page .profile-header-section .profile-contact {
        display: flex;
        gap: 16px;
    }
    .chat-page .chat-container {
        height: 96vh;
        min-height: 400px;
        padding: 15px;
    }
    .tab-icon {
        display: block;
    }
    /* #sidebar {
        width: 35px;
        transition: width 0.3s ease;
    } */
    .responsive-close {
        display: none;
    }
    .chat-page .chat-footer {
        height: 60px;
        width: 100%;
        padding: 0 16px;
        gap: 0.5em;
    }
    .chat-page .chat-body {
        padding: 0 16px;
    }
    .chat-page .chat-header {
        border-bottom: 1px solid #ddd;
        height: 70px;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed #989fc91f;
    }
    .rounded-circle {
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }
    .chat-page .chat-actions {
        display: flex;
        gap: 0.2em;
    }
    .chat-page .message .message-text {
        max-width: auto;
        padding: 10px;
    }
    .multiple-incoming {
        gap: 0.4em;
    }
    .chat-page .chat-section {
        background: #eff5ff 0% 0% no-repeat padding-box;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .tab-icon {
        margin-bottom: 1em;
    }
    .findsubs-single-page .search-bar .fields {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        flex-direction: column;
    }
    .findsubs-single-page .dropdown {
        width: 100%;
    }
    .findsubs-single-page .search-bar {
        display: flex;
        justify-content: space-between;
        height: auto;
        gap: 40px;
        flex-direction: column;
    }
    .findsubs-single-page .search-bar button {
        width: 100%;
    }
    .fields label {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-16: 13px;
        --font-size-15: 12px;
        --font-size-20: 17px;
        --font-size-24: 21px;
        --font-size-30: 27px;
        --font-size-36: 33px;

        --line-spacing-18: 15px;
        --line-spacing-19: 16px;
        --line-spacing-38: 35px;
        --line-spacing-46: 43px;
    }
    .project-title h1 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 23px;
    line-height: 30px;
}
    #suggestions{
        width: 65% !important;
    }
    .search-bar-special{
        flex-direction:column !important;
    }
    .custom-nav .custom-gap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 2em 2em;
        position: absolute;
        top: 85%;
        width: 100%;
        transform: translateX(0);
        left: 0;
    }
    .custom-nav .nav-item.dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin-left: 0px;
    }
    .login-container,
    .signup-container,
    .find-subs-container {
        width: 100%;
        padding: 40px 36px;
    }
    .login-page,
    .signup-page,
    .find-subs-page {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 68px 1em 110px 1em;
    }

    .list-of-general-contractors .dropdown .form-control {
        border: 0;
    }

    .custom-nav a#navbarDropdown {
        display: none;
    }
    .custom-nav .dropdown-menu[data-bs-popper] {
        top: 100%;
        left: -52px;
        margin-top: 0.125rem;
    }
    .custom-nav .nav-item.dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin-left: 0px;
    }

    .findsubs-single-page .search-bar {
        height: auto;
    }

    .findsubs-single-page .dropdown .form-select {
        border: 0;
    }
    .findsubs-single-page .search-bar button {
        width: 100%;
    }
    .findsubs-single-page .profile-card {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        justify-content: space-between;
        align-items: center;
    }
    .findsubs-single-page .profile-card .profile-img {
        width: 108px;
        height: 108px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
        order: 1;
    }
    .findsubs-single-page .view-button {
        order: 2;
        width: auto;
    }
    .findsubs-single-page .profile-info {
        order: 3;
        margin-top: 1em;
    }
    .profile-inner-page .profile-header-section .profile-contact {
        display: flex;
        flex-wrap: wrap;
        margin-top: 1.5em;
    }
    .profile-inner-page .profile-header-section .profile-contact-inner {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-top: 0px;
        width: 46%;
    }
    .profile-inner-page .profile-header-section {
        padding: 16px;
    }
    .menu{
        display: none !important;
    }
    .custom-nav .nav-item.dropdown{
    display: none;
}
.navbar-projects{
    top: 72px !important;
}
}

@media (max-width: 640px) {
    .project-title h1 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 23px !important;
    line-height: 30px !important;
}
    .project-page .budget-details {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    .findsubs-single-page .profile-card .profile-img {
        width: 85px;
        height: 85px;
    }
    .findsubs-single-page .view-button button {
        width: 85px;
        height: 40px;
    }
    .navbar-brand img {
        height: 20px;
    }
    .find-subs-container.find-jobs-gc {
        padding: 80px 25px;
    }
    .profile-inner-page .profile-header-section .profile-contact-inner {
        width: 100%;
    }
    .profile-inner-page .profile-header-section .profile-contact {
        display: flex;
        flex-wrap: wrap;
        margin-top: 1.5em;
        gap: 0.6em;
    }
    .profile-inner-page .profile-details h3 {
        font-size: var(--font-size-20);
        font-weight: var(--font-weight-semiBold);
    }
    .profile-inner-page .profile-details p {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-regular);
        line-height: 20px;
    }
    .profile-inner-page .profile-header-section .profile-image {
        width: 65px;
        height: 65px;
        border-radius: 50%;
    }
    .profile-inner-page .profile-edit-button {
        padding: 8px 12px;
    }
    .chat-page .chat-footer {
        height: 60px;
        width: 100%;
        padding: 0 8px;
        gap: 0.4em;
    }
    .chat-page .placeholder-container {
        width: 220px;
        height: 220px;
    }
    .chat-page .large {
        height: 90px;
    }
    .chat-page .small {
        height: 90px;
    }
    .chat-page .btn-video,
    .chat-page .btn-calling,
    .chat-page .btn-search {
        width: 25px;
        height: 25px;
    }
    .chat-page .chat-actions {
        display: flex;
        gap: 0.4em;
    }
    .chat-page .candidate-status {
        display: flex;
        align-items: center;
        gap: 0.5em;
    }
    .chat-page .candidate-status-name {
        font-size: 18px;
        font-weight: var(--font-weight-medium);
        line-height: 30px;
        color: var(--color-black);
    }
    .chat-page .chat-footer button {
        right: 6px;
        top: 15%;
    }
    .project-page .address-details .budjet-details-inner {
        display: flex;
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }
    .project-page .address-details .budjet-details-inner span {
        display: none;
    }
    .project-page .address-details {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
}

/* Button styles */
.btns-signup label {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    text-align: center;
}
/* Default button colors */
.blue-btn {
    background-color: #2F6EDB;
    color: white;
    text-decoration: none !important;
    text-align: center;
}
.grey-btn {
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    text-align: center;
}
.yellow-btn {
    background-color: #ffc107;
    color: black;
    text-align: center;
    text-decoration: none;
}
/* Change style when radio is checked */
input[type="radio"]:checked + label {
    box-shadow: 0 0 0 2px red; /* Add a blue outline or highlight */
    border: 4px solid red; /* Or any desired highlight effect */
}
.round-image {
    width: 34px;
    height: 33px;
    border-radius: 50%;
    object-fit: cover;
}
/* .select2-selection__rendered {
    padding: 0px 5px !important;
} */

/* Project Page */

.project-page-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}
.budget-apply {
    display: flex;
    gap: 1em;
    align-items: center;
}
.budget-apply img {
    width: 36px;
}
.project-page .card h5 {
    margin-bottom: 0px;
}

.project-page .budget-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.attached-files-img {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.attached-files-img img {
    width: 64px;
    height: 64px;
}
.profile.attached-files {
    padding: 1em 0 2em 0;
}
.project-page .profile.address {
    border-bottom: 1px solid #cccccc;
}

.project-page .profile:last-child {
    border-bottom: 0;
}

/* .single-bid {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */
.single-bid:not(:last-child) {
    margin-bottom: 1em;
}
.single-bid:first-of-type {
    margin-top: 1em;
}
/* .proposed-bid {
    display: flex;
    align-items: center;
} */
.bid-input {
    max-width: 100px;
    margin-left: 10px;
}
/* .single-bid .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
} */
.single-bid .form-check label {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
}
.proposed-bid span {
    font-size: 18px;
    font-weight: var(--font-weight-regular);
}
.dashboard-card-count{
    text-align: center;
}
@media (max-width: 640px) {
    /* .single-bid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.6em;
    } */
    .single-bid:not(:last-child) {
        margin-bottom: 1.5em;
    }
}

/* List of jobs */

.findsubs-single-page .profile-info span {
    font-size: var(--font-size-15);
    font-weight: var(--font-weight-regular);
    margin: 0;
    color: var(--color-blue);
    height: 28px;
    display: block;
    border-radius: 38px;
    background: #e3f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 1.2em;
    cursor: pointer;
}
.findsubs-single-page .profile-info .tags {
    display: flex;
    gap: 6px;
    margin-top: 0.6em;
}

.findsubs-single-page .view-button {
    display: flex;
    align-items: center !important;
}

/* bidding box upload project */

.bid-form {
    margin-top: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.bid-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.bid-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bid-row span {
    font-size: 16px;
    width: 255px;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

.bid-form .bid-inputs {
    flex: 1;
    display: flex;
    gap: 10px;
}
.bid-inputs-head {
    flex: 1;
    display: flex;
    gap: 10px;
}
.bid-inputs-head p {
    width: 100%;
}
.bid-form .bid-inputs input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    padding-left: 18px;
}

.bid-row:last-child {
    margin-bottom: 0;
}
.input-box-bid {
    position: relative;
}
.input-box-bid .prefix {
    left: 6px;
    position: absolute;
    top: 13.5%;
}
@media (max-width: 1200px) {
    .bid-form {
        width: 100%;
    }

}

/* bell icon */

.navbar .navbar_right {
    display: flex;
    gap: 0.8em;
    align-items: center;
}

.navbar .navbar_right img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar .navbar_right .icon_wrap {
    cursor: pointer;
}

.navbar .navbar_right .notifications {
    margin-right: 10px;
}

.navbar .navbar_right .notifications .icon_wrap {
    font-size: 35px;
}

.navbar .navbar_right .profile,
.navbar .navbar_right .notifications {
    position: relative;
}

.navbar .profile .profile_dd,
.notification_dd {
    position: absolute;
    top: 48px;
    right: -15px;
    user-select: none;
    background: #fff;
    border: 1px solid #c7d8e2;
    width: 560px;
    height: auto;
    display: none;
    border-radius: 3px;
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.125),
        -10px -10px 35px rgba(0, 0, 0, 0.125);
}

.navbar .profile .profile_dd:before,
.notification_dd:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
}

.notification_dd li {
    border-bottom: 1px solid #f1f2f4;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.notification_dd li .notify_icon {
    display: flex;
}

.notification_dd li .notify_icon .icon {
    display: inline-block;
}

.notification_dd li.baskin_robbins .notify_icon .icon {
    background-position: 0 -43px;
}

.notification_dd li.mcd .notify_icon .icon {
    background-position: 0 -86px;
}

.notification_dd li.pizzahut .notify_icon .icon {
    background-position: 0 -129px;
}

.notification_dd li.kfc .notify_icon .icon {
    background-position: 0 -178px;
}

.notification_dd li .notify_data {
    margin: 0 15px;
}

.notification_dd li .notify_data .title {
    color: #000;
    font-weight: 600;
}

.notification_dd li .notify_data .sub_title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}

.notification_dd li .notify_status p {
    font-size: 12px;
}

.notification_dd li.success .notify_status p {
    color: #47da89;
}

.notification_dd li.failed .notify_status p {
    color: #fb0001;
}

.notification_dd li.show_all {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.notification_dd li.show_all p {
    font-weight: 700;
    color: #2F6EDB;
    cursor: pointer;
}

.notification_dd li.show_all p:hover {
    text-decoration: underline;
}

.navbar .navbar_right .profile .icon_wrap {
    display: flex;
    align-items: center;
}

.navbar .navbar_right .profile .name {
    display: inline-block;
    margin: 0 10px;
}

.navbar .navbar_right .icon_wrap:hover,
.navbar .navbar_right .profile.active .icon_wrap,
.navbar .navbar_right .notifications.active .icon_wrap {
    color: #2F6EDB;
}

.navbar .profile .profile_dd {
    width: 225px;
}
.navbar .profile .profile_dd:before {
    right: 10px;
}

.navbar .profile .profile_dd ul li {
    border-bottom: 1px solid #f1f2f4;
}

.navbar .profile .profile_dd ul li a {
    display: block;
    padding: 15px 35px;
    position: relative;
}

.navbar .profile .profile_dd ul li a .picon {
    display: inline-block;
    width: 30px;
}

.navbar .profile .profile_dd ul li a:hover {
    color: #2F6EDB;
    background: #f0f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.navbar .profile .profile_dd ul li.profile_li a:hover {
    background: transparent;
    cursor: default;
    color: #7f8db0;
}

.navbar .profile .profile_dd ul li .btn {
    height: 32px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    background: #2f6edb;
    width: 125px;
    margin: 5px auto 15px;
}

.navbar .profile .profile_dd ul li .btn:hover {
    background: #6593e4;
}

.navbar .profile.active .profile_dd,
.navbar .notifications.active .notification_dd {
    display: block;
    z-index: 9;
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    display: none;
}

.popup .shadow {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
}

.popup .inner_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.popup .notification_dd {
    display: block;
    position: static;
    margin: 0 auto;
    height: 357px;
    overflow: auto;
}

.popup .notification_dd:before {
    display: none;
}

.popup .notification_dd li.title {
    font-weight: 700;
    color: #2F6EDB;
    display: flex;
    justify-content: center;
    position: relative;
}

.popup .notification_dd li.title .close {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.popup .notification_dd li.title .close:hover {
    opacity: 0.5;
}
.project-page .budget-details .address-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}
.project-page .budget-details .address-details h4 {
    width: 300px;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
}

.budget-table td {
    vertical-align: middle;
}

.trades_table {
    font-weight: bold;
    text-align: left;
    width: 75%;
}

.budget_table {
    /* text-align: right; */
    font-weight: bold;
    width: 25%;
}
.attachements {
    /* max-width: calc(33.33% - 1em); */
    border: 1px solid #c1c1c1;
    padding: 10px;
    border-radius: 8px;
    flex: 1 1 calc(33.33% - 1em);
    background: #ffffff 0% 0% no-repeat padding-box;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.link_url {
    padding-top: 20px;
}
.link_pdf {
    max-width: calc(33.33% - 1em);
}
.link_pdf a {
    font-size: 24px;
    text-decoration: none;
    font-weight: 500;
}
.attachements p {
    color: #c1c1c1;
    font-size: 18px !important;
}
.attachements .image_div {
    display: flex;
    align-items: center;
    gap: 1em;
}
.attachements .fonts {
    font-size: 24px;
    font-weight: 500;
    text-align: left;
}
/* subcontractor section */

.sub-contractor-dashboard {
    padding: 2em;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 1em;
}
.project-section > h3 {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-30);
    line-height: var(--line-spacing-38);
}
.sub-contractor-dashboard .project-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1em;
    background-color: #fff;
}

.sub-contractor-dashboard .project-card h5 {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-19);

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub-contractor-dashboard .project-card a {
    color: var(--color-blue);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-spacing-19);
    text-decoration: none;
}

.sub-contractor-dashboard .price {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-spacing-19);
    color: var(--color-blue);
}

.sub-contractor-dashboard .badge-accepted {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-spacing-19);
}

.sub-contractor-dashboard .project-bid-status {
    color: #6c757d;
}
.sub-contractor-dashboard .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.sub-contractor-dashboard .head-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sub-contractor-dashboard .head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sub-contractor-dashboard .accept-btn {
    background-color: var(--color-blue);
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-regular);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: var(--font-size-16);
    font-family: var(--font-family-poppins);
}
.sub-contractor-dashboard .btn-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sub-contractor-dashboard .img-container {
    padding: 0.8em;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #00000029;
}
.sub-contractor-dashboard .img-container img {
    width: 20px;
}

@media (max-width: 1400px) {
    .sub-contractor-dashboard .project-card h5 {
        font-size: var(--font-size-20);
        font-weight: var(--font-weight-regular);
        line-height: var(--line-spacing-19);
    }
}
/* .sub-contractor-dropdown {
    flex: 1 !important;
    display: flex  !important;
    align-items: center  !important;
  } */

.top_field {
    display: flex;
    gap: 1em;
    width: 100%;
    justify-content: space-between;
}

.top_field .form-control.search {
    width: 49%;
    border: 1px solid #efefef;
    border-radius: 8px;
}

.top_field .dropdown {
    width: 49%;
    border: 1px solid #efefef;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}
.fields label {
    border-left: 2px solid #2F6EDB;
    padding-left: 0.3em;
}
.fields .dropdown.btn {
    display: flex;
    gap: 0.5em;
    border: 0;
}

.fields .dropdown.btn button:nth-of-type(2) {
    background-color: var(--color-yellow);
    color: #000;
}
.close-upload {
    position: absolute;
    background-color: transparent;
    color: red;
    right: 0;
    top: 0;
}
.text-muted {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.navbar .msg-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.8em;
    position: relative;
}

.navbar .msg-icon img {
    width: 100%;
    height: 100%;
}

.navbar .position {
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}
.navbar .icon {
    position: relative;
    width: 44px;
}
.navbar .badge {
    position: absolute;
    top: -13px !important;
    right: -15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    padding: 1px 10px 0 10px;
    border: 3px solid #f4fdff;
    border-radius: 500px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    z-index: 1;
    transition: transform 0.15s, background-color 0.5s;
}

.navbar .green {
    background: var(--color-blue);
}
.navbar .position:hover .badge,
.navbar .navbar_right:hover .badge {
    background-color: var(--color-blue);
    transform: scale(1.08);
}
.navbar .position:active .badge {
    background-color: #555;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.75);
}
@media (max-width: 600px) {
    .navbar .position:active .badge {
        transition: none;
    }
    .navbar .icon {
        width: 28px;
    }
    #suggestions{
        width: 60% !important;
    }
    .navbar .badge {
        position: absolute;
        top: -16px;
        right: -18px;
        min-width: 25px;
        height: 25px;
        padding: 0 7px;
        font-size: 9px;
        transition: transform 0.1s, background-color 0.2s;
    }
    .navbar .position:hover .badge {
        transform: scale(1);
    }
    .notification_dd{
        width: 350px;
    }
}
@media (max-width: 450px){
    .alert-dismissible{
        padding:20px 15px !important;
    }
    .alert-dismissible a {
        margin-top:10px;
    }
    #suggestions{
        width: 63% !important;
    }
    .notification_dd{
        width: 280px !important;
    }
}
.btn-info {
    background-color: var(--color-yellow);
    color: black;
    border: var(--color-yellow);
}
.btn-info:hover {
    background-color: var(--color-yellow);
    color: black;
}

.modal-body .select2-selection--multiple {
    border: solid black 1px !important;
    height: 56px !important;
}
.findsubs-single-page.chat-page {
    min-height: 0vh !important;
    padding-bottom: 39px !important;
    /* overflow: hidden; */
}
.fields .label {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.fields .label div {
    width: 49%;
}
.search-bar-special {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    background-color: var(--color-white);
    padding: 15px 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.search-bar-special .form-group {
    width: 80%;
}
.search-bar-special .form-group input {
    border-radius: 1.25rem !important;
}
.search-bar-special .form-group select {
    border-radius: 1.25rem !important;
}

.search-bar-special label {
    /* padding-left: 0.8em; */
    margin: 1em 0;
    /* border-left: 3px solid var(--color-blue); */
}
.search-bar-special .btn-primary {
    background-color: var(--color-yellow);
    color: #000;
    width: 50%;
    padding: 0.8em 0;
    margin-top: 1.2em;
    margin-bottom: 22px;
    border: 0;
    border-radius: 13px;
    font-weight: 600;
}
.profile-card-inner {
    width: 100%;
    display: flex;
}
.profile-card {
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.profile-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.input_search_cl {
    padding: 15px 10px;
    border: 3px solid #ced4da;
    /* font-weight: 500; */
}
.colaps_max_text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.profile-card .profile-info {
    width: 10px;
}

/*   Update card for all listing pages 10-12-2024  */

.description {
    width: 80%;
    border-radius: 8px;
    box-sizing: border-box;
    opacity: 1;
}

.tags span {
    font-size: var(--font-size-15);
    font-weight: var(--font-weight-regular);
    margin: 0;
    color: var(--color-blue);
    height: 28px;
    display: block;
    border-radius: 38px;
    background: #e3f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 1.2em;
    cursor: pointer;
}
.job-tages {
    font-size: var(--font-size-15);
    font-weight: var(--font-weight-regular);
    margin: 0;
    color: var(--color-blue);
    height: 28px;
    display: block;
    border-radius: 38px;
    background: #e3f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 1.2em;
    cursor: pointer;
}

.button_of_project {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
h5 {
    font-size: 24px !important;
}
.card {
    margin-bottom: 25px;
    background-color: var(--color-white);
    border: 1px solid #c1c1c1;
    border-radius: 8px;
}
.imag-card {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}
.rating-container {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    position: relative;
    cursor: pointer;
}

.rating-value {
    font-weight: bold;
    margin-right: 5px;
}

.stars {
    display: flex;
    margin-right: 5px;
}

.star {
    font-size: 18px;
    color: #ffa500;
}

.star.half {
    color: #ddd;
    position: relative;
}

.star.half::before {
    content: "★";
    color: #ffa500;
    position: absolute;
    width: 50%;
    overflow: hidden;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;
    position: relative;
}

.rating-count {
    font-size: 14px;
    color: #2F6EDB;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 200px;
}

.dropdown-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.dropdown-menu ul li {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-menu ul li:hover {
    background: #f5f5f5;
}
.colaps_max_text_des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.starss span.active {
    color: gold;
}
.review_imag_round {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}
.review_imag_round_company {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid;
}
.company_{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.link_image{
    width: 30px;

}
.notes{
    padding: 10px;
    width: 100%;
    border: 2px solid #e4e7ee;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0px 0px 6px #0000000a;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
}
.link_button{
        display: flex;
        flex-direction: column;
        text-align: center;
}


/*  Select By Check Box  */


.multipleSelection {
    width: 100%;
    /* background-color: #BCC2C1; */
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    /* font-weight: bold; */
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkBoxes {
    /* display: none; */
    border: 1px #ced4da solid;
    height: 72%;
    overflow-y: auto;
}

#checkBoxes label {
    display: block;
    padding: 5px;
}

#checkBoxes label:hover {
    background-color: #4F615E;
    color: white;
    /* Added text color for better visibility */
}
.total{
    color: red;
}
.view_profile_badge{
    display: inline-block;
    padding: .25em .4em;
    font-size: 100%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    color: #fff;
    background-color: #2F6EDB;
}
#suggestions {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    position: absolute;
    background: #fff;
    z-index: 1000;
    width: 24%;
    padding: 10px;
}

#suggestions div {
    padding: 8px;
    cursor: pointer;
}

#suggestions div:hover {
    background: #f0f0f0;
}
#find{
    box-shadow: none;

}
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-rating {
    font-size: 14px;
}

.descriptions_rating {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0px 4px 16px #0000000a;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 1;
    border-radius: 10px;
    border: 1px solid #D9D9D9;

}
.rating_close{
    border-radius: 25px;
    background: #2F6EDB;
    border: 1px #2F6EDB;
}
 /* Header */
 .header-top{
    display: flex;
    align-items: center;
    background: #D7E4FC 0% 0% no-repeat padding-box;
    padding: 0 15px;
}
.header p {
    text-align: left;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #4B4B4B;
    opacity: 1;
}
.header-container {
    width: 86%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    padding-top: 0;
    margin-top: 0;
}
/* Project Header Section */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4px 0;
    border-radius: 8px;
}

.project-title h1 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 30px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #555;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    padding: 14px 6px;
}

.project-meta p {
    margin: 0;
    display: flex;
    align-items: center;
}
.project-meta .text{
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    color: #4B4B4B;
    opacity: 1;
}

.project-meta .icon {
    font-size: 18px;
}

.highlight {
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    opacity: 1;
    color: #2F6EDB !important;
}

.btn-edit {
    background-color: #2F6EDB;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-edit:hover {
    background-color: #0056b3;
}
.menu-links a:hover{
    background: #fff !important;
    color: #0171E3 !important; /* Change background to #0171E3 on hover */
    border: 1px solid #0171E3 !important; /* Change border color to #0171E3 on hover */
}
