@font-face {
    font-family: "DMSans-thin";
    font-weight: 100;
    src: url('../fonts/DMSans_18pt-Thin.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-extralight";
    font-weight: 200;
    src: url('../fonts/DMSans_18pt-ExtraLight.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-light";
    font-weight: 300;
    src: url('../fonts/DMSans_18pt-Light.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-regular";
    font-weight: 400;
    src: url('../fonts/DMSans_18pt-Regular.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-medium";
    font-weight: 500;
    src: url('../fonts/DMSans_18pt-Medium.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-semibold";
    font-weight: 600;
    src: url('../fonts/DMSans_18pt-SemiBold.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-bold";
    font-weight: 700;
    src: url('../fonts/DMSans_18pt-Bold.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-extrabold";
    font-weight: 800;
    src: url('../fonts/DMSans_18pt-ExtraBold.woff2') format("woff2");
}

@font-face {
    font-family: "DMSans-black";
    font-weight: 900;
    src: url('../fonts/DMSans_18pt-Black.woff2') format("woff2");
}

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

body {
    font-family: "DMSans-regular", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    list-style: none;
}

.deactive-button {
    border-color: #D1D1D1 !important;
    background-color: #D1D1D1 !important;
    color: #A0A0A0 !important;
    cursor: not-allowed !important;
}


/* Dropzone.js */
.dropzone {
    padding: 0 !important;
    max-height: 150px;
    min-height: 120px !important;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-dropzone {
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    overflow-x: auto;
    overflow-y: hidden;
}

.dropzone .dz-preview {
    min-height: 80px;
}

.dropzone .dz-preview .dz-image,
.dropzone .dz-preview.dz-image-preview {
    width: 80px;
    height: 80px;
}

.custom-dropzone .dz-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #737373;
}
.too-many-files{
    justify-content: space-between !important;
}

.custom-dropzone .dz-message img {
    width: 30px;
    height: 30px;
}

.custom-dropzone .dz-preview .dz-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* support  */
.support_icon {
    width: 52px;
    height: 52px;
    position: fixed;
    box-sizing: border-box;
    bottom: 30px;
    right: 30px;
    transition: all 0.3s ease;
    background-color: #47B649;
    cursor: pointer;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: support_icon_animate 2.5s ease-in-out infinite;
    box-shadow: 0 0 0 rgba(71, 182, 73, 0.7);
}

.support_icon img {
    width: 25px;
}

@keyframes support_icon_animate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(71, 182, 73, 0.7);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(71, 182, 73, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(71, 182, 73, 0);
    }
}

/* Custom modal size */
#supportModal .modal-lg-custom {
    max-width: 600px;
    border-radius: 20px;
}

/* Modal content */
#supportModal .modal-content {
    border-radius: 20px;
    padding: 20px 30px;
    border: none;
}

/* Modal top section */
#supportModal .modal-top {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    margin-bottom: 10px;
    text-align: center;
    flex-direction: column;
}

#supportModal .modal-top .img img {
    width: 150px;
    height: auto;
}

/* Modal title and description */
#supportModal .modal-top-texts h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
}

#supportModal .modal-top-texts p {
    font-size: 14px;
    color: #6c757d;
    font-family: DmSans-regular;
}

/* Input & label styling */
#supportModal label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: #1d1d1f;
    font-family: DmSans-medium;
}

#supportModal input,
#supportModal textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

#supportModal textarea {
    border-radius: 15px;
    resize: none;
    height: 120px;
}

/* Focus state */
#supportModal input:focus,
#supportModal textarea:focus {
    border-color: #47B649;
}

/* Required field indicator */
#supportModal label span {
    color: red;
}

/* Button styles */
#supportModal .send-message-btn {
    background-color: #47B649;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#supportModal .send-message-btn:hover {
    background-color: #47B649;
}


/* Responsive fix */
@media (max-width: 576px) {
    .modal-top {
        flex-direction: column;
        text-align: center;
    }

    .col-5 {
        width: 100%;
        margin-bottom: 15px;
    }
}


/* support  */

/* Header */

.modal {
    z-index: 9999;
    border-radius: 20px !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: #fff;
    transition: all .4s ease-in-out;
    z-index: 1000;
}

header.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 10px 20px 0px rgba(0, 15, 56, 0.06);
    animation: smoothScroll 0.3s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

header.deactive {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation: smoothScroll2 0.3s forwards;
}

@keyframes smoothScroll2 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-102%);
    }
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.main-logo {
    width: 100px;
}

.logo_list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.list li {
    font-size: 18px;
}

.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.auth button {
    border: none;
    border-radius: 22px;
}

.login-btn {
    background-color: #F7F7F7;
    padding: 10px 15px;
}

.register-btn {
    background-color: #47B649;
    color: #fff;
    padding: 10px 15px;
}

header .bars,
header .fa-search {
    display: none;
    color: #47B649;
    background-color: #F1FAF1;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

header .fa-search {
    color: #222222;
}

.authorized {
    display: flex;
    align-items: center;
    gap: 20px;
}

.authorized .profile-image {
    border: 5px solid #F7F7F7;
}

.authorized .profile-image,
.fa-bell {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    transition: all .3s;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fa-bell {
    font-size: 1.7em;
    background-color: #F7F7F7;
}

.authorized .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authorized .dropdown-menu {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 302px;
}

.authorized .dropdown-menu:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    right: 18px;
    background-color: white;
    transform: rotate(-45deg);
    border: 1px solid;
    border-top-color: rgb(213, 213, 213);
    border-right-color: rgb(213, 213, 213);
    border-bottom-color: white;
    border-left-color: white;
    z-index: 0;
}

.authorized .dropdown-menu h6 {
    margin-top: 10px;
    font-family: DmSans-medium;
}

.authorized .dropdown-menu .menu-top button {
    padding: 5px 15px;
    margin-top: 10px;
    color: #47B649;
    border: 1px solid #47B649;
}

.authorized .dropdown-menu .menu-top button i {
    color: #47B649;
}

.authorized .dropdown-menu .dropdown-item img {
    width: 20px;
}

.authorized .dropdown-menu a {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: DmSans-regular;
}

.authorized .dropdown-menu i {
    color: #828282;
    margin-left: 3px;
}

.authorized .dropdown-menu ul li:hover i {
    color: #47B649;
}

.authorized .dropdown-menu ul li .fa-arrow-right-from-bracket {
    transform: rotate(180deg);
}

.authorized .dropdown-menu p {
    color: #828282;
    font-family: DmSans-regular;
    margin-bottom: 0;

}

.authorized .message {
    display: flex;
    align-items: center;
    transition: all .3s;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background-color: #F7F7F7;
    padding: 10px 25px;
    border-radius: 35px;
}

.authorized .message img {
    width: 30px;
}

.authorized .message p {
    margin-bottom: 0;
}

.dropdown-item:hover {
    color: #47B649;
    background-color: #F1FAF1;
}

/* .authorized .dropdown-menu ul {
    display: flex;
    padding: 0 15px;

    flex-direction: column;
    align-items: center;
}

.authorized .dropdown-menu ul li {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.menu-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-top {
    text-align: center;
}

.message:hover {
    background-color: #e6e6e6;
}

.profile-image:hover {
    border-color: #e6e6e6;
}

.fa-bell:hover {
    background-color: #e6e6e6;
}

.header-offcanvas {
    width: 440px !important;
    background: #FFFFFF;
    border: none;
    padding: 60px 0;
    overflow: auto;
}

.offcanvas.offcanvas-start.header-offcanvas {
    top: 78px;
    border: none;

}

.header-offcanvas .offcanvas-body {
    margin-top: 0;
    min-height: 100%;
    overflow: initial;
}

.header-offcanvas .offcanvas-body ul {
    border: none;
}

.header-offcanvas .offcanvas-header {
    padding: 0px 24px;
    border-bottom: none;
}

.user-profile {
    display: flex;
    background-color: #F7F7F7;
    align-items: center;
    padding: 16px 13px;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.user-profile:hover {
    background-color: #e9ecef;
    color: inherit;

}

.profile-avatar {
    border: 3px solid #16a34a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h6 {
    margin: 0;
    font-size: 16px;
    font-family: DmSans-medium;
    color: #212529;
}

.profile-info p {
    font-family: DmSans-regular;
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.offcanvas-body {
    padding: 0 24px 24px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 4px;
}

.menu-item a {
    margin: 0;
    padding: 6px 16px;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0px;
    text-decoration: none;
    color: #222222 !important;
    font-family: DmSans-regular;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 2px solid #F7F7F7;
}

.menu-link:hover {
    background-color: #e9ecef;
    color: #212529;
    transform: translateX(2px);
}

.menu-link-content {
    display: flex;
    align-items: center;
}

.menu-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
    color: #6c757d;
}

.arrow-icon {
    color: #adb5bd;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.menu-link:hover .arrow-icon {
    transform: translateX(2px);
}

.logout-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #dc3545;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    margin-top: 16px;
    padding-top: 20px;
    gap: 10px;
}

.auth-responsive {
    margin-top: 20px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.auth-responsive button {
    border: none;
    border-radius: 22px;
}

.auth-responsive .login-btn {
    background-color: #F7F7F7;
    padding: 10px 15px;
}

.auth-responsive .register-btn {
    background-color: #47B649;
    color: #fff;
    padding: 10px 15px;

}

.logout-link:hover {
    background-color: #f8d7da;
    color: #dc3545;
}

.logout-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

/* Responsive */



@media (min-width:1025px) {
    .header-offcanvas {
        display: none;
    }
}

@media (max-width: 1024px) {

    .unauthorized,
    .authorized,
    .nav-not-icon {
        display: none !important;
    }

    header .bars,
    header .fa-search {
        display: flex;
        font-size: 22px;
        cursor: pointer;
    }

    .list {
        display: none;
    }

    .login-btn {
        padding: 5px 10px;
    }

    .register-btn {
        padding: 5px 10px;
    }
}

/* Main Banner  */
.container-inner {
    background: #B9FFBA;
    background: linear-gradient(395deg, rgba(185, 255, 186, 1) 0%, rgba(255, 255, 255, 1) 26%, rgba(246, 255, 246, 1) 76%, rgba(185, 255, 186, 1) 100%);
    /* background: linear-gradient(40deg, rgba(185, 255, 186, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(185, 255, 186, 1) 100%); */
    width: 100%;
    min-height: 80vh;
    border-radius: 24px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.head-text {
    width: 80%;
    position: relative;
    margin: auto;
    text-align: center;

}

.head-text h1 {
    font-family: "DMSans-semibold", sans-serif;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    font-size: 60px;

}

.head-text h1 span {
    color: #47B649;
}

.head-text img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    z-index: 0;
}


.head-text p {
    color: #858585;
    width: 60%;
    margin: auto;
    font-size: 20px;
    font-family: Dmsans-regular, sans-serif;
}

.skills {
    display: flex;
    justify-content: center;
}

.card-icon {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(226, 226, 226);
    border-radius: 50%;
    width: 44px;
}

.card a {
    transition: all 0.1s ease;
    color: #A4A4A4;

}

.container-inner .card a:hover {
    color: #47B649;
}

.card {
    border-radius: 12px;
    border-color: #e8e8e8;
}

.card h3 {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    font-style: italic;
}

.search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    /* Responsive fallback */
}

.search-container {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 35px;
    padding: 10px 16px;
    flex: 1;
    /* ← important */
    min-width: 0;
    /* fixes shrinking on overflow */
}




.search-bar button {
    background-color: #222222;
    color: #fff;
    padding: 10px 35px;
    border: none;
    border-radius: 22px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background-color: #47B649;
}


.search {
    display: flex;
    align-items: center;
    flex-grow: 1;
    position: relative;
}

.search i {
    color: #aaa;
    margin-right: 8px;
    font-size: 16px;
}

.search input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 14px;
    color: #333;
}

.category-select {
    display: flex;
    align-items: center;
    border-left: 1px solid #ccc;
    padding-left: 12px;
    margin-left: 12px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.category-select i {
    margin-left: 6px;
    font-size: 12px;
}

header .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    padding: 8px 0;
    width: 150px;
    z-index: 999;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    border-radius: 10px;
    width: 100%;
    margin: auto;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 679px) {
    .container-inner h1 {
        font-size: 25px;
    }

    .banner-texts {
        padding: 1rem !important;
    }

    .search-dropdown {
        width: 300px;
    }

    .step-title {
        font-size: 25px !important;
    }

    .head-text p {
        font-size: 14px;
        width: 100%;
    }
}


/* Main Banner ^ */

/* Category */

.category-card {
    position: relative;
    min-height: 180px;
    background-color: #f7f7f7;
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    transition: 0.3s ease;
    border: 2px solid transparent;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.category-card:hover {
    background-color: #e6f4ec;
    border-color: #28a745;
    color: #28a745;
}


.icon-wrapper {
    font-size: 20px;
    color: #737373;
    text-align: left;
}

.icon-wrapper i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #737373;
    border: 0.5px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-size: 18px;
}

.icon-wrapper i:hover {
    color: #28a745;
    border: .5px solid #28a745;
    transition: .3s ease;
}


.card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}


.job-count {
    font-size: 12px;
    color: #6c757d;
}


.category-name {
    margin-top: auto;
    font-weight: 500;
    font-size: 21px;
    text-align: left;
}

.text-search {
    color: #28a745;
}

@media (min-width: 1025px) {
    .custom-col {
        width: 20% !important;
    }
}

/* Steps */

.step-container {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background-color: #D1EDD1;
    color: #1E561F;
    margin-left: 0;
}

.step-register {
    border: none;
    background-color: black;
    padding: 15px 20px;
    color: white;
    justify-self: flex-start;
    border-radius: 35px;
    transition: all .3s;
    width: fit-content;
}

.step-register:hover {
    background-color: #47B649;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-title {
    font-family: "DMSans-semibold", sans-serif;
    font-size: 44px;
}

.step div {
    width: 50px;
    height: 50px;
    border: 2px solid #1E561F;
    border-radius: 100%;
    display: flex;
    align-items: center;
    font-family: dmsans-semibold, sans-serif;
    justify-content: center;
}

.step {
    min-height: 160px !important;
}

.step h4,
p {
    font-family: DmSans-medium, sans-serif;
}

.step p {
    color: #4CBD4E;
    line-height: 1;
    width: 98%;
}

@media (min-width:992px) and (max-width:1024px) {
    .step-image-container {
        height: 350px;
    }

    .step-image-container img {
        object-position: center;
    }
}



/* Steps ^ */


/* Popular section */
#previewImage {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.profile-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    padding: 6px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background-color: white;
}

.profile-container {
    position: relative;
    display: inline-block;
}

.online-indicator {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    background-color: #28a745;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 10;
}

.online-indicator.offline {
    background-color: red;
}

.card-badge {
    font-size: 0.75rem;
    background-color: #f1f3f4;
    color: #5f6368;
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
    display: inline-block;
    margin: 2px;
}

.popular-title h2 {
    font-weight: bold;
    color: #212529;
    margin-top: 80px;
}

.popular-title p {
    font-size: 16px;
    color: #6c757d;
}

.popular-title button {
    border: 1px solid #dee2e6;
    border-radius: 25px;
    padding: 8px 16px;
    background: white;
    color: #495057;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.popular-title button:hover {
    border: 1px solid #28a745;
    color: #28a745;
    background-color: #f8fff9;
    transform: translateY(-1px);
}

.bookmark {
    color: #6c757d;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.bookmark:hover {
    color: #28a745;
}

.verified-logo {
    width: 16px;
    height: 16px;
}

.text-online {
    font-size: 0.8rem;
    border-left: 1px solid #dee2e6;
    margin-left: 8px;
    padding-left: 8px;
    font-weight: 400;
    color: #28a745;
}

.popular-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-card:hover {
    transform: translateY(-5px);
}

.popular-card .card {
    border: none;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
    border: 1px solid #ececec;
    border-bottom-width: 5px;
}


.popular-card:hover .card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.work-type {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.price {
    color: #212529;
    font-weight: 600;
    margin: 0;
}

.btn-details {
    background-color: #212529;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.btn-details:hover {
    background-color: #28a745;
}

.profile-section {
    align-items: flex-start;
}

.profile-section .company-icon {

    width: 46px;
    height: 46px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    background-color: blue;
}

.profile-info {
    width: 270px;
}

@media (max-width: 425px) {
    .profile-info {
        width: 180px;
    }

    .profile-info img {
        width: 20px;
    }
}

.profile-info strong {
    font-size: 0.95rem;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location {
    color: #6c757d;
    font-size: 0.8rem;
}

.description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 12px 0;
}

.popular-work {
    margin: 0 auto;
}

.more-btn {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-btn button {
    color: #000;
    background-color: #f7f7f7;
    padding: 10px 30px !important;
}

.more-btn button:hover {
    color: #f7f7f7;
    background-color: #000;
}

.popular-card strong>img {
    width: 35px;
    height: 35px;
}


/* Footer */
.footer {
    margin-top: 20px;
    font-family: Arial, sans-serif;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    /* flex: 1; */
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info .info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 0;
    padding-bottom: 0;
}

.footer-info {
    margin-top: 15px;
}

.social-links {
    margin-top: 20px;
    padding: 0 25px;
}

.social-link {
    margin-right: 10px;
    font-size: 25px;

    color: #252525;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 7px 10px;
    border-radius: 100%;
}

.social-link:hover {
    background-color: #ECECEC;
    color: #47B649;
}

.footer-language {
    outline: none;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}


.footer-column .footer_heading {
    padding: 10px 25px;
    transition: color 0.3s ease;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 35px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.footer-column .footer_heading p {
    font: italic 400 16px/24px "DMSans-regular", sans-serif;
    color: #333;
    height: 24px;
    padding-right: 10px;
    margin: 0;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: auto !important;
    width: fit-content;
}

.footer-column ul {
    list-style: none;
    padding: 0 25px;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    text-decoration: none;
    color: #333;
}

.footer-column a:hover {
    color: #47B649;
}

.footer-bottom {
    display: flex;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-links a:hover {
    color: #ff6f61;
}

.footer-bottom p {
    color: #777;
    margin-top: 20px;
}

@media (max-width: 525px) {
    .footer-bottom {
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer_social_media {
        text-align: right;
        margin-bottom: 40px;
    }
}





/* Job Detailed top start */
.job-detailed-top {
    border: 1px solid #ECECEC;
    border-radius: 20px;
}

.job-detailed-top .add-profile-info {
    border-radius: 35px;
    border: none;
    color: #47B649;
    background-color: #E1F3E2;
}

.job-detailed-top .add-profile-info a {
    display: block;
    width: 100%;
    height: 100%;
}

.job-detailed-top .profile-information .profile {
    width: 80px;
    position: relative;
    height: 80px;
}

.job-detailed-top .profile-information .profile .job-profile-image {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.job-detailed-top .profile-information .profile .upload-profile-img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    padding: 20px;
    border-radius: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ECECEC;
}

.job-detailed-top .profile-information .profile .upload-profile-img label {
    cursor: pointer;
    position: absolute;
    z-index: 2;
}

.job-detailed-top .profile-information .profile .upload-profile-img label img {
    width: 30px;
}

.job-detailed-top .profile-information .profile .upload-profile-img input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.job-detailed-top .profile-information h3 {
    font-family: DmSans-medium, sans-serif;
}

.job-detailed-top .profile-status p {
    margin-bottom: 0;
}

.job-detailed-top .profile-status .status {
    padding: 10px 20px 10px 30px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 35px;
    background-color: #f7f7f7;
    position: relative;
}

.job-detailed-top .profile-status .status:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
}

.job-detailed-top .profile-status .online:after {
    background-color: #47B649;
}

.job-detailed-top .profile-status .offline:after {
    background-color: red;
}

.job-detailed-top .profile-status .rating {
    padding: 10px 25px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 35px;
    background-color: #f7f7f7;
    white-space: nowrap;
}

.job-detailed-top .profile-status .rating .fa-star {
    color: #FFC145;
}

.job-detailed-top .profile-status .rating span {
    color: #8C8A8A;
}

.job-detailed-top .profile-status .fa-bookmark {
    padding: 15px 17px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 35px;
    background-color: #f7f7f7;
    cursor: pointer;
}

.job-detailed-top .profile-status .suggest {
    padding: 10px 17px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 35px;
    background-color: #47B649;
    white-space: nowrap;
    color: white;
}

.job-detailed-top .profile-status .suggest.check {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
}

.job-detailed-top .profile-status .suggest .fa-check {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: white;
    color: #47B649;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-detailed-top .profile-status .suggest:hover .fa-arrow-right {
    transform: translateX(5px);
    color: #fff;
}

.job-detailed-top .profile-status .suggest .fa-arrow-right {
    transition: all 0.3s ease;
}

.job-detailed-top .about-me h4 {
    font-family: DmSans-medium, sans-serif;
}

.about-me .service-provider-major {
    margin: 10px 0;
    border: 1px solid #737373;
    padding: 5px 10px;
    border-radius: 35px;
}

.job-detailed-top .about-me p {
    font-family: DmSans-regular, sans-serif;
    color: #414141;
}

.job-detailed-top .location div p:nth-child(1) {
    color: #47B649;
    text-align: center;
    padding: 5px;
    background-color: #F7F7F7;
    border-radius: 8px;
    font-size: 16px;
    font-family: DmSans-regular;
}

.job-detailed-top .location div p:nth-child(2) {
    text-align: center;
    color: #222222;
    font-size: 16px;
    font-family: DmSans-regular;
}

.job-detailed-top .tools {
    display: flex;
    align-items: center;
    gap: 10px;

}

.job-detailed-top .areas title h3 {
    font-family: DmSans-regular, sans-serif;

}

.job-detailed-top .areas p {
    padding: 8px 24px;
    background-color: #F7F7F7;
    color: #838383;
    border-radius: 35px;

}

.job-detailed-top .conditions p {
    font-family: DmSans-regular, sans-serif;
}

.job-detailed-top .conditions .location li {
    list-style: disc !important;
    color: #222222;
}

.job-detailed-top .conditions .location div p:nth-child(2) {
    text-align: center;
}

.modal-dialog {
    max-height: 90vh;
}

.modal-content {
    max-height: 90vh;
    border-radius: 20px !important;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 35px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dbdbdb;
}



.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: DmSans-light, sans-serif;
    background-color: transparent;
    border: 1px solid rgb(201, 201, 201);
    color: rgb(178, 178, 178);
    border-radius: 8px;
    padding: 5px 10px;

}

.modal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    /* width: 24px; */
    /* height: 24px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: DmSans-light, sans-serif;
    background-color: transparent;
    border: 1px solid rgb(201, 201, 201);
    color: rgb(178, 178, 178);
    border-radius: 8px;
    padding: 8px;

}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 80%;
    overflow: auto;
    margin-bottom: 20px;
}

.modal .modal-header h5 {
    color: #28a745 !important;
    font-size: 25px;
}

.modal .modal-header {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}

.modal .modal-header p {
    color: #838383;
    margin-bottom: 0;
    font-family: DmSans-light, sans-serif;
}

.modal-body input,
.form-select,
textarea {
    border-radius: 35px;
    border: 1px solid #ECECEC;
    outline: none;
    padding: 10px 10px;
    resize: none;
}

.modal-body textarea {
    border-radius: 12px;
    height: 100px;
}

.gallery-area-resp {
    display: none;
}

.gallery-area-resp {
    position: relative;
}

.gallery-area-resp .swiper-navigation {
    position: absolute;
    top: -20px;
    right: 0px;
}


@media (max-width: 576px) {
    .gallery-area-resp {
        display: block;
    }

    .gallery-area.sertificates {
        display: none;
    }
}

@media (max-width: 426px) {
    .conditions .location {
        width: 100%;
    }

    .gallery-img img {
        height: 100px !important;
    }

    .new-doc {
        font-size: .7em !important;
        padding: 5px !important;
    }
}

@media (min-width: 426px) and (max-width: 768px) {

    .gallery-img img {
        height: 150px !important;
    }
}

/* Job Detailed top end */

/* Job Detailed bottom start */
/* Links And Gallery */

.links-and-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-link {
    background-color: #F7F7F7;
    color: #47B649;
    border-radius: 20px;
    font-size: 16px;
    padding: 8px 30px;
}

.gallery-link:hover {
    border: 1px solid #47B649;
    color: #47B649;
}

.gallery-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.sertificate-img img {
    width: 270px;
    height: 155px;
    object-fit: cover;
}

.sertificate {
    margin-top: 20px;
}

.links-and-gallery h4,
.sertificate h4,
.tasks h4,
.reyting-and-comments h4,
.oxsar h4 {
    font-family: "DMSans-regular", sans-serif;
}


.experience-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: none;
    margin-bottom: 1rem;
}

.experience-info {
    flex: 1;
    padding-left: 1rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.experience-title {
    margin: 0;
    font-weight: 600;
}

.experience-company {
    font-size: 0.9rem;
    color: #888;
}

.experience-description {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    border-left: 4px solid #4CAF50;
    padding-left: .7rem;
}

.experience-date {
    font-size: 0.85rem;
    white-space: nowrap;
    color: #888;
    margin-left: auto;
}

.comments-desc p {
    margin: 0 !important;
    padding: .5rem 0;
}

.comments-desc {
    padding: 10px;
}

@media (max-width:425px) {
    .comment-head {

        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .comment-head p {
        margin-bottom: 0;
    }
}

/* Job Detailed bottom end */

/* oxsar isguzarlar */
/* Swiper */
.swiper-button-prev,
.swiper-button-next {
    width: 32px;
    height: 32px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #7c7c7c;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #e0e0e0;
    color: #000;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

.profile-img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 50%;
}


/* employees start */
/* business_people.html uygun isguzarlar section */

input.form-control,
select.form-select {
    /* min-width: 180px; */
    width: 100%;
}

.input-position {
    width: 100%;
}

.input-region,
.input-mode {
    /* width: 150px; */
    width: 100%;
    color: #5f6368;
}

.input-max-salary,
.input-min-salary {
    width: 100%;
}

.isguzarlar-input input {
    padding: 10px;
}

.isguzarlar-input div:nth-child(1) i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(20px, -50%);
    color: #8F8F8F;
    font-size: 1.1em;
}

.isguzarlar-input .choices_inner_input .choices__inner {
    background-color: white !important;
}

@media (max-width: 768px) {

    .input-position,
    .input-region,
    .input-mode,
    .input-max-salary,
    .input-min-salary {
        width: 100%;
    }

    .isguzarlar-input {
        gap: 0px;
    }

    /* .isguzarlar-input {
        flex-wrap: wrap;
    } */

    .menu-filter-isguzarlar {
        width: 80%;
    }
}

@media (max-width: 570px) {
    .menu-filter-isguzarlar {
        width: 100% !important;
    }
}

.search-result {
    font-style: italic;
}

.search-result span {
    color: #28a745;
}

.filter-icon {
    width: 35px;
    height: 35px;
    opacity: 0.6;
}

.btn-isguzarlar-search {
    background-color: #47B649;
    color: #fff;
}


.araliq-min-max {
    gap: 10px;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99;
    transition: opacity 0.3s ease;
}

.menu-filter-isguzarlar {
    background-color: #e67474;
    width: 50%;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 100vh;
    overflow-x: auto;
    padding: 15px;
    font-size: 15px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
}

@media (min-width:768px) {

    .offcanvas-end {
        width: 50% !important;
    }
}

@media (max-width:767px) {

    .offcanvas-end {
        width: 100% !important;
    }
}

/* .menu-filter-isguzarlar.active {
    transform: translateX(0%);
} */

.overlay.active {
    opacity: 1;
}

.d-none {
    display: none !important;
}

.filter-x-mark {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 20px;
}

.filter-close {
    border: 1px solid #5f6368;
    padding: 4px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 10px;
    color: #5f6368;
}

.account-radios input:focus {
    outline: none;
    box-shadow: none;
}


.filter-title {
    padding-bottom: 8px;

}

.account-radios {
    display: flex;
    align-items: center;
    gap: 20px;
}

.personal-radio,
.company-radio {
    border: 1px solid #28a745;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s ease;
}

.personal-radio:hover,
.company-radio:hover {
    background-color: #47b64941;
    color: #47B649;
}

.account-radios input[type=radio],
.account-radios label {
    font-size: 16px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: green;
    border-color: green;
}

.filter-title p {
    margin: 0;
    font-size: 16px;
    color: #737373;
    font-family: dmsans-regular;
}

.menu-filter-isguzarlar option {
    width: 100% !important;
}

.menu-filter-isguzarlar h6 {
    font-family: dmsans-medium;
}

.filter-btn {
    border-bottom: 1px solid gray;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: fit-content;
    width: fit-content;
    font-family: dmsans-medium;
    cursor: pointer;
}

.apply-btn {
    background-color: #47B649;
    margin-bottom: 20px;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
}

.apply-btn:hover {
    border: 1px solid #28a745;
}

.work-mode {
    width: 100%;
}

.work-mode-options {
    width: 100%;
}

.menu-filter-isguzarlar h6 {
    font-size: 16px;
}

/* employees end */


/* employers start */

.employers-title {
    font-family: "DMSans-medium", sans-serif;
}


.title-description {
    color: #626760;
    font-family: "DMSans-regular", sans-serif;
    margin-bottom: 40px;
}

.filter-result {
    font-style: italic;
    margin: 40px 0;
}

.filter-result span {
    color: #28a745;
}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: green !important;
}


.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    ;
}

.shared-time {
    color: #838383;
    font-family: DmSans-regular, sans-serif;
}

.job-card .job-desc {
    font-family: DmSans-light, sans-serif;
}

.job-card .card-description {
    font-family: "DMSans-regular", sans-serif;
    color: #414141;

}

.company-icon {
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.bg-orange {
    background-color: #F4A300;
}

.bg-blue {
    background-color: #3A86FF;
}

.bg-green {
    background-color: #06D6A0;
}

.bg-red {
    background-color: #EF476F;
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.tag {
    background-color: #f2f2f2;
    color: #333;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

.bookmark {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

.btn-green {
    background-color: #27C36A;
    color: white;
    font-weight: 500;
    border-radius: 25px;
    padding: 8px 24px;
    border: none;
}

.btn-green:hover {
    background-color: #20a45a;
}

@media (max-width: 1024px) {
    .responsive-d-none {
        display: none;
    }
}

@media (max-width: 768.9px) {
    .tablet-d-none {
        display: none;
    }
}


/* employers end */

/* employers detail start */
/* Elanlar detail */

.job-card-announcement {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    border: none;
    margin-bottom: 20px;
    margin-top: 30px;
}


.job-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.job-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    margin-top: 16px;
}


.job-description {
    font-size: 15px;
    line-height: 1.6;
    color: #414141;
    margin-bottom: 24px;
    font-family: DmSans-regular, sans-serif;
}

.job-tags {
    margin-bottom: 20px;
    margin-top: 10px;
}

.job-tag {
    font-size: 17px;
    font-weight: 500;
    margin-right: 8px;
    margin-top: 20px;
    font-style: italic;
    font-family: dmsans-medium, sans-serif;
}




.detail-label {
    font-size: 14px;
    color: #28a745;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 10px;
}

.job-details-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 24px;
}

.requirement-list,
.responsibility-list {
    padding-left: 0;
    list-style: none;
}

.requirement-list li,
.responsibility-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.requirement-list li:before,
.responsibility-list li:before {
    content: "•";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-skills {
    margin-top: 24px;
}

.tech-tag {
    display: inline-block;
    background-color: #F7F7F7;
    color: #838383;
    padding: 8px 16px;
    border-radius: 35px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #F7F7F7;
}

.btn-apply {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-apply:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-contact {
    background-color: white;
    border: 1px solid #dee2e6;
    color: #495057;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-contact:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.action-buttons {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.announcement-icons {
    align-items: baseline;
    margin-top: 30px;
    border: 1px solid #e2e0e0;
    padding: 15px;
    border-radius: 15px;
    gap: 7px;
    justify-content: space-around;
    width: 300px;
    height: 150px;
}

.announcement-buttons {
    gap: 12px;
}

.bookmark-announcement {
    border-radius: 50%;
    padding: 5px 10px;
    border: 1px solid #f7f7f7;
    background-color: #f7f7f7;
}

.bookmark-announcement:hover {
    border: 1px solid #28a745;
    background-color: #fff;
    color: #28a745;
}


.map-announcement {
    border: 1px solid #28a745;
    color: #28a745;
    border-radius: 20px;
    padding: 8px 20px;
}

.map-announcement:hover {
    color: #28a745;
    border: 1px solid #28a745;
    background-color: #4ad46a3b;
}

.apply-announcement,
.btn-modal-elanlar {
    background-color: #28a745;
    border-radius: 20px;
    color: #fff;
    padding: 8px 20px;
    white-space: nowrap;
}

.apply-announcement.check {
    display: flex;
    align-items: center;
    border-radius: 35px;
    padding: 6px;
    cursor: initial;
}

.apply-announcement.check .fa-check {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: white;
    color: #47B649;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-announcement:hover,
.btn-modal-elanlar:hover {
    color: #28a745;
    background-color: #4ad46a3b;
    border: 1px solid #28a745;
}

#exampleModalLabel {
    color: #28a745;
}

.modal-p {
    color: #777777;
}

.modal-dialog-elanlar {
    max-width: 900px;
}


@media (max-width: 768px) {

    .job-header,
    .job-tags,
    .job-details,
    .action-buttons {
        padding-left: 16px;
        padding-right: 16px;
    }

    .btn-apply,
    .btn-contact {
        width: 100%;
        margin-bottom: 8px;
    }
}

.about-customer i {
    font-family: DmSans-regular, sans-serif;
    font-size: 1.2em;
}

.about-customer {
    margin: 60px 0;
}

.about-customer .customer-profile {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.about-customer ul li {
    list-style-type: disc;
    font-family: "DMSans-light", sans-serif;
}

/* employers detail end */




/* Select Role Page start */
.main-container {
    width: 100%;
    min-height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;

}

.options-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;

}


.options-card .logo {
    margin-bottom: 8px;
}

.subtitle {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    font-family: DmSans-semibold, sans-serif;
}

.options-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}


.option {
    position: relative;
    flex: 1;
    max-width: 180px;
    overflow: visible;
}

.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.option-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 20px;
    background: white !important;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 5px 5px 0px 1px rgba(208, 208, 208, 0.74);
    -webkit-box-shadow: 5px 5px 0px 1px rgba(208, 208, 208, 0.74);
    -moz-box-shadow: 5px 5px 0px 1px rgba(208, 208, 208, 0.74);
    justify-content: center;
    z-index: 999;
}

.option-card:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.option input[type="radio"]:checked+.option-card {
    background: rgb(255, 255, 255) !important;
    border-color: #4CAF50;
    color: #333;
    transform: translateY(-8px) translateX(-8px);
    box-shadow: none;
    z-index: 3;
}

.option input[type="radio"]:checked+.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    left: 12px;
    bottom: -12px;
    background: white;
    border-radius: 16px;
    z-index: -1;
    transform: rotate(6deg);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.option input[type="radio"]:checked+.option-card::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -16px;
    left: 16px;
    bottom: -16px;
    background: linear-gradient(135deg, #333, #222);
    border-radius: 16px;
    z-index: -2;
    transform: rotate(9deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.option-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.option input[type="radio"]:checked+.option-card {
    filter: none;
    background-color: #45a049 !important;
}


.option-text {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #45a049;
}



.radio-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.option input[type="radio"]:checked+.option-card .radio-indicator {
    background: #4CAF50;
    border-color: #4CAF50;
}

.option input[type="radio"]:checked+.option-card .radio-indicator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.continue-btn {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.continue-btn:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.continue-btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }

    .option {
        width: 100%;
        margin-bottom: 20px;
    }

    .continue-btn {
        width: 100%;
        padding: 12px 0;
    }

}

/* Select Role Page end */

/* Register page start */

.job-portal-header {
    background-color: white;
    /* padding: 20px 0; */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.job-portal-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-portal-logo {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.job-portal-logo__highlight {
    color: #28a745;
}

.registration-main-content {
    width: 100%;
    min-height: 100vh;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    position: absolute;
    top: 10px;
    width: 194px !important;
    left: 10px;
}

.registration-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    width: 100%;
    max-width: 480px;

}

.registration-form__header {
    text-align: center;
}

.registration-form__title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.registration-form__subtitle {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 !important;
    font-family: DMSans-regular;
}

.registration-form__field-group {
    margin-bottom: 10px;
}

.registration-form__field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.registration-form__required-indicator {
    color: #dc3545;
}

.registration-form__field-group input {
    border-radius: 40px;
}

.registration-form__field-label {
    font-weight: 400;
    letter-spacing: .5px;
}

.registration-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: #f8f9fa;
}

.registration-form__input:focus {
    outline: none;
    border-color: #28a745;
    background-color: white;
}

.registration-form__phone-input-wrapper {
    display: flex;
}

.registration-form__phone-prefix {
    width: 80px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 12px 8px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.registration-form__phone-input {
    flex: 1;
}

.registration-form__consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.registration-form__consent-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #28a745;
}

.registration-form__consent-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.registration-form__submit-button {
    width: 100%;
    background-color: #47B649;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.registration-form__submit-button:hover {
    background-color: #218838;
}


.last-step-btns button {
    background-color: #47B649;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.last-step-btns button:nth-child(1) {
    background-color: #F4F4F4;
    color: black;
}

.last-step-btns button:hover {
    background-color: #218838;
}

.last-step-btns button:nth-child(1):hover {
    background-color: #dddddd;
}

.registration-form__login-redirect {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.registration-form__login-redirect-link {
    color: #28a745;
    text-decoration: none;
}

.registration-form__login-redirect-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .registration-form-container {
        margin-top: 100px;
        padding: 20px;
    }

    .registration-form__title {
        font-size: 24px;
    }
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    background-color: #fff;
}

.phone-prefix {
    background-color: #f8f9fa;
    border: none;
    padding: 12px 10px 12px 18px;
    font-size: 14px;
    color: #555;
    pointer-events: none;
    width: 75px;
}

.phone-main-input {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border: none;
    padding: 12px;
    font-size: 14px;
    width: 100%;
    outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Register page end */

/* success start */

.succes-registered {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.success-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.success-content h1 {
    font-size: 35px;
    color: #47B649;
    font-weight: 600;
}

.success-content p {
    font-size: 28px;
}

@media (max-width: 576px) {
    .success-content h1 {
        font-size: 24px;
    }

    .success-content p {
        font-size: 18px;
    }

    .success-emoji {
        width: 100%;
        display: flex;
    }
    .success-emoji.flex-end {
        justify-content: flex-end;
    }

    .success-emoji img {
        width: 100px;
    }
}

/* success end */

/* service provider register start */
.image-upload {
    border: 1px dashed gray;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    height: 100px;
}

.image-upload input {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;

}

.image-upload .upload {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.image-upload .upload img {
    width: 30px;
}

.image-upload .upload p {
    color: rgb(193, 193, 193);
}

/* service provider register end */

/* service provider otp code start */

.otp-card {
    width: 558px;
    height: 504px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;

}

.otp-card .fa-arrow-left {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

.otp-card .fa-arrow-left:hover {

    color: white;
    background-color: #2CAE2F;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.otp-card h4 {
    font-family: Dmsans-semibold;
}

.otp-card .otp-desc {
    font-family: DMSans-regular;
    color: #828282;
    width: 70%;
    text-align: center;
}


.otp-card .send-againg {
    text-decoration: underline;
    margin: 30px 0 20px 0;
    text-align: start;
    cursor: pointer;
    width: 65%;
}

.otp-card .send-againg:hover {
    color: #1E561F;
}

.otp-input {
    width: 53px;
    height: 53px;
    font-size: 16px;
    text-align: center;
    border: 2px solid #D4D4D4;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: #47B649;
}

.otp-filled {
    background-color: #F1FAF1;
    color: #47B649;
    border-color: #47B649;
}



.submit-btn {
    width: 65%;
    background-color: #47B649;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.submit-btn:hover {
    background-color: #218838;
}

/* service provider otp code end */



/*  register step two start */

.step-two {
    position: relative;
    max-width: 550px;
    padding: 44px;

}


.step-two .fa-arrow-left {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

/*  register step two end */


/*  register step three start */

.step-three {
    position: relative;
    max-width: 550px;
    padding: 44px;

}

.step-three .fa-arrow-left {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin: 20px 0;
}

.service {
    padding: 13px 32px;
    border: 1px solid #ccc;
    border-radius: 35px;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease;
}

.service.selected {
    border: 1px solid #16A34A;
    background-color: #DCFCE7;
    color: #16A34A;
}

.selected-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-alt-group {
    margin: 40px 0;
}

/*  register step three end */

/* register last step start */
.last-step-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 100vh;
    margin-block: 0;
}





@media (max-width: 768px) {
    .last-step-container {
        margin-top: 50px;
    }


    .last-step-inner,
    .last-step-container {
        padding-left: 0 !important;
    }
}


.last-step-form {
    position: relative;
    border: 1px solid #ECECEC;
    border-radius: 12px;
    height: 100%;
    padding: 60px 30px;
}

.last-step-form .fa-arrow-left {

    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

.last-step-container .map-iframe {
    width: 100%;
    border-radius: 12px;
    height: 100%;
}


/* .step-last {
    position: relative;
    max-width: 500px;
    padding: 44px;

} */

.step-last .fa-arrow-left {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

.selected-locations {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-location {
    width: 100%;
    padding: 12px 45px;
    border: 1px solid #ddd;
    border-radius: 35px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: #f8f9fa;
    position: relative;
}

.selected-location .fa-xmark {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%);
    border-radius: 100%;
    transition: all .3s;
}

.selected-location .fa-xmark:hover {
    background-color: white;
    color: black;
}

.selected-location .fa-location-dot {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    color: #16A34A;
    font-size: 1.5em;

}

/* register last step end */
/* LOGIN FORM*/


.form-container-login {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 40%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 100px auto;
}

@media (max-width: 991.9px) {

    .map-container {
        height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .form-container-login {
        width: 60% !important;
    }
}

@media (max-width: 576px) {
    .form-container-login {
        width: 95% !important;
    }
}

.welcome-title-login {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.welcome-subtitle-login {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    letter-spacing: 1%;
}

.form-group-login {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-container-login {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 40px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #47B649;
    background: white;
}


.country-code {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}


.password-toggle i:hover {
    color: #47B649;
}

.forgot-password {
    text-align: left;
    margin-top: 8px;
}

.forgot-password a {
    text-decoration: underline;
    font-size: 16px;
}

.forgot-password a:hover {
    color: #47B649;
}

.login-button {
    width: 100%;
    background: #47B649;
    color: white;
    border: 1px solid #47B649;
    padding: 14px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #fff;
    border: 1px solid #47B649;
    color: #47B649;
}

.login-button:active {
    transform: translateY(0);
}

.register-link {
    margin-top: 20px;
    font-size: 16px;
}

.register-link a {
    color: #4CAF50;
    font-weight: 500;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
        margin: 10px;
    }

    .welcome-title {
        font-size: 22px;
    }
}


/* notifications  start */
.not-date {
    margin-top: 40px;
    font-family: DmSans-regular;
    color: #909090;

}

.not-head {
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.not-head h2 {
    font-family: DMSans-medium;
}

.not-head .not-date-btn {
    display: flex;
    width: 135px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 35px;
    transition: all .3s;
    background-color: #F7F7F7;
    border: 1px solid #ebebeb;

}

.not-head .not-date-btn:hover {
    background-color: #d2d2d2;
}

.not-head .not-date-btn img {
    width: 24px;
    height: 24px;
}

.not-head .not-date-btn p {
    font-family: DMSans-regular;
    margin-bottom: 0;
    color: #414141;
}

.notifications {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.notifications .notification {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background-color: #F7F7F7;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.notifications .notification:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #47B649;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 4px solid #79d87a80;
    border-radius: 100%;
}

.notifications .notification .logo {
    width: 90px;
}

.notifications .notification .logo img {
    width: 100%;
    object-fit: cover;
}

.notifications .notification .not-info {
    width: 100%;
}

.notifications .notification .not-info .info-head {
    display: flex;
    align-items: center;
    gap: 10px;

}

.notifications .notification .not-info .info-head img {
    width: 20px;
}

.notifications .notification .not-info .info-head h3 {
    margin-bottom: 0;
    font-family: DmSans-regular;
}

.notifications .notification .not-info .info-desc {
    position: relative;
    padding: 5px 15px;
    margin-top: 20px;
    border-left: 2px solid #c8c8c8;
    width: 95%;
}

.notifications .notification .not-info .info-desc .fa-xmark {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    transition: .3s;

}

.notifications .notification .not-info .info-desc .fa-xmark:hover {
    background-color: rgb(47, 47, 47);
    color: white;
}

.notification-more {

    display: flex;
    width: 135px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 35px;
    transition: all .3s;
    border: none;
    background-color: #F7F7F7;
    margin: auto;
    margin: 30px auto;
}

.notification-more:hover {
    background-color: #d2d2d2;
}

/* notifications  end */

/* ELAN AND ISGUZAR PAGE START */
.load-more-requests {

    display: flex;
    width: 135px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-radius: 35px;
    transition: all .3s;
    border: none;
    background-color: #F7F7F7;
    margin: auto;
    margin: 30px auto;
}

.load-more-requests:hover {
    background-color: #d2d2d2;
}

.search-result-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-sec p {
    font-style: italic;
    font-size: 16px;
    font-weight: 200;
}

.search-result-sec span {
    color: #47B649;
}

.section-buttons {
    border: 1px solid #ECECEC;
    border-radius: 60px;
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
}

.section-buttons .nav-link.active {
    background-color: #47B649;
    color: #fff;
    border-radius: 35px;
}

.section-buttons .nav-link {
    font-size: 16px;
    border-radius: 60px;
    padding: 8px 30px;
    background-color: #f7f7f7;
    transition: .3s ease;
    color: rgb(0, 0, 0);
}



.sec-1-btn,
.sec-2-btn {
    border: 1px solid #f7f7f7;
}

@media (max-width: 576px) {
    .select-types {
        flex-direction: column;
        align-items: center;
    }
}


/* ELAN AND ISGUZAR PAGE END */

/* Profile start */
.sidebar {
    /* margin: 40px 0; */
    transition: all .3s;

}

.sidebar ul {
    font-family: DmSans-medium;
    border-left: 1px solid gray;
    /* line-height: 3; */
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 30px 0;
}

.sidebar ul a:hover {
    color: #369c38;
}

.sidebar ul a {
    position: relative;
    color: #7E7D7D;
}

.sidebar ul .active-link {
    color: #222222;
}

.sidebar ul a .active-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: #47B649;
    border-radius: 100%;
    transition: all .3s;
}

.profile-bars {
    display: none;
}



.offcanvas-body {
    margin: 40px 0;
    transition: all .3s;
}

.offcanvas-body ul {
    font-family: DmSans-medium;
    border-left: 1px solid gray;
    line-height: 3;
}

.offcanvas-body ul a:hover {
    color: #369c38;
}

.offcanvas-body ul a {
    position: relative;
    color: #7E7D7D;
}

.offcanvas-body ul .active-link {
    color: #222222;
}

.offcanvas-body ul a .active-dot {
    position: absolute;
    left: -40px;
    top: 17.5px;
    width: 15px;
    height: 15px;
    background-color: #47B649;
    border-radius: 100%;
    transition: all .3s;
}

.job-card-announcement .edit-profile,
.job-detailed-top .edit-profile {
    width: 70px;
    background-color: #E1F3E2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    color: #47B649;
}

.edit-profile:hover {
    background-color: #d1f4d2;
}

.edit-profile img {
    width: 80%;
}

.customer-profile-info {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 24px;
    width: 100%;
}

.customer-profile-info h2 {
    font-family: "DMSans-regular";
    margin-bottom: 16px;
}

.acc-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.acc-type>div:first-child {
    color: #a3a3a3;
}

.acc-type p {
    margin: 6px 0;
    font-size: 15px;
    font-family: Dmsans-regular;
}

.acc-type .status-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.acc-type p span {
    background-color: #ffffff;
    color: #47B649;
    padding: 6px 12px;
    font-family: DmSans-regular;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 500;
    font-size: 14px;
}

.acc-type .not-completed {
    color: #FA574E;
    position: relative;
    padding-left: 15px;
}

.acc-type .not-completed:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #FA574E;
}

.status {
    background: white;
    border-radius: 30px;
    display: flex;
    padding: 4px;
    width: 275px;
    box-shadow: 0 0 0 1px #ddd;
    width: fit-content;
}

.status-btn {
    border: none;
    border-radius: 30px;
    width: 132px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    color: black;
}

.status-btn.active.online {
    background-color: #28a745;
    color: white;
}

.status-btn.active.offline {
    background-color: #ff5e57;
    color: white;
}

.links-and-gallery .modal {
    width: 815px;
    margin: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.links-and-gallery .modal .modal-body .img {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.links-and-gallery .modal .modal-header h3 {
    font-family: DmSans-regular;
    display: flex;
    align-items: center;
    color: green;
}

.links-and-gallery .modal .modal-header h3 span {
    background-color: rgb(250, 250, 250);
    color: gray;
    padding: 5px 15px;
    border-radius: 35px;
    margin-left: 10px;
    font-size: .8rem;
}

.links-and-gallery .modal .modal-body .img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.links-and-gallery .modal .modal-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer .delete {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #FFF2F1;
    border-radius: 35px;
    cursor: pointer;
    gap: 10px;
    transition: all .3s;

}

.modal-footer .delete:hover {
    background-color: #ffdcda;
}

.modal-footer .delete p {
    margin-bottom: 0;
    color: #E96F6F;
}

.modal-footer .delete img {
    width: 30px;
}

.modal-body .job-details-img {
    /* height: 400px; */
}

.service-provider-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5C6FFF;
    color: white;
    border-radius: 100%;
    font-size: 24px;
}

.profile-bars {
    font-size: 25px;
}

@media (max-width: 1023px) {

    .profile-information h3 {
        font-size: .9em;
    }

    .job-card-announcement .edit-profile,
    .job-detailed-top .edit-profile {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .edit-profile img {
        width: 100%;
    }

    .service-provider-logo {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .status-box {
        align-items: flex-start !important;
    }
}

.upgrade_job .upgrade_card {
    border: 1px solid #ECECEC;
    border-radius: 12px;
    border-bottom-width: 4px;
}

.upgrade_job .upgrade_card button {
    border-radius: 35px;
    border: none;
    background-color: #ECECEC;
    padding: 8px 20px;
}


@media (min-width: 576px) {
    .sidebar a .fa-arrow-right-long {
        display: none;
    }
}

@media (max-width: 576px) {
    .sidebar {
        margin: 15px 0;
    }

    .sidebar ul a .active-dot {
        display: none;
    }

    .sidebar ul {
        border: none;
        width: 100%;
        padding-left: 1rem !important;
        gap: 0;
    }

    .sidebar a {
        display: flex;
        border-bottom: 2px solid rgb(212, 212, 212);
        align-items: center;
        width: 100%;
        padding-right: 10px;
    }

    .sidebar a li {
        width: 100%;
        padding: 17px 0;
    }

    .sidebar a .fa-arrow-right-long {
        color: rgb(115, 115, 115);
    }
}



/* Profile end */


/* Edit Profile start */

.edit-profile-top {
    border: 1px solid rgb(212, 212, 212);
    padding: 20px;
    border-radius: 20px;


}

.edit-profile-top .edit-profile {
    white-space: nowrap;
}

.edit-profile-top .service-provider-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5C6FFF;
    color: white;
    border-radius: 100%;
    font-size: 24px;
}

.edit-profile-top .profile-information img {
    width: 90px;
    height: 90px;
}

.edit-profile-top .profile-information h3 {
    font-family: DmSans-medium, sans-serif;
}

.edit-profile-top .edit-profile {
    /* width: 150px !important; */
    border-radius: 35px;

    background-color: #E1F3E2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 18px;
    cursor: pointer;
    transition: all .3s;
    padding: 10px 20px;
}

.edit-profile-top input {
    /* width: 100%; */
    border: 1px solid rgb(209, 209, 209);
    padding: 10px 20px;
    border-radius: 35px;
    outline: none;
}

.edit-profile-top h3 {
    font-family: DmSans-medium;
    margin-bottom: 10px;
}

.edit-profile-top h5 {
    font-family: DmSans-regular;
    margin-top: 30px;
    font-size: 16px;
}

.edit-profile-top textarea {
    border-radius: 12px;
    width: 100%;
}

@media (max-width: 768.9px) {
    .edit-profile-top .service-provider-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 0;

    }
}

/* Edit Profile end */




/* ERROR PAGE start */

.error-page {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-page p {
    color: #909090;
}

.error-page button {
    border: none;
    background-color: #47B649;
    color: #fff;
    border-radius: 40px;
    padding: 12px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}

.error-image {
    width: 420px;
}

.error-image img {
    width: 100%;
}

/* ERROR PAGE end */

/* Profile info add-1 start */

.profile-add-form select {
    color: #828282;
}

.back-icon {
    background-color: #47B64929;
    color: #47B649;
    border-radius: 40px;
    padding: 5px 15px;
    margin-bottom: 15px;
}

.who-am-i {
    background-color: #f7f7f7;
    min-width: 190px;
    max-width: 240px;
    height: 50px;
    justify-content: center;
    border-radius: 40px;
}

.who-am-i span {
    font-size: 18px;
}

.who-one {
    background-color: #fff;
    width: 24px;
    height: 24px;
    color: #47B649;
}

.phone-access {
    color: #828282;
    cursor: pointer;
}

.profile-change {
    color: #828282;
    text-decoration: underline;
}

.profile-add-inputs input {
    border-radius: 40px;
    padding: 10px;
}

.profile-add-inputs input:focus,
.profile-add-inputs textarea:focus,
.profile-add-inputs select:focus {
    outline: none;
    box-shadow: none;
    border-color: #47B649;
}

.profile-add-inputs textarea {
    height: 120px;
    resize: none;
    padding: 5px;
}


.profile-photo-wrapper {
    height: 120px;
    border: 1px dashed #D4D4D4;
}

.profile-change {
    color: #828282;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.prof-add-continue {
    background-color: #47B649;
    color: #fff;
    font-weight: 400;
    transition: .3s ease;
    padding: 8px 15px;
    border: 1px solid #47B649;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-left: 0;
}

.choices__inner,
.choices__input {
    background-color: transparent;
}

.choices_inner_input input {
    padding: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 3px;
}


.choices__input {
    border: none !important;
    min-width: 10ch !important;
    /* margin-bottom: 0; */
    /* width: 100% !important; */

}

.choices__list--multiple .choices__item {
    background-color: #F7F7F7;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #47B649;
    font-family: DmSans-medium;
}

.choices__button img {
    width: 100%;
}

.choices__inner {
    border-radius: 35px;
}

.choices__inner:focus {
    border-radius: 35px;
}

.is-open .choices__inner {
    border-radius: 35px !important;
}

.choices__list {
    border-radius: 12px !important;
    top: 103% !important;
}


.prof-add-continue:hover {
    border: 1px solid #47B649;
    color: #47B649;
    background-color: #47B64929;
}

.registration-services-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Profile info add-1 end */

/* Profile info add-2 start */

.maas-min-max-add {
    display: flex;
    align-items: center;
    gap: 10px;
}

.maas-min-add,
.maas-max-add {
    width: 50%;
    padding: 9px 12px;
}

/* Profile info add-2 end */

/* Profile info add-3 start */


.image-upload-section {
    gap: 1rem;
}

.image-box {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
}

.upload-placeholder {
    width: 120px;
    height: 120px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.upload-placeholder i {
    font-size: 24px;
    margin-bottom: 5px;
}


/* Profile info add-3 end */

/* Style the overall Fancybox overlay */
#custom-layout {
    border-radius: 24px;
    padding: 20px;
}

.custom-fancybox-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 750px;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
}

.custom-fancybox-box .delete {
    align-self: flex-start;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #FFF2F1;
    border-radius: 35px;
    cursor: pointer;
    gap: 10px;
    transition: all .3s;

}

.fancybox-content {
    padding: 20px 25px;
}


.custom-fancybox-box .delete:hover {
    background-color: #ffdcda;
}

.custom-fancybox-box .delete p {
    margin-bottom: 0;
    color: #E96F6F;
}

.custom-fancybox-box .delete img {
    width: 30px;
}

.custom-fancybox-image {
    width: 100%;
    height: 410px;
    border-radius: 12px;
    object-fit: cover;
}

.custom-fancybox-text {
    width: 100%;
    font-family: sans-serif;
    color: green;
}

.custom-fancybox-text p {
    padding: 3px 15px;
    font-size: .8em;
    border-radius: 35px;
    background-color: #F7F7F7;
    color: #909090;
}

.custom-fancybox-text h2 {
    margin-top: 0;
    color: #333;
}

.custom-fancybox-text .fa-xmark {
    width: 25px;
    height: 25px;
    background-color: white;
    display: flex;
    align-items: center;
    border: 1px solid #909090;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    color: #909090;

}

.fancybox-slide--html .fancybox-close-small {
    top: 10px;
    right: 10px;
    border-radius: 12px;
    padding: 5px !important;
}


/* create new job start */
/* Form addımı (1 Elan başlığı) */
.ijob-image-upload-section {
    gap: 1rem;
}

.image-box {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
}

.upload-job-image {
    width: 120px;
    height: 120px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.upload-placeholder i {
    font-size: 24px;
    margin-bottom: 5px;
}

.form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 25px;
    width: fit-content;
    margin-bottom: 20px;
    margin: 20px 0;
}

.form-step span {
    font-family: DMSans-regular;
    background-color: #d1f3d1;
    color: #2c7a2c;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 12px;
    font-size: 16px;
}

.form-step p {
    font-family: DMSans-regular;
    margin: 0;
    font-weight: 500;
}

.form-fields {
    border: 1px solid rgb(202, 202, 202);
    padding: 30px;
    border-radius: 12px;
}

/* Açıqlama mətni */
.form-fields span {
    display: block;
    color: #555;
    margin-bottom: 20px;
}

.form-fields label {
    margin: 30px 0 10px 0;
    font-family: DmSans-regular;
}

.form-fields input {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 35px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-fields input:focus {
    border-color: #28a745;
}

/* Textarea */
.form-fields textarea {
    width: 100%;
    height: 100px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-fields textarea:focus {
    border-color: #28a745;
}

/* Davam et düyməsi */
.form-fields button[type="submit"] {
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.form-fields button[type="submit"]:hover {
    background-color: #218838;
}

.back .fa-arrow-left {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 12px;
    background-color: #47B64929;
    color: #2CAE2F;
    border-radius: 35px;
    cursor: pointer;
    transition: all .3s ease;
}

.form-fields ul li {
    list-style-type: disc;
    font-family: DmSans-medium;
}

.form-fields ul {
    margin: 30px 0 10px 0;
}

.form-fields ul span {
    font-family: DmSans-regular;
}

/* create new job end */

/* Profile company Info start */

.maas-company {
    padding: 10px;
}

/* Profile company Info end */





/* MY REQUESTS START */


.job-item .job-card {
    padding: 18px;
}

.job-item .job-title {
    font-size: 22px;
    font-weight: 500;
}

.job-item button {
    background-color: #47B649;
    border: 1px solid #47B649;
}

.job-item button:hover {
    border: 1px solid #47B649;
    background-color: #47B64929;
    color: #47B649;
}


.page-circle {
    width: 36px;
    height: 36px;
    margin-top: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: #fff;
    color: #47B649;
    font-weight: 500;
    font-size: 18px !important;
    border: 1px solid #47B649 !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none;
    padding: 0;
}

.page-circle:hover {
    border: 1px solid #47B649;
    background-color: #47B64929;
    color: #47B649;
}


.page-item.active .page-circle {
    background-color: #47B649;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(71, 182, 73, 0.2);
}

.my-requests-title {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.my-requests-title p {
    color: #919191;
    margin: 0;
}

.my-requests-title .new-job {
    border: none;
    border-radius: 35px;
    background-color: #47B649;
    color: white;
    padding: 10px 20px;
    transition: all .3s;
}

.my-requests-title .new-job:hover {
    background-color: #1e7e34 !important;
}

.toggle-requests {
    display: flex;
    align-items: center;
    padding: 18px 18px 0 0;
    border-bottom: 1px solid #ECECEC;
}

.toggle-requests::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.toggle-requests button {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    padding: 15px 18px;
    transition: .3s ease;
    border-bottom: 1px solid #ECECEC;
    white-space: nowrap;
    color: #47B649 !important;
}

.oxunmamis {
    background-color: #47B649;
    border: 3px solid #47B64966 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.toggle-requests .nav-link.active {
    background-color: #47B64914;
    border-bottom: 2px solid #47B649 !important;
}


.job-listings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-listings-row {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.job-listings-col {
    flex: 1;
}

.job-posting-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.job-posting-card .go-to-chat {
    width: 45px;
    height: 45px;
    border: 2px solid #ececec;
    border-radius: 100%;
    padding: 7px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.job-posting-card .go-to-chat img {
    width: 100%;
}

.job-posting-card .go-to-chat:hover {
    background-color: #e2efe2;
}

.job-posting-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 1024.9px) {


    .toggle-requests {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 576px) {

    .job-header .bookmark-announcement {
        position: absolute;
        top: 10px;
        right: 10px;

    }

    .job-header .announcement-icons {
        width: 100%;
        height: fit-content;

    }

    .map-announcement {
        padding: 0;
        white-space: nowrap;
    }

    .job-header .announcement-buttons {
        display: flex;
        flex-direction: row !important;
    }

    .job-header .announcement-buttons button {
        font-size: .8em;
        padding: 8px 10px;

    }
}

.job-header-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.position-title {
    font-size: 20px;
    color: #222222;
    font-weight: 500;
    margin: 0;
}

.posting-date {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.job-description-text {
    color: #414141;
    font-size: 16px;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    height: 80px;
    padding: 0;
    margin: 0;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: auto !important;

}

.company-info-section {
    margin-bottom: 15px;
}

.sender-label {
    font-size: 16px;
    color: #222222;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    color: #838383;
    font-size: 16px;
}

.tech-corp-icon {
    background-color: #dc2626;
}

.innovate-tech-icon {
    background-color: #2563eb;
}

.global-tech-icon {
    background-color: #0284c7;
}

.skills-requirements-section {
    margin-bottom: 1.5rem;
}

.required-skills-label {
    font-size: 0.875rem;
    color: #222222;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.technology-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background-color: #F7F7F7;
    color: #838383;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.experience-indicator,
.view_more {
    color: #16a34a;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 1px solid #47B649;
    cursor: pointer;
}


.action-buttons-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ECECEC;
}

.action-buttons-row .message {
    display: flex;
    align-items: center;
    transition: all .3s;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background-color: #F7F7F7;
    padding: 10px 25px;
    border-radius: 35px;
    width: 40px;
    height: 40px;
}

.action-buttons-row .message img {
    width: 30px;
}

.req-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.primary-action-btn {
    background-color: #222222;
    color: white;
    border: none;
    padding: 0.625rem 1.8rem;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;

}


.secondary-action-btn {
    background-color: #47B649;
    color: white;
    border: none;
    padding: 0.625rem 1.8rem;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
}

.bookmark-action-btn {
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    padding: 0.625rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.bookmark-action-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #47B649;
}

@media (max-width: 768px) {
    .job-listings-row {
        flex-direction: column;
    }
}

nav[aria-label="Page navigation"],
nav[aria-label="Page navigation-mene-gelen"] {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#job-item-req {
    position: relative;
    min-height: 1200px;
    padding-bottom: 50px;
}


#req-come-me {
    position: relative;
    min-height: 900px;
}

.pagination-wrapper {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}


.skill-tag {
    background-color: #F7F7F7;
    color: #838383;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}


/* .modal-dialog {
    min-width: 600px;
    min-height: 260px;
} */


@media (max-width:600px) {
    .modal-dialog {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;

    }


    .modal,
    .modal-dialog {
        max-width: 95% !important;
        width: 95% !important;
    }
}

.action-buttons-row-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 10px;
}

.modal-map-btn {
    background-color: transparent;
    border: 1.5px solid #47B649;
    color: #47B649;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.modal-map-btn:hover {
    background-color: #47B64914;
    color: #47B649;
}

.req-buttons {
    display: flex;
    gap: 12px;
}

.primary-action-btn-modal {
    background-color: #222222;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.secondary-action-btn-modal {
    background-color: #47B649;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}


#acceptedModal input[type="text"],
#acceptedModal input[type="date"] {
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 15px 18px;
    font-size: 16px;
}


#acceptedModal .btn-success {
    background-color: #47B649;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 500;
    transition: 0.3s;
}

#acceptedModal .btn-success:hover {
    background-color: #369c3c;
}

#acceptedModal .modal-title {
    color: #47B649;
    font-size: 24px;
    font-family: DmSans-regular;
}

#acceptedModal .modal-body {
    color: #838383;
    font-size: 16px;
    font-weight: 400;
}

#acceptedModal .form-label {
    color: #222222;
    font-size: 16px;
    font-weight: 400;
}


/* MY REQUESTS END */

.img-preview {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    margin: 0 auto 5px;
}


.prof-img-change-title {
    text-decoration: underline;
    color: #828282;
}


/* elanlar start */
.my-job-detail-top {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.my-job-detail-top button {
    color: black;
    border: none;
    background-color: white;
    border-radius: 35px;
    padding: 10px 25px;
}

.job-statuses {
    display: flex;
    align-items: center;
    gap: 20px;
}

.applications_to_me {
    padding: 10px 25px;
    color: #47B649;
    border: 1px solid #47B649;
    border-radius: 35px;
    background-color: #E2EFE2;
    cursor: pointer;
}

.job-statuses .job-status-btn {
    position: relative;
}

.job-statuses .job-status-btn:before {
    position: absolute;
    top: 50%;
    transform: translate(-15px, -50%);
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.job-statuses .job-status-btn.in-progress:before {
    background-color: #F2994A;
}

.job-statuses .job-status-btn.active:before {
    background-color: #47B649;
}

.job-statuses .job-status-btn.expired:before {
    background-color: red;
}

.job-status-btn.expired {
    background-color: white;
    border-radius: 35px;
    padding: 5px;
    padding-left: 20px;
}

.job-status-btn.expired button {
    background-color: #47B649;
    color: white;
    padding: 8px 25px;
}

.job-status-btn.expired span {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 2px solid #ececec;
}

/* elanlar end */

/* subscriptions start */

.subscriptions-top {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.subscriptions-top button {
    background-color: #47B649;
    color: #FFFFFF;
    border: none;
    border-radius: 35px;
    padding: 10px 25px;
}

.subscriptions-top span {
    font-family: Dmsans-regular;
    color: #919191;
}

@media (max-width: 576px) {
    .subscriptions-top {
        flex-direction: column;
        gap: 20px;
    }
}

.subs-body {
    background-color: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 0 0 1px #f2f2f2;
}

.plan-badge {
    margin: 10px 0 40px;
}

.active-plan {
    display: inline-block;
    color: #28a745;
    font-size: 15px;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: DmSans-regular;
    border: 1px solid #c6e6d1;
}

.price-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.price-tag {
    display: inline-block;
    background-color: #f1f3f5;
    color: #333;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.features p {
    font-style: italic;
    margin-bottom: 10px;
}

.features ul {
    padding-left: 20px;
    margin: 0;
    line-height: 2;
}

.features li {
    margin-bottom: 6px;
    font-size: 15px;
    list-style-type: disc;
}


.subscriptions-plan-top {
    position: relative;
    padding-top: 40px;
}

.subscriptions-plan-top h2 {
    margin-left: 9px;
}

.subscriptions-plan-top span {
    font-family: Dmsans-regular;
    color: #919191;
    display: block;
    margin-bottom: 40px;
}

@media (min-width: 769px) {

    .prices.plan-card {
        padding-bottom: 100px;
    }
}

.plan-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.plan-card.current-plan {
    background-color: #F7F7F7 !important;
}

.plan-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.plan-card ul li {
    list-style: disc;
}

.plan-card .price-tag {
    display: inline-block;
    background-color: #f1f3f5;
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 15px;
}

.plan-card .btn {
    border-radius: 35px;
    background-color: #47B649;
    border: none;
}

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.plan-card .bg-gray {
    background-color: gray;
}

.price-tag {
    display: inline-block;
    background-color: #f1f3f5;
    color: #000;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 15px;
}

.payment-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    height: 314px;
}

.payment-card del {
    font-size: 16px;
}

.payment-card .btn {
    background-color: #47B649;
    color: white;
}

.payment-card .btn:hover {
    background-color: #16a34a;
}

.professional-plan ul li {
    list-style: disc;
}

.total {
    font-family: DmSans-medium;
    color: #47B649;
}

@media (max-width: 576px) {
    .first-card-top {
        flex-direction: column;
    }

    .price-tag {
        margin-bottom: 0;
    }
}



/* subscriptions end */

/* Tasks start */


.task-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all .3s;
}

.task-card:hover {
    transform: translateY(-10px) scale(1.01);
}

.job-person {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
}

.task-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.edit-btn {
    background-color: #e3f2fd;
    color: #1976d2;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.status-dropdown {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 12px;
    position: absolute;
    top: 100%;
    right: -15px;
    margin-top: 8px;
    width: 180px;
    z-index: 100;
    display: none;
    /* default hidden */
}

.status-option {
    text-align: center;
    padding: 8px 0;
    border: 1px solid #eee;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.status-option:last-child {
    margin-bottom: 0;
}

.status-option.blue {
    color: #0284c7;
}

.status-option.orange {
    color: #f97316;
}

.status-option.green {
    color: #16a34a;
}

.status-option:hover {
    background: #f1f5f9;
}

.task-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    height: 44px;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: auto !important;
}

.task-details {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.detail-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: black;
    margin-bottom: 16px;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: black;
}

.sender-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.sender-avatar.purple {
    background-color: #6366f1;
}

.sender-avatar.blue {
    background-color: #3b82f6;
}

.sender-name {
    font-size: 14px;
    color: black;
    font-weight: 500;
}

.apply-btnn {
    background-color: #47B649;
    color: white;
    border-radius: 35px;
    padding: 7px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    border: 1px solid #47b649;
}

.apply-btnn:hover {
    background-color: #218838;
}

.edit-btn {
    position: relative;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edit-btn .fa-angle-down {
    background-color: white;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.edit-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(10px, -50%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #2D9CDB;

}

.edit-btn:hover {
    background-color: #bbdefb;
}

@media (max-width: 768px) {
    .task-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.active-btn {
    background-color: #47B64914;
    color: #47B649;
    border-bottom: 1px solid #47B649 !important;
}

.task-btn-green {
    background-color: #E5F5EC;
    color: #16A34A;
}

.task-btn-green:before {
    background-color: green;
}

.task-btn-orange {
    background-color: #FDF2E9;
    color: #F2994A;
}

.task-btn-orange:before {
    background-color: orange;
}

.task-btn-red {

    background-color: #ffdbd9;
    color: #FA574E;
}

.task-btn-red:before {
    background-color: #FA574E;
}

.saved-bookmark {
    color: orange;
}

/* Tasks end */

/* Documents start */

.documents-area {
    min-height: 600px;
}

.doc-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-title button {
    background-color: #47B649;
    color: #fff;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
}

.doc-title button:hover {
    border: 1px solid #47B649;
    color: #47B649;
}

.doc-title button:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.doc-content {
    border: 1px solid #ECECEC;
    border-radius: 20px;
    margin-top: 20px;
    padding: 30px;

}

.empty-doc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.doc-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}


.doc-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin-top: 30px;
}

.doc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ECECEC;
}

.doc-number {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.edit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #47B64929;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.edit-icon img {
    width: 24px;
    height: 24px;
}


.doc-status {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.doc-status.pending {
    background-color: #F7F7F7;
    color: #F2994A;
}

.doc-status.accepted {
    background-color: #f7f7f7;
    color: #47b649;
}

.status-dot {
    font-size: 8px;
}

.doc-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.doc-info {
    flex: 1;
}

.doc-info .label {
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

.doc-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.doc-image img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
}


#editedModalLabel {
    color: #47B649;
    font-size: 24px;
    font-weight: 400;
}

.edited-body input {
    padding: 13px 20px;
    border-radius: 40px;
}

.edited-body input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #28a745;
    background-color: white;
}

.edit-doc-title {
    border-bottom: 1px solid #ECECEC;
}

.edit-docs-close {
    font-size: 14px;
    border: 1px solid #828282;
    border-radius: 8px;
}

.edit-docs-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

.upload-img-edit {
    border: none;
    overflow: hidden;
}

.upload-img-edit img {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
    object-fit: cover;
}

.edited-body button {
    background-color: #47B649;
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 40px;
    padding: 10px 25px;
}

.edited-body button:hover {
    background-color: #fff;
    color: #47B649;
    border: 1px solid #47B649;
}

.edited-body button:focus {
    background-color: #fff !important;
    color: #47B649 !important;
    border: 1px solid #47B649 !important;
}

/* Documents end */


/* CALENDAR start */
.calendar-container {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
    max-width: 90vw;
    position: absolute;
    top: 70px;
    z-index: 10;
    right: 0;
}

.calendar-container .close {

    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: DmSans-light, sans-serif;
    background-color: transparent;
    border: 1px solid rgb(201, 201, 201);
    color: rgb(178, 178, 178);
    border-radius: 8px;
    padding: 5px 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.nav-arrow:hover {
    background-color: #f5f5f5;
}

.month-year {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day-header {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    padding: 8px 0;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
    position: relative;
}

.day-cell:hover {
    background-color: #f5f5f5;
}

.day-cell.other-month {
    color: #ccc;
}

.day-cell.selected {
    background-color: #4CAF50;
    color: white;
}

.day-cell.selected:hover {
    background-color: #45a049;
}

/* CALENDAR end */

/* customer profile  */
.edit-customer-profile-save {
    padding: 10px 17px;
    border: 1px solid rgb(207, 207, 207);
    border-radius: 35px;
    background-color: #47B649;
    white-space: nowrap;
    color: white;

}



/* About page start */
/* ===== Banner Image ===== */
.about-banner-img {
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.about-banner-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: all .3s;
}

.about-banner-img img:hover {
    transform: scale(1.02);
}

/* ===== Section Headings and Text ===== */
.about-texts {
    padding: 0;
}

.about-texts h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.who-we-are {
    border-radius: 12px;
    background-color: #F9F9F9;
}

.who-we-are h2 {
    font-family: DmSans-medium;
    font-size: 35px;
}

.who-we-are p {
    color: #333333;
    font-family: DmSans-regular;
}

.about-texts h2 span {
    color: #45a049;
    /* Green accent */
}

.about-texts {
    padding: 40px;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-texts p {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    font-family: DmSans-regular;
}

/* ===== Wrapper Containers ===== */
.about-texts,
.about-img {
    border-radius: 12px;
    max-height: 382px;
}

/* ===== Image Inside Content ===== */
.about-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-img.first {
    padding-left: 30px;
    padding-right: 0;
}

.about-img.second {
    padding-right: 30px;
    padding-left: 0;
}


/* ===== Margin for Sections ===== */
.container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ===== Horizontal Rule Styling ===== */
hr.my-4,
.my-5 {
    border: none;
    margin: 2rem 0;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .about-texts {
        overflow-y: auto;
        padding: 10px;
    }

    .about-texts h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .about-banner-img,
    .about-img.first,
    .about-img.second {
        margin: 20px 0;
        padding-right: 0;
        padding-left: 0;
    }

    .about-texts h2 {
        font-size: 22px;
    }

    .about-rows {
        padding: 0 20px;
    }

    .about-texts p {
        font-size: 15px;
    }
}

@media (max-width: 525px) {
    .about-row {
        height: 40vh;
        padding: 0 10px;
    }

    .about-banner-img,
    .about-banner-img img {
        height: 100%;
    }
}

/* About page end */


/* Fancy Box */
.fancybox-button {
    display: none;
}

.fancybox-infobar {
    display: none;
}

.fancybox-button--arrow_left,
.fancybox-button--arrow_right {
    width: 32px;
    height: 32px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #7c7c7c;
    /* font-size: 14px; */
    transition: 0.3s ease;
    padding: 0;
}

.fancybox-button--arrow_left:hover,
.fancybox-button--arrow_right:hover {
    color: green;
}

/* Fancy Box */

/* Chat Start */

.chat-container {
    border: 1px solid #ECECEC;
    border-radius: 24px;
    max-width: 95%;
    margin: 1rem auto;
    height: 84vh;
    overflow: hidden;
    position: relative;
}

.chat-container .chat-top {
    display: flex;
    flex-direction: column;
}

.chat-container .chat-top h1 {
    color: #222222;
    font-family: DmSans-medium;
}

.chat-container .chat-top p {
    color: #909090;
    font-family: DmSans-regular;
}

.chat-container .chat-top .search-group {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.chat-container .chat-top .search-group .chat-search {
    width: 100%;
    position: relative;
}

.chat-container .chat-top .search-group .chat-search input {
    width: 100%;
    border: 1px solid #ECECEC;
    border-radius: 35px;
    padding: 10px 40px;
}

.chat-container .chat-top .search-group .chat-search i {
    position: absolute;
    color: #A3A3A3;
    font-size: 1.1em;
    top: 50%;
    left: 0;
    transform: translate(15px, -50%);

}

.chat-container .chat-people {
    flex: 1 1 auto;
    max-height: 67%;
    /* optional if using flex */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;

}

.chat-container .chat-people .chat-person {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding: 5px; */
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    padding: 15px 5px;
    border-bottom: 1px solid #ececec;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.chat-container .chat-people .chat-person:hover {
    background-color: #ECECEC;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.chat-container .chat-people .chat-person .chat-profile-img {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 9;
    border-radius: 100%;
    /* overflow: auto; */
}

.chat-container .chat-people .chat-person .chat-profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.chat-container .chat-people .chat-person .chat-profile-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    width: 17px;
    height: 17px;
    background-color: #47B649;
    border: 3px solid white;
    z-index: 10;
}

.chat-container .chat-people .chat-person .chat-info {
    width: 83%;
}

.chat-container .chat-people .chat-person .chat-info p {
    color: #414141;
    font-family: DmSans-regular;
    height: 24px;
    padding: 0;
    margin: 0;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: auto !important;

}

.chat-container .chat-people .chat-person .chat-info h4 {
    color: #222222;
    font-family: DmSans-medium;
    font-size: .95rem;
}

.chat-container .chat-people .chat-person .chat-info .chat-name-time p {
    font-size: .85rem;
    color: #909090;
}

.right-side {
    background-color: #F7F7F7;
    /* padding: 2rem; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 3px solid #ECECEC;
}

.chat-header {
    padding: 20px 24px;
    border-bottom: 1px solid #ECECEC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info h3 {
    font-size: 18px;
    font-family: DmSans-medium;
    color: #333;
    margin-bottom: 4px;
}

.user-info p {
    font-size: 14px;
    color: #6c757d;
    font-family: DmSans-regular;
    margin-bottom: 0;
}

.complete-btn {
    border: 1px solid #28a745;
    border-bottom: 3px solid #28a745;
    color: white;
    font-family: DmSans-regular;
    color: #47B649;
    padding: 8px 16px;
    background-color: white;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all .3s;
    white-space: nowrap;
}

.complete-btn:hover {
    background-color: #47B649;
    color: white;
}

.task-time {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
}

.task-time p {
    font-family: dmsans-regular;
    color: #828282;
    margin-bottom: 0;
}

.task-time p span {
    color: #47b649;
}

.chat-messages {
    flex: 1;
    padding: 5px 24px;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.message {
    max-width: 70%;
    position: relative;
}

.message:hover {
    background-color: transparent;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.received .message-bubble {
    background-color: #28a745;
    color: white;
}

.message.sent .message-bubble {
    background-color: #FFFFFF;
    color: #333;
}

.message-time {
    font-size: 11px;
    color: #6c757d;
    margin-top: 4px;
    text-align: right;
}

.message.received .message-time {
    text-align: left;
}

.message-input-container {
    background-color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    position: relative;
    gap: 12px;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
}

.dropdown-menu.image-previews {
    display: none;
    /* max-height: 250px; */
    min-width: 100px;
    justify-content: space-evenly;
    top: -114px;
}

.message-input {
    flex: 1;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    border: none;
}

.message-input:focus {
    border-color: #28a745;
    background-color: #fff;
}

.attachment-btn {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    color: #6c757d;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.attachment-btn .send-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;

}

.attachment-btn label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.attachment-btn img {
    width: 100%;
}

.attachment-btn:hover {
    background-color: #f8f9fa;
}

.send-btn {
    background-color: white;
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.send-btn img {
    width: 100%;
}

.send-btn:hover {
    background-color: #218100;
}

.send-btn svg {
    width: 16px;
    height: 16px;
}

.no-btn:hover {
    background-color: gray !important;
    color: white;
}

.rating-modal-body img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
}

.rating-modal-body p {
    font-family: DmSans-regular;
    padding: 5px 10px;
    border-radius: 35px;
    color: #47B649;
    background-color: #F7F7F7;
}

.rating-modal-body textarea {
    width: 100%;
    height: 100px;
}

.rating-modal-body label {
    align-self: start;
    font-family: DmSans-regular;
    overflow: initial !important;
}

.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 8px;
}

.star {
    font-size: 2.5rem;
    color: #ddd;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    top: -25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.star:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

empty-doc .star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.star.active:hover {
    transform: scale(1.3);
}

.rating-toast {
    border-color: #47B649;
    width: 478px;
    color: #47B649;
    border-bottom: 3px solid #47B649;
    border-radius: 12px;
    padding: 10px;
    background-color: #F1FAF1;
}

.right-side-empty {

    background-color: #F7F7F7;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.right-side-empty p {
    font-style: italic;
    color: #222222;
    width: 50%;
    text-align: center;
}

.right-side-empty button {
    color: white;
    border: none;
    background-color: #47B649;
    padding: 10px 25px;
    border-radius: 35px;
    transition: all .3s;
}

.right-side-empty button:hover {
    background-color: #1e7e34;
}


.chat-people-empty {
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.chat-people-empty button {
    color: gray;
    border: none;
    background-color: #ececec;
    padding: 10px 25px;
    border-radius: 35px;
    transition: all .3s;
    cursor: initial;
}

.chat_right_active {
    display: block !important;
}

.chat_left_active {
    display: none !important;
}

.back_to_chat {
    position: relative;
    top: -10px;
    color: #47B649;
    left: -8px;
    white-space: nowrap;
}

.back_to_chat p,
.fa-arrow-left-long {
    color: #47B649;

}

.link-preview {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    max-width: 390px;
    text-decoration: none;
    background-color: #F7F7F7;
    margin-top: 5px;
    padding: 10px;
}

.preview-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.link-preview a {
    text-decoration: none;
    color: inherit;
}

.preview-details {
    padding: 10px;
}

.preview-title {
    font-size: 15px;
    font-weight: 600;
}

.preview-description {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
    height: 36px;
    padding: 0;
    margin: 0;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: auto !important;
}

.preview-url {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    display: block;
}



/* chat responsive start */

@media (max-width: 991.9px) {
    .chat-right-side-resp {
        display: none;
    }

    .chat-container .chat-people .chat-person .chat-info {
        width: 90%;
    }

    .message-bubble {
        padding: 8px 13px;
        line-height: 1;
        font-size: .8em;
    }

    .complete-btn {
        padding: 8px 12px;
    }

    .link-preview {
        max-width: 400px !important;
    }

    .preview-description {
        height: 28px !important;
    }

}

@media (min-width: 991.9px) {
    .back_to_chat {
        display: none;
    }

    .chat-left-side {
        display: block !important;
    }
}

@media (max-width: 425.9px) {

    .user-info p,
    h3 {
        width: fit-content;
    }

    .complete-btn {
        margin-left: -25px;
    }

    .message {
        max-width: 80% !important;
    }

    .message-bubble .image-group img {
        width: 65px !important;
        height: 65px !important;
    }

    .preview-img {
        height: 90px !important;
    }

    .dropdown-menu.image-previews {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .chat-container .chat-people .chat-person {
        gap: 5px;
    }

    .chat-container .chat-people .chat-person .chat-profile-img {
        width: 56px;
        height: 53px;
    }

    .right-side-empty p {
        width: 90%;
    }

}

/* chat responsive end */

/* Chat end */
