
/* =========================================
   Careers Page Styles
   ========================================= */

/* Hero Section */
.career-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
}

.career-hero h1 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
}

/* Benefits Section */
.benefit-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #eef2ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Job Listings */
.job-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.job-info h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    align-items: center;
    flex-wrap: wrap;
}

.job-meta i {
    margin-right: 0.4rem;
}

.job-time {
    color: #6c757d;
    font-size: 0.9rem;
}

.btn-apply {
    color: #3b82f6;
    border: 1px solid #3b82f6;
    background: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-apply:hover {
    background: #3b82f6;
    color: white;
}

/* Career CTA */
/* Removed full-width section styles to allow for card-based design */
.career-cta-card {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-resume {
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s;
}

.btn-resume:hover {
    background-color: #e69500; /* Darker orange */
    transform: translateY(-2px);
}
