
.apply-job-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1606942040878-9a852c5045a3?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.apply-job-section .icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.apply-job-section h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.apply-job-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.apply-job-section .btn-apply {
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 30px;
}

.form-section {
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    color: black;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-section h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 40px;
    font-size: 34px;
}

.form-control {
    border-radius: 16px;
    color: #000;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-select {
    width: 100%;
    height: 55px;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
    padding: 4px 12px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-shadow: none;
}

.form-select:focus {
    border-color: #0056b3;
    /* Highlights border on focus */
    outline: none;
    /* Removes the default outline */
    box-shadow: 0 0 4px rgba(0, 86, 179, 0.2);
    /* Adds subtle focus shadow */
}


.custom-file-input {
    display: none;
}

.custom-file-label {
    display: block;
    border: 1px solid #ced4da;
    border-radius: 16px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    background-color: #f8f9fa;
}

.custom-file-label:hover {
    background-color: #e9ecef;
}

.btn-submit {
    background: linear-gradient(to right, #007bff, #00d4ff);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 10px 20px;
    font-size: 16px;
}

.btn-submit:hover {
    background: linear-gradient(to right, #0056b3, #009bbd);
}

.info-section {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box img {
    width: 40px;
    height: 40px;
}

.info-box p {
    margin: 0;
}

.info-box p.title {
    font-weight: bold;
    color: #007bff;
}