/* ============================================
   Modern Career Page Styles
   Code Node (pvt) ltd - 2024
============================================ */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #262262;
    --accent-color: #4e4ecb;
    --dark-bg: #0f0f1a;
    --darker-bg: #05050a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --success: #10b981;
    --border: rgba(226, 232, 240, 0.6);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* ============================================
   Hero Section
============================================ */

.career-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
    padding: 120px 20px 80px;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(99,102,241,0.3)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Culture Section
============================================ */

.culture-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.culture-container {
    max-width: 1200px;
    margin: 0 auto;
}

.culture-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.culture-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.culture-card:hover .culture-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(38, 34, 98, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
}

.image-overlay i {
    font-size: 60px;
    color: white;
}

.culture-content {
    padding: 50px;
}

.culture-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.culture-content h2 i {
    color: var(--accent-color);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-icon.excellence {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.value-icon.inclusivity {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.value-icon.growth {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Benefits Section
============================================ */

.benefits-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }
}

.benefit-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: var(--white);
}

.benefit-icon.work-life {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.benefit-icon.development {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.benefit-icon.career {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.benefit-icon.health {
    background: linear-gradient(135deg, var(--success) 0%, var(--accent-color) 100%);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============================================
   Jobs Section
============================================ */

.jobs-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-section .section-header h2 {
    color: var(--primary-color);
}

.jobs-grid {
    display: grid;
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-bottom: 1px solid #f3f4f6;
}

.job-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.job-badge i {
    color: white;
    font-size: 16px;
}

.job-title-section {
    flex: 1;
}

.job-title-section h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--secondary-color);
}

.job-content {
    padding: 30px;
}

.job-section {
    margin-bottom: 25px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-section h4 i {
    color: var(--secondary-color);
}

.job-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.job-footer {
    padding: 20px 30px;
    background: #f9fafb;
    display: flex;
    gap: 15px;
}

.apply-btn,
.share-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.share-btn {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.share-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* No Jobs State */
.no-jobs {
    text-align: center;
    padding: 80px 20px;
}

.no-jobs i {
    font-size: 80px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.no-jobs h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-jobs p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 768px) {
    .career-hero {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 30px;
    }

    .culture-content {
        padding: 30px;
    }

    .culture-image {
        height: 300px;
    }

    .job-header {
        flex-direction: column;
    }

    .job-image {
        width: 100%;
        height: 200px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .culture-content {
        padding: 20px;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .job-footer {
        flex-direction: column;
    }
}