:root {
    --primary-navy: #062d60;
    --accent-green: #3fa684;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.career-hero {
    background: linear-gradient(rgba(6, 45, 96, 0.85), rgba(6, 45, 96, 0.85)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 0;
    text-align: center;
    border-bottom: 2px solid #0082a4;
}

.hiring-process-section {
    padding: 40px 0;
    background-color: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
}

.step-card {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: 0.3s ease;
    text-align: center;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    /* background: var(--primary-navy); */
    color: black;
}

.step-icon {
    width: 45px;
    height: 45px;
    /* background: var(--light-bg); */
    color: var(--primary-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.application-section {
    padding: 40px 0 60px;
}

.form-container-main {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.form-left-panel {
    background: linear-gradient(155deg, var(--primary-navy) 0%, #0a4a9b 100%);
    color: white;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.form-right-panel {
    padding: 35px 45px;
}

.compact-input {
    background-color: #f8fafc !important;
    border: 1px solid var(--border-color) !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 0.88rem;
}

.compact-input:focus {
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 0 3px rgba(63, 166, 132, 0.08) !important;
}

.upload-box-premium {
    border: 1px dashed #cbd5e1;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background: #fbfcfd;
}

.lead {
    font-size: 0.80rem;
    font-weight: 600;
}

.btn-submit-career {
    background: #0082a4;
    color: white;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    border: none;
    width: 100%;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-submit-career:hover {
    background: #062d60;
    color: white;
}

.feature-list i {
    color: #08CB00;
    margin-right: 8px;
}



/* css start about us */

.stats-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.stat-card {
    background: transparent;
    border: 1px solid #5ccbbf;
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.stat-card:hover {
    border-color: #062d60;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


.icon-box {
    width: 60px;
    height: 60px;
    background-color: #062d60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: 0.3s;
}

.stat-card:hover .icon-box {
    background-color: #0082a4;
    transform: rotateY(180deg);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #062d60;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;

    letter-spacing: 0.5px;
}


.btn-view-positions {
    background-color: #0082a4;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
}

/* end here our css */


/* why join a one */

.why-join-section {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.why-join-title {
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #0082a4;
    ;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(6, 45, 96, 0.05);
}

.check-icon-box {
    width: 40px;
    height: 40px;
    background-color: #062d60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: #062d60;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #64748b;
    font-size: 0.80rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 15px;
    }
}

/* end here why join aone */