﻿@font-face {
    font-family: yekan;
    src: url(../../../Assets/fonts/yekan/YekanRegular.ttf);
    font-weight: 500;
}

@font-face {
    font-family: byekan;
    src: url(../../../Assets/fonts/yekan/BYEKAN.TTF);
    font-weight: 500;
}

.hero_title {
    font-size: 32pt;
    font-family: byekan !important;
}

.opacity_0 {
    opacity: 0;
    width: 0;
    height: 0;
    display: block;
}

.title {
    font-size: 24pt;
    font-family: byekan !important;
}

.text_lg {
    font-size: 18pt;
}

.text_md {
    font-size: 14pt;
}

.paraghrap {
    font-size: 12pt;
}

.text_sm {
    font-size: 11pt;
}

.text_xs {
    font-size: 10.5pt;
}

.text_justify {
    text-align: justify;
}

.text_center {
    text-align: center;
}

.text_bold {
    font-weight: bold;
}

.text_underline {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .title {
        font-size: 19pt;
    }

    .text_lg {
        font-size: 15pt;
    }

    .text_md {
        font-size: 13pt;
    }

    .paraghrap {
        font-size: 12pt;
    }

    .hero_title {
        font-size: 23pt;
    }
}

body {
    direction: rtl;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    font-family: yekan !important;
    box-sizing: border-box;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    margin: 0;
}

a {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

p {
    line-height: 2;
}

ul {
    list-style-type: none;
    padding: 0;
    line-height: 2;
}

button {
    border: none;
    cursor: pointer;
    border-radius: 6px;
    display: block;
}

textarea {
    width: 100%;
}

    input:focus,
    input:focus-visible,
    textarea:focus-visible {
        outline: none;
        box-shadow: none;
    }

.pointer {
    cursor: pointer;
}

.hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.flex_column {
    flex-direction: column;
}

.align_start {
    align-items: start;
}

.justify_evenly {
    justify-content: space-evenly;
}

.align_end {
    align-items: flex-end;
}

.align_center {
    align-items: center;
}

.justify_end {
    justify-content: flex-end;
}

.justify_between {
    justify-content: space-between;
}

.justify_around {
    justify-content: space-around;
}

.justify_center {
    justify-content: center;
}

.flex_wrap {
    flex-wrap: wrap;
}

.align_baseline {
    align-items: baseline;
}

.boxShadow {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.mx_sm {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.m_md {
    margin: 2rem;
}

.my_sm {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my_md {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.py_sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py_md {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py_lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p_0 {
    padding: 0 !important;
}

.px_lg {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py_xs {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.mx_lg {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mr_auto {
    margin-right: auto;
}

.section_space {
    margin-top: 9rem;
    margin-bottom: 9rem;
}

.mx_md {
    margin-left: 1rem;
    margin-right: 1rem;
}

.p_md {
    padding: 1rem;
}

.p_sm {
    padding: 0.5rem;
}

.p_lg {
    padding: 2rem;
}

.container {
    padding-left: 10%;
    padding-right: 10%;
}

@media (max-width: 1400px) {
    .container {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 900px) {
    .mx_md {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
    }

    .section_space {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .mx_lg {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .p_lg {
        padding: 1.5rem;
    }
}

.relative {
    position: relative;
}

.w_fit {
    width: -moz-fit-content;
    width: fit-content;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
}

.radius {
    border-radius: 16px;
}

.contact_info {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

    .contact_info .information {
        padding-top: 1rem;
        gap: 50px;
    }

        .contact_info .information > div {
            max-width: 32%;
        }

    .contact_info .mobile_menu,
    .contact_info .information_mobile {
        display: none;
    }

@media (max-width: 1200px) {
    .contact_info .information {
        gap: 10px;
    }

        .contact_info .information > div {
            max-width: 33%;
        }
}

@media (max-width: 900px) {
    .contact_info {
        align-items: center;
    }

        .contact_info img {
            height: 40px;
        }

        .contact_info .information {
            display: none !important;
        }

        .contact_info .information_mobile {
            display: flex;
            color: #099d8b;
        }
}

.contact_info .icon {
    position: relative;
    cursor: pointer;
    display: flex;
}

    .contact_info .icon svg {
        transition: 0.3s ease;
    }

    .contact_info .icon:hover .tooltip {
        display: block;
    }

.contact_info .tooltip {
    padding: 10px;
    position: absolute;
    width: 50vw;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    background-color: #ffffff;
    top: 40px;
    left: 50%;
    transform: translate(-10%);
    transform-style: preserve-3d;
    z-index: 300;
    font-size: 0.9em;
    display: none;
}

    .contact_info .tooltip:after {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        transform: rotate(45deg) translateX(-50%);
        background-color: #ffffff;
        left: 18px;
        top: -1px;
        z-index: 400;
    }

    .contact_info .tooltip:before {
        content: "";
        display: block;
        position: absolute;
        width: 10px;
        height: 10px;
        transform: rotate(45deg) translateX(-50%) translateZ(-1px);
        background-color: #ffffff;
        left: 18px;
        top: 0px;
        z-index: -1;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    }

header {
    position: sticky;
    top: 0;
    z-index: 9;
}

    header .nav {
        background-color: #099d8b;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
        color: #ffffff;
    }

        header .nav ul {
            gap: 40px;
        }

        header .nav .mobile_menu {
            display: none;
        }

@media (max-width: 1020px) {
    header .nav .desktop_menu {
        display: none !important;
    }

    header .nav .mobile_menu {
        display: block;
    }
}

header nav {
    position: sticky;
}

header .options {
    z-index: -1;
    gap: 1rem;
}

header a:hover,
header .active {
    color: #ff8f00;
}

header .menuItem {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 400;
    width: 300px;
    height: 100vh;
    padding: 4rem 1.5rem;
    background: #ffffff;
    color: #231f20;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

    header .menuItem .user_info {
        border-bottom: 1px solid rgba(9, 157, 139, 0.0588235294);
    }

    header .menuItem svg {
        color: #666666;
    }

    header .menuItem .active_menu,
    header .menuItem li:hover {
        background-color: rgba(9, 157, 139, 0.0588235294);
        border-radius: 16px 0 0 16px;
        border-right: 2px solid #87c7c6;
    }

        header .menuItem .active_menu a,
        header .menuItem .active_menu svg,
        header .menuItem li:hover a,
        header .menuItem li:hover svg {
            color: #099d8b !important;
        }

header .closeMenu {
    position: fixed;
    top: 1rem;
    left: 1rem;
}

header .menuToggle {
    display: block;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    header .menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }

    header .menuToggle input {
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        header .menuToggle input:checked ~ .menuItem {
            transform: translate(0);
        }

        header .menuToggle input:checked {
            width: 300px;
            height: 54px;
            z-index: 900;
            position: fixed;
        }

header .menu--right {
    position: sticky;
    top: 1rem;
    display: none;
}

@media (max-width: 1020px) {
    header .menu--right {
        display: block;
    }
}

header .menu--right .menuItem {
    right: 0;
    transform: translate(110%, 0);
}

    header .menu--right .menuItem li {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

        header .menu--right .menuItem li a:hover {
            padding-left: 5px;
        }

@keyframes text-slide-in {
    0% {
        transform: translateX(100px);
    }

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

header #searchbox {
    width: 0;
    opacity: 0;
    transition-duration: 0.4s;
    transition-timing-function: linear;
}

header .searchShow {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    opacity: 0;
    cursor: pointer;
}

    header .searchShow:checked ~ #searchbox {
        width: 100%;
        opacity: 1;
        padding: 0.5rem;
    }

header input::-moz-placeholder {
    text-align: right;
}

header input,
header input::placeholder {
    text-align: right;
}

.secondary_btn_outline {
    background-color: transparent;
    border: 3px solid #ff8f00;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
    min-width: 160px;
    transition-duration: 0.2s;
    transition-timing-function: linear;
}

    .secondary_btn_outline:hover {
        background-color: #ff8f00;
    }

.main_btn,
.secondary_btn {
    border-radius: 6px;
    color: #ffffff;
    min-width: 150px;
    text-align: center;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    transition: all 100ms linear;
    position: relative;
}

    .main_btn:active,
    .secondary_btn:active {
        box-shadow: inset 0 0 0 4px rgba(4, 59, 63, 0.4196078431);
    }

    .main_btn::before,
    .secondary_btn::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        border-radius: inherit;
        z-index: -1;
        top: 0;
        left: 0;
        transition: all 500ms ease-in-out;
        opacity: 0;
        animation: flash 100ms ease-in-out;
        transform: scaleX(1.4) scaleY(1.8);
    }

    .main_btn:hover::before,
    .secondary_btn:hover::before {
        opacity: 1;
        transform: scaleX(1.1) scaleY(1.3);
    }

@keyframes flash {
    0% {
        opacity: 1;
        transform: translate(45px);
    }

    100% {
        opacity: 0;
        transform: translate(0);
    }
}

.secondary_btn {
    background-color: #ff8f00;
}

    .secondary_btn::before {
        content: "";
        background-color: rgba(255, 143, 0, 0.1294117647);
    }

.main_btn {
    background-color: #099d8b;
}

    .main_btn::before {
        content: "";
        background-color: rgba(9, 157, 139, 0.0588235294);
    }

.spliter span {
    display: block;
    width: 42%;
    height: 2px;
    background-color: #099d8b;
    position: relative;
}

    .spliter span:first-child::before, .spliter span:last-child::before {
        content: "";
        width: 50px;
        height: 30px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEMAAAAgCAMAAAB+dDW1AAAARVBMVEUAAAAIm4cJnosJnYsJnYsInIoJnYwIm4oQn4AGmokInYoKnIsJnosJnIoInIoQn48InIsHnYwInYsJnYoJnYsLnowJnYu2fX2yAAAAFnRSTlMAIL/fn4DvQBAwYFDPkHAQv6/fsI9fbcOeRgAAAZJJREFUSMeVlN12hCAMhIUAgqBdd9t5/0et0boBWdTOhcePY8b8GLtP8pNJRPo7rmBftIBhaChYVZ1p/ImGEhoivI5HXxzxdGDpsFzc87m5yOsO7xyPRz1guIjhwfF/EOcTk9B98LDbXSQgg7ZJy4OlCCXomx4BUp/iWnLoL4Klp+kNA0BviHcS8WEY+pAA6dICfT71i45EjV3mfWgBncN02sqETDHLHz/F2NuaONLNo7Uz8d1ejSrg1MMCSHvhA7tM4pHDq6slGY+CKq0L4rf0sYLaYGyOkwBbHCSwkk4Ou0iT4+suW6WR6sW7Uh0Rqv5caKxb6kLJcGNUned5rdCrpdmnc9HIOqKYZi9zETjz+OIwMjGoMGnk2yrQ8Gh1QHLqcwgXHp0yYkGyuAeYrtY2WmPMlIBBGlXA7R+Ig5PkUALd/o893kAHGO44lEvBLTIZUPdfDz8DAjxydctBBugt71sBdSVaBnVcnpcxmoNc3CBhhU/PmsZ3v+uhSqg1zepzMY+1iOfYL6AE/imvlC+hrV9iWStOI1QfcwAAAABJRU5ErkJggg==);
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .spliter span:first-child::before {
        left: -1.3rem;
        top: -11px;
    }

    .spliter span:last-child::before {
        content: "";
        right: -1.3rem;
        top: -17.52px;
        transform: rotate(180deg);
    }

.spliter p {
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
    margin: 0 3rem;
    text-wrap: nowrap;
    display: block ruby;
    flex: 1 0 auto;
}

.main_back_light {
    background-color: rgba(9, 157, 139, 0.0588235294);
}

.secondary_back_light {
    background-color: rgba(255, 143, 0, 0.1294117647);
}

.box_image img {
    max-width: 32vw;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s linear;
    transition: all 0.3s linear;
}

    .box_image img:hover {
        transform: rotate3d(0.1, 0.1, 0.1, 0.8deg);
    }

.box_image::before {
    content: "";
    background-image: url("data:image/png;base64,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");
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 170px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 2;
    transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.box_image:hover::before {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .box_image::before {
        left: 3rem;
        width: 20%;
        height: 38%;
    }

    .box_image img {
        max-width: 75%;
        margin: auto;
        -o-object-fit: contain;
        object-fit: contain;
        display: block;
        height: auto;
    }

    .box_image .title {
        margin-top: 1rem;
    }
}

.box .box_image {
    transform: translateY(-4rem);
}

@media (max-width: 900px) {
    .box {
        flex-direction: column;
    }

        .box .box_image {
            transform: unset;
        }
}

@media (max-width: 765px) {
    .box > div {
        margin: 0;
    }
}

.blob_top_right::before {
    right: -5rem;
    top: -3rem;
}

.blob_bottom_left::before {
    left: -5rem;
    bottom: -3rem;
}

@media (max-width: 765px) {
    .blob_bottom_left::before {
        left: 0rem;
        bottom: -1rem;
    }
}

.main_list {
    list-style-type: circle;
    list-style-position: inside;
}

    .main_list li::marker {
        color: #099d8b;
    }

footer .items {
    background-image: url(../../../Assets/images/footer_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    footer .items::before {
        content: "";
        background: rgba(15, 80, 72, 0.7882352941);
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
    }

    footer .items .contact_us svg {
        border: 1px dashed #ffffff;
        border-radius: 50%;
        padding: 0.3rem;
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    footer .items .contact_us p {
        width: 78%;
    }

    footer .items .last_blogs h4 {
        color: #ff8f00;
        text-align: right;
    }

    footer .items .last_blogs img {
        width: 90px;
        height: 80px;
        border-radius: 16px;
        object-fit: cover;
    }

    footer .items .last_blogs p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: anywhere;
    }

    footer .items .newsletter_member {
        border-radius: 40px;
        width: 100%;
        max-width: 280px;
        margin: auto;
        margin-bottom: 2rem;
        color: #ffffff;
        background-color: #ff8f00;
    }

        footer .items .newsletter_member button {
            background-color: #ffffff;
            padding: 0.5rem;
            width: 50px !important;
            height: 50px;
            border-radius: 50%;
        }

        footer .items .newsletter_member input {
            border: none;
            padding: 0.5rem 1rem;
            background-color: transparent;
            width: 80%;
            color: #ffffff;
        }

            footer .items .newsletter_member input::-moz-placeholder {
                color: #ffffff;
            }

            footer .items .newsletter_member input::placeholder {
                color: #ffffff;
            }

            footer .items .newsletter_member input:focus, footer .items .newsletter_member input:focus-visible {
                outline: unset;
            }

    footer .items .socials a {
        border: 1px solid #ffffff;
        border-radius: 50%;
        padding: 0.5rem;
    }

        footer .items .socials a svg {
            width: 20px;
            height: 20px;
        }

        footer .items .socials a:hover {
            border-color: #ff8f00;
        }

    footer .items > div {
        max-width: 24%;
    }

@media (max-width: 900px) {
    footer .items > div {
        max-width: 48% !important;
    }
}

@media (max-width: 580px) {
    footer .items > div {
        text-align: center;
        width: 100%;
        max-width: 100% !important;
    }
}

footer .copyRight {
    background-color: #099d8b;
}

    footer .copyRight ul {
        gap: 30px;
    }

@media (max-width: 900px) {
    footer .copyRight {
        flex-direction: column-reverse;
    }

        footer .copyRight ul {
            margin-bottom: 0.5rem;
        }
}

footer h5 {
    border-bottom: 2px solid #ff8f00;
}

@media (max-width: 580px) {
    footer h5 {
        text-align: center;
        width: 100% !important;
    }

    footer > div {
        justify-content: center !important;
    }

    footer .contact_us p {
        text-align: right;
        width: 80% !important;
    }

    footer .last_blogs > div {
        justify-content: center;
    }
}


body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
}

.job-application-form-container {
    width: 80%;
    max-width: 700px;
    background-color: #099d8c0e;
    border: 1px solid #099D8B;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.job-application-form-title {
    color: #333;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.job-application-form-description {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-application-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-application-form-group {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.job-application-form-group-upload {
    display: flex;
    width: 48%;
    justify-content: space-between;
}

.job-application-form-label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #099D8B;
}

.job-application-form-label-upload {
    font-size: 16px;
    color: #099D8B;
    text-align: center;
    align-self: center;
}

.job-application-form-input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #099D8B;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.job-application-form-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-application-form-upload-input {
    display: none;
}

.job-application-form-upload-label {
    display: flex;
    align-items: center;
    background-color: #099d8c3b;
    border: 1px solid #099D8B;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.job-application-form-upload-icon {
    font-size: 18px;
    width: 1.5rem;
    height: 1.5rem;
}

.job-application-form-button {
    width: 40%;
    margin-right: auto;
    padding: 12px;
    background-color: #f57c00;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}


    .job-application-form-button:hover {
        background-color: #e67e22;
    }

@media (max-width: 768px) {
    .job-application-form-group {
        width: 100%;
    }

    .job-application-form-upload-label {
        width: 100%;
        justify-content: center;
    }

    .job-application-form-group-upload {
        width: 100%;
    }

    .job-application-form-upload-label-upload {
        width: 100%;
        justify-content: center;
    }

    .job-application-form-button {
        width: 100%;
    }
}

.job-application-form-group.order-confirm {
    width: 100%;
}

.product-view-cart a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: underline;
}

    .product-view-cart a:hover {
        color: #ff9800;
    }

.product-trash-icon {
    width: 24px;
    height: 24px;
}

.product-price {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.product-amount {
    font-size: 1.3rem;
}

.product-amount-total {
    font-size: 1.3rem;
    font-weight: 800;
}
.page_title {
    width: 100%;
    color: #ffffff;
    min-height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../../../Assets/images/Rectangle_120.jpg);
}

    .page_title p {
        background-color: #ff8f00;
        padding: 0.5rem 2rem;
        margin-top: 1.5rem;
        border-radius: 20px 20px 0 0;
    }

@media (max-width: 900px) {
    .page_title {
        min-height: 20vh;
    }
}

.page_title::before {
    content: "";
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.32) 1.74%, rgba(0, 0, 0, 0.42) 50.94%, rgba(0, 0, 0, 0.29) 101.72%);
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}

/* Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.product-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: absolute; /* یا fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .product-modal-content p {
        margin-bottom: 20px;
    }

.product-view-cart-modal-btn {
    background-color: green;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

    .product-view-cart-modal-btn:hover {
        background-color: forestgreen;
    }

.product-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
    color: #aaa;
}

    .product-close-modal:hover {
        color: black;
    }

.job-application-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.job-requirements-container {
    width: 40%;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-application-form-container {
    width: 55%;
}

.job-requirements-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

    .job-requirements-table th, .job-requirements-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }

    .job-requirements-table th {
        background-color: #099D8B;
        color: white;
    }

    .job-requirements-table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .job-requirements-table tr:hover {
        background-color: #ddd;
    }

@media (max-width: 768px) {
    .job-application-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .job-requirements-container,
    .job-application-form-container {
        width: 100%;
    }
}
