/* Careers Page Styles */

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="briefcase-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 10 5 L 15 5 L 15 15 L 5 15 L 5 5 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23briefcase-pattern)"/></svg>');
    animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.careers-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.careers-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: slideInDown 1s ease-out;
}

.careers-hero h1 i {
    margin-right: 15px;
    color: #ffd700;
}

.careers-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb span {
    color: white;
    opacity: 0.6;
}

.career-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.career-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-stats .stat-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* Careers Main Content */
.careers-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.job-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

.job-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.job-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.job-icon {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.job-info h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-description {
    margin-bottom: 25px;
}

.job-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-requirements {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.posted-date {
    color: #999;
    font-size: 0.9rem;
}

.apply-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-apply 2s ease-in-out infinite;
}

.apply-btn:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

@keyframes pulse-apply {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

/* Why Work With Us Section */
.why-work-with-us {
    background: white;
    padding: 60px 0;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
}

.benefit-icon {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2rem;
    }
    
    .careers-hero p {
        font-size: 1rem;
    }
    
    .career-stats {
        gap: 20px;
    }
    
    .career-stats .stat-item {
        padding: 10px 20px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 100px 0 60px;
    }
    
    .careers-hero h1 {
        font-size: 1.5rem;
    }
    
    .career-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        padding: 15px;
    }
}
