/* Skills Section Styles */
.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: #666;
    margin-bottom: 1rem;
}

.progress-bar {
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 10px;
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
}

.progress {
    background-color: #007bff;
    height: 100%;
    border-radius: 10px;
}
