
    .careers-page {
    background-color: #f9f9f9;
    padding: 50px 0;
    font-family: var(--maroof-font);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.job-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
    font-family: 'Roboto';
    font-size: medium;
}

.job-item:hover {
    transform: scale(1.05);
}

.job-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.job-location {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
}

.job-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.btn-one {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 0px;
    text-decoration: none;
    transition: background-color 0.3s ease;   
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 16px;
    color: var(--maroof-black);
    letter-spacing: 0.32px;
    background-color: var(--maroof-base);
    padding: 15px 30px 15px;
    border-radius: 30px;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    font-family: var(--maroof-font);
    text-transform: capitalize;
    gap: 10px;
    z-index: 1;
}


.btn-one:hover {
    background-color: black;
    color:white;
}



.job-details-page {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.job-details {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.job-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}



.apply-modal {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.apply-form-container {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    margin: 20px;
}

.apply-form-container h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.apply-form-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.apply-form-container button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.apply-form-container button:hover {
    background-color:black;
}

.apply-modal.blur {
    filter: blur(5px);
}








    /* Modal Styles */
    .apply-modal {
        display: none;  /* Initially hidden */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);  /* Semi-transparent background */
        z-index: 1000;  /* Make sure it's on top of other content */
        justify-content: center;
        align-items: center;
    }

    .apply-form-container {
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        max-width: 600px;
        width: 100%;

    }

    .apply-form-content h4 {
        text-align: center;
        margin-bottom: 20px;
        font-family: 'Roboto';
    }

    .apply-now {
        display: inline-block;
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
    }

    .apply-now:hover {
        background-color: black;
    }

    .btn-one {
        display: inline-block;
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
    }
    .button-container {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
    
    .button-container button {
        width: 48%;  /* Make the buttons occupy half the width each */
    }




