.skills-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    perspective: 1000px;
}

.skill-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.skill-link:hover {
    text-decoration: none;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 120px;
    height: 140px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: rotateX(90deg);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.skill-card.animate {
    transform: rotateX(0deg);
}

.skill-card:hover {
    text-decoration: none;
    transform: translateY(-15px) rotateX(0deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
