/* Custom Skills Section Styling */

.skill-icon {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.skill_circle:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Adjust the existing hard_skill_group to work with emoji icons */
.hard_skill_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Make sure the skill circle layout is centered */
.skill_circle_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

/* Responsive adjustments for single language skill */
.skill_circle_main > div:only-child {
    margin: 0 auto;
}

/* Center the single English language skill */
.lan_skill + .skill_circle_main {
    justify-content: center;
}

.lan_skill + .skill_circle_main > div {
    margin: 0 auto;
}

/* Improve spacing for entertainment skills */
.hard_skill + .skill_circle_main {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .skill_circle_main {
        gap: 20px;
    }
    
    .skill-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .skill_circle_main {
        gap: 15px;
    }
    
    .skill-icon {
        font-size: 36px;
        width: 60px;
        height: 60px;
    }
}
