/* ==================================================
   SabioInfotech Career Page Styles
   Extends home.css with career-specific styles
   ================================================== */

/* Career Hero Section */
.career-hero {
    padding-top: 100px;
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.1) 0%, rgba(42, 82, 152, 0.05) 100%);
    position: relative;
}

.career-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.career-hero .hero-description {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 600px;
}

.career-hero .hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.career-hero .hero-image {
    position: relative;
}

.career-hero .hero-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow-hover);
    animation: float 6s ease-in-out infinite;
}

.career-hero .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--box-shadow);
    animation: float 4s ease-in-out infinite;
}

.career-hero .floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    background: var(--gradient-accent);
}

.career-hero .floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    background: var(--gradient-secondary);
}

/* Why Join Us Section */
.why-join-section {
    background: white;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: height 0.5s ease;
}

.benefit-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 44, 99, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Job Openings Section */
.job-openings-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.job-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.job-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.05) 0%, rgba(42, 82, 152, 0.02) 100%);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.job-title h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-tag {
    background: rgba(14, 44, 99, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.job-description {
    padding: 0 30px 20px;
}

.job-description p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.job-requirements li i {
    color: var(--accent-color);
    font-size: 14px;
}

.job-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-footer .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Application Process Section */
.process-section {
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .career-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .career-hero .hero-description {
        font-size: 1rem;
    }
    
    .career-hero .hero-stats {
        gap: 20px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .job-footer {
        flex-direction: column;
    }
    
    .job-footer .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .career-hero {
        padding-top: 80px;
    }
    
    .career-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .career-hero .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
}