/* ===== Experience Section Updates ===== */

/* Update timeline header styles */
.company, .date, .location, .degree {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.company {
    font-weight: 600;
}

.location {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.degree {
    font-weight: 500;
    color: var(--primary-color);
}

/* Skills tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Education timeline items */
.timeline-item.education .timeline-dot {
    background-color: #10b981; /* Green color for education */
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-item.education .timeline-header h3 {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-tags {
        margin-top: 0.75rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
    }
    
    .timeline::after {
        left: 40px;
    }
    
    .timeline-dot {
        left: 31px !important;
        right: auto !important;
    }
    
    .timeline-content::after {
        display: none;
    }
}