/* Enhanced Education Section Styles */

.education {
    position: relative;
    overflow: hidden;
}

.education .section-header {
    position: relative;
    z-index: 2;
}

.education .section-header h2 {
    color: var(--text-color) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
}

[data-theme="dark"] .education .section-header h2 {
    color: var(--text-color-dark) !important;
    text-shadow: 0 0 10px rgba(83, 109, 254, 0.7);
    background: rgba(30, 30, 40, 0.3);
}

/* Timeline item enhancements */
.timeline-item {
    position: relative;
    margin-bottom: 35px;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

[data-theme="dark"] .timeline-content {
    background: rgba(30, 30, 40, 0.4);
    border: 1px solid rgba(83, 109, 254, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.timeline-skill {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}
