﻿.containerr {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-box form {
    padding: 10px 28px 20px;
}

.modal-box h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0px;
    background: #979797;
    color: #57398e;
    font-weight: bold;
    padding: 15px 0px;
    border-radius: 0 0 15px 15px;
}

.modal-box {
    background: #fff;
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
    animation: popup 0.3s ease-in-out;
}

@keyframes popup {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.closeModal {
    position: absolute;
    top: 13px;
    right: 20px;
    font-size: 28px;
    line-height: 31px;
    width: 34px;
    text-align: center;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid;
    color: #f9f4f4;
}



.btnn {
    display: inline-block;
    padding: 12px 30px;
    background: #f3773a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

    .btnn:hover {
        color: #ffffff;
        text-decoration: none;
        background: #5d3e91!important;
    }


.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 600px;
        color: #fff;
        margin-left: auto;
        margin-right: auto;
    }

.benefits {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

    .benefits h2 {
        margin-bottom: 40px;
        font-size: 2rem;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.openings {
    padding: 60px 0;
}

    .openings h2 {
        text-align: center;
        margin-bottom: 40px;
    }

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

    .job-card:hover {
        border-color: #007bff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.job-info0 h3 {
    margin-bottom: 5px;
    color: #57398e;
}

.job-info1 h3 {
    margin-bottom: 35px;
    font-size: 20px;
    color: #57398e;
}

.job-info2 h3 {
    margin-bottom: 35px;
    font-size: 20px;
    color: #57398e;
}

.job-info1 span {
    font-size: 18px;
    color: #666;
}

.job-info2 span {
    font-size: 18px;
    color: #666;
}

.job-info0 p {
    color: #666;
    font-size:15px;
}

.apply-section {
    background: #002a4d;
    color: #fff;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

        .form-group input[type="file"] {
            padding: 10px;
        }



/* Responsive */
@media (max-width: 450px){
    .containerr {
        width: 282px!important;
    }
    .modal-box h2 {
        font-size: 18px;
    }

    .closeModal {
        position: absolute;
        top: 8px;
        right: 20px;
        font-size: 23px;
        line-height: 27px;
        width: 28px;
        height: 28px;
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .job-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .containerr {
    width: 500px;
    }
}
