/* Skills Section Styles */
#skills {
    padding: 60px 20px;
    /* background-color: #f9f9f9; */
    max-width: 1200px;
    margin: 0 auto;
}

#skills h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fffdfd;
    font-size: 1.8rem;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.skill-category {
    flex: 1;
    min-width: 300px;
    /* background-color: white; */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    color: #46dff0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.skill-category#devops h3 {
    color: #46f09b;
}

.skill-category#data-science h3 {
    color: #f0465d;
}

.skill-category#bioinformatics h3 {
    color: #f0c346;
}

.skill-category#full-stack h3 {
    color: #ba46f0;
}

.skill-item {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.skill-name {
    font-weight: 600;
    color: #fffdfd;
    font-size: 1.1rem;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-dots {
    display: flex;
    gap: 5px;
}

.experience-dot {
    width: 12px;
    height: 12px;
    border-radius: 25%;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.experience-dot.active {
    background-color: #46dff0;
    box-shadow: 0 0 5px rgba(70, 223, 240, 0.5);
}


.skill-category#devops .experience-dot.active {
    background-color: #46f09b;
    box-shadow: 0 0 5px rgba(70, 223, 240, 0.5);
}

.skill-category#data-science .experience-dot.active {
    background-color: #f0465d;
    box-shadow: 0 0 5px rgba(240, 70, 70, 0.5);
}

.skill-category#bioinformatics .experience-dot.active {
    background-color: #f0c346;
    box-shadow: 0 0 5px rgba(240, 180, 70, 0.5);
}

.skill-category#full-stack .experience-dot.active {
    background-color: #ba46f0;
    box-shadow: 0 0 5px rgba(186, 70, 240, 0.5);
}

.experience-dot:hover {
    transform: scale(1.2);
}

.years-text {
    color: #666;
    font-size: 0.9rem;
    min-width: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-container {
        flex-direction: column;
    }
    
    .skill-category {
        min-width: 100%;
    }
}
