/* Careers Page Custom Styling */

.benefit-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

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

.benefit-icon {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e6f7ed 0%, #d1fae5 100%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefit-card:hover .benefit-icon svg {
    color: white;
}

.job-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #e2e8f0;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #10b981;
}

.job-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-engineering {
    background: #dcfce7;
    color: #166534;
}

.badge-management {
    background: #dbeafe;
    color: #1e40af;
}

.badge-operations {
    background: #fef3c7;
    color: #d97706;
}

.badge-safety {
    background: #fce7f3;
    color: #be185d;
}

.badge-fulltime {
    background: #ede9fe;
    color: #7c3aed;
}

.apply-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.resume-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.resume-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.75rem 0;
}

.job-details svg {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.resume-section {
    background: #ffffff;
    border-top: 3px solid #10b981;
}

/* Mobile-specific styles - plain white backgrounds */
@media (max-width: 768px) {
    .benefit-card {
        background: #ffffff;
    }

    .benefit-card:hover {
        background: #ffffff;
    }

    .job-card {
        background: #ffffff;
    }

    .job-card:hover {
        background: #ffffff;
    }

    .resume-section {
        background: #ffffff;
    }
}