/* Resume Section Styles */
.resume-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
}

.resume-item {
    padding: 0 0 20px 20px;
    border-left: 2px solid #f5df4e;
    position: relative;
    margin-bottom: 30px;
}

.resume-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #f5df4e
}

.resume-item:hover::before {
    background: #f5df4e;
}

.resume-item .year {
    background: #f5df4e;
    color: #000;
    font-size: 0.8rem;
    padding: 3px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.resume-item h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.resume-item .institution {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.resume-item .description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Styles */
.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-header h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--dark-color);
}

.skill-header span {
    color: #000;
    font-weight: 600;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: #f5df4e;
    transition: width 1s ease-in-out;
}

/* Animation for progress bars */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: progress-animation 2s infinite;
}

@keyframes progress-animation {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Download CV Button hover effect */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
