/* Career Development Page Specific Styles */

:root {
    --career-accent: #2563eb;
    --career-accent-rgb: 37, 99, 235;
    --career-orange: #f59e0b;
    --career-dark: #0f172a;
    --career-glass: rgba(255, 255, 255, 0.03);
    --career-border: rgba(255, 255, 255, 0.1);
}

.career-hero {
    position: relative;
    padding: 10rem 0 8rem;
    background: #0f172a url('../images/career-hero-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

    .career-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
        z-index: 1;
    }

    .career-hero .container {
        position: relative;
        z-index: 10;
    }

.career-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

/* Timeline Styles */
.timeline-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, rgba(37, 99, 235, 0) 0%, #2563eb 15%, #8b5cf6 50%, #2563eb 85%, rgba(37, 99, 235, 0) 100%);
        transform: translateX(-50%);
        box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    }

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6rem; /* Increased spacing */
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .timeline-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-content {
    width: 44%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

    .timeline-content::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 32px;
        padding: 2px;
        background: linear-gradient(135deg, var(--career-accent), transparent 50%, #8b5cf6);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s;
    }

    .timeline-content:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15);
    }

        .timeline-content:hover::before {
            opacity: 1;
        }

.timeline-dot {
    width: 56px;
    height: 56px;
    background: white;
    border: none;
    border-radius: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.15);
    background: var(--career-accent);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px solid var(--career-accent);
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.timeline-step-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--career-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-objective {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 600;
}

    .timeline-objective span {
        color: #94a3b8;
        font-weight: 400;
        display: block;
        margin-bottom: 0.25rem;
    }

/* Value Chain Grid */
.value-chain-section {
    padding: 6rem 0;
    background: white;
}

.value-chain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .value-card:hover {
        background: white;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
        border-color: var(--career-accent);
        transform: translateY(-5px);
    }

.value-card-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }

    .timeline-dot {
        left: 30px;
        top: 2rem;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 1.5rem;
    }
}

/* Ecosystem Highlight */
.ecosystem-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

    .ecosystem-panel::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    }

.ecosystem-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.ecosystem-text {
    color: #94a3b8;
    line-height: 1.8;
    max-width: 800px;
    font-size: 1.1rem;
}
