.page-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.career-content {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--gold));
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(102, 126, 234, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
}

.career-highlights {
    margin-top: 1.5rem;
}

.highlight-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.highlight-box h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.dimensional-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.company-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.company-card.pulse {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

.company-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
}

.company-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.company-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.philosophy {
    padding: 4rem 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    transition: all 0.3s;
}

.philosophy-point:hover {
    transform: translateX(10px);
    border-left-color: var(--gold);
}

.philosophy-point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.expertise {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-weight: bold;
    transition: width 2s ease-out;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 147, 251, 0.2), rgba(118, 75, 162, 0.2));
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-marker {
        margin: 0 1rem 0 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}