/*====================================================
CAREERS.CSS
AMROS PROJECTS LLP
======================================================*/



/* Why Join AMROS Section */
.why-join-section {
    padding: 60px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #eaf4ff;
    color: #005BAA;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.benefit-card {
    background: #f8fbfd;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease;
    border: 1px solid #e8eef5;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: #005BAA;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #eaf4ff;
    color: #005BAA;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: #005BAA;
    color: #fff;
}

.benefit-card h4 {
    font-size: 18px;
    color: #081c34;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Job Openings Section */
.jobs-section {
    padding: 60px 0;
    background: #f8fbfd;
}

.job-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8eef5;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #005BAA;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-title {
    font-size: 22px;
    color: #081c34;
    margin: 0;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
}

.tag-time {
    background: #eaf4ff;
    color: #005BAA;
}

.tag-loc {
    background: #f2f4f7;
    color: #475467;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: #667085;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-meta span i {
    color: #005BAA;
    margin-right: 5px;
}

.job-desc {
    font-size: 15px;
    color: #667085;
    margin-bottom: 25px;
    line-height: 1.7;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e8eef5;
    padding-top: 20px;
}

.btn-apply-now {
    padding: 10px 24px;
    background: #081c34;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-apply-now:hover {
    background: #005BAA;
    color: #fff;
}

/* Form Styles */
.apply-form-section {
    padding: 60px 0;
    background: #fff;
}

.apply-form-box {
    background: #f8fbfd;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid #e5edf5;
}

.apply-form-box::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #edf6ff;
    z-index: 1;
}

.apply-form-box > * {
    position: relative;
    z-index: 2;
}

.apply-form-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #081c34;
}

.apply-form-box p {
    font-size: 16px;
    color: #667085;
    margin-bottom: 35px;
}

.apply-form-box label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #344054;
}

.apply-form-box .form-control,
.apply-form-box .form-select {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #e5edf5;
    padding: 0 20px;
    font-size: 15px;
    background: #fff;
    box-shadow: none;
    transition: 0.35s;
}

.apply-form-box textarea.form-control {
    height: auto;
    padding: 18px 20px;
    resize: none;
    min-height: 180px;
}

.apply-form-box .form-control:focus,
.apply-form-box .form-select:focus {
    border-color: #005BAA;
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 91, 170, 0.1);
}

.btn-primary-custom {
    padding: 16px 35px;
    background: linear-gradient(135deg, #005BAA, #0A84FF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 91, 170, 0.25);
    color: #fff;
}

/* File upload styling */
.custom-file-upload {
    position: relative;
    display: block;
    width: 100%;
}

.custom-file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    border: 2px dashed #e5edf5;
    background: #fff;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500 !important;
    color: #667085 !important;
}

.file-upload-label:hover {
    border-color: #005BAA;
    background: #edf6ff;
    color: #005BAA !important;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .page-banner {
        margin-top: 80px;
        padding: 100px 0 60px;
    }
    
    .apply-form-box {
        padding: 30px;
    }
    
    .job-card {
        padding: 25px;
    }
}
