.skill-circle-container {
    position: relative;
    width: 90px;
    height: 90px;
    animation: fadeIn 0.6s ease-out;
}

.skill-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotate 1.5s ease-out;
}

.skill-circle:hover {
    transform: scale(1.1) rotate(360deg);
    filter: brightness(1.2);
}

.skill-inner {
    background: #0a0a1a;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.skill-percentage {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 43, 217, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(108, 43, 217, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(108, 43, 217, 0);
    }
}

.skill-circle-container:hover .skill-inner {
    background: rgba(10, 10, 26, 0.9);
    transform: scale(0.95);
}

.skill-circle-container:nth-child(even) {
    animation-delay: 0.2s;
}

.skill-circle-container:nth-child(3n) {
    animation-delay: 0.3s;
}

.skill-circle-container:nth-child(4n) {
    animation-delay: 0.4s;
}