/* Skills Section */
#skills {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

#skills .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: center;
    max-width: 400px;
}

#skills img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

#skills img:hover {
    transform: scale(1.1);
}

h3 {
    color: rosybrown;
    font-size: 20px;
    text-align: center;
    margin: 30px;
}