/* Career Page Styles */

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.intro-text:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Job Card */
.job-card {
    background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.08) 0%, 
                rgba(118, 75, 162, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-left: 6px solid #667eea;
    border-radius: 20px;
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4),
                0 10px 30px rgba(118, 75, 162, 0.3);
}

.job-card:hover::before {
    opacity: 0.3;
}

/* Job Card Header */
.job-card-header {
    margin-bottom: 2.5rem;
}

.job-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Job Badges */
.job-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: capitalize;
}

.job-badge-fulltime {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

.job-badge-parttime {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1.5px solid rgba(102, 126, 234, 0.5);
}

.job-badge-remote {
    background: rgba(118, 75, 162, 0.2);
    color: #e0b3ff;
    border: 1.5px solid rgba(118, 75, 162, 0.5);
}

/* Job Details Grid */
.job-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
    margin-bottom: 2.5rem;
}

.job-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.job-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #667eea;
}

.job-detail div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 500;
}

.detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #e8e8e8;
    font-weight: 600;
}

.detail-value.urgent {
    color: #ff6b6b;
    font-weight: 700;
}

/* Apply Button */
.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.apply-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5),
                0 6px 20px rgba(118, 75, 162, 0.4);
}

.apply-btn:hover::before {
    width: 300px;
    height: 300px;
}

.apply-btn svg {
    transition: transform 0.3s ease;
}

.apply-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-card {
        padding: 2rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .job-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .apply-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 1.5rem;
    }

    .job-title {
        font-size: 1.3rem;
    }

    .detail-value {
        font-size: 0.95rem;
    }

    .apply-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}