.job-card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.job-card-box {
    background-color: #fff;
    padding: 24px;
    width: 100%;
    position: relative;
    height: 345px;
}
.job-card-title {
    font-family: "Almoni" !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    border-bottom: 1px solid #0679b2;
    color: #0679b2;
    margin: 0;
    padding-bottom: 24px;
}
.job-card-description {
    color: #010123;
    font-family: "Almoni" !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0;
    margin-top: 16px;
}
.job-cart-button {
    position: absolute;
    bottom: 24px;
    left: 24px;
    border: 0;
    background: #f9d946;
    color: #000;
    font-family: "Almoni" !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}
.job-cart-button:hover {
    background: #0679b2;
    color: #fff;
}
.job-cart-button:focus {
    background: #0679b2;
    color: #fff;
}




/* popup style */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1000;
}
/* Popup container style */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 80%;
    max-width: 1404px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1001;
}
/* Popup content */
.popup-content {
    display: flex;
}
.popup-right-col {
    width: 55%;
    background-color: #94acdf;
    padding: 40px;
}
.popup-left-col {
    width: 45%;
    background-color: #0679b2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup-title {
    color: #0679B2;
    font-family: "Almoni" !important;
    font-size: 36px !important;
    margin: 0;
}
.popup-description {
    color: #010123;
    font-family: "Almoni" !important;
    font-size: 16px !important;
    margin: 0;
}
.popup-more-info {
    color: #010123;
    font-family: "Almoni" !important;
    font-size: 16px !important;
    margin: 0;
}
.popup-form-title {
    color: #fff;
    font-family: "Almoni" !important;
    font-size: 44px !important;
    font-weight: 600 !important;
}
.popup-form-description {
    color: #fff;
    font-family: "Almoni" !important;
    font-size: 24px !important;
    font-weight: 400 !important;
}