.skills-section {
    padding: 20px 0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.page-title span {
    color: #3b82f6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.skill-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.skill-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.skill-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 4px;
}