/* skills.css */
.skills-section {
    background: #f5f9ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529;
    padding: 60px 0;
}

.section-header {
    margin: 3rem auto 1.5rem auto;
    text-align: center;
    font-weight: 600;
    color: #2f3e6b;
    font-size: 2.5rem;
}

.section-subheader {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem auto;
    color: #495057;
    font-weight: 500;
    font-size: 1.1rem;
}

.skill-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(50, 60, 90, 0.1);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    min-height: 320px;
    transition: transform 0.3s ease;
}

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

.skill-card .icon-wrapper {
    width: 36px;
    height: 36px;
    background: #eaf1ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #4a90e2;
}

.skill-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.progress-wrapper {
    margin-bottom: 1.3rem;
}

.progress-wrapper .skill-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    display: flex;
    justify-content: space-between;
    color: #212529;
}

.progress-wrapper .skill-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 6px;
}

/* Progress bars colors */
.progress-python .progress-bar {
    background-color: #2a78f5;
}
.progress-javascript .progress-bar {
    background-color: #2a78f5;
}
.progress-xml .progress-bar {
    background-color: #2a78f5;
}
.progress-sql .progress-bar {
    background-color: #2a78f5;
}
.progress-odoo1 .progress-bar {
    background-color: #7a5dfa;
}
.progress-odoo2 .progress-bar {
    background-color: #7a5dfa;
}
.progress-odoo3 .progress-bar {
    background-color: #7a5dfa;
}
.progress-odoo4 .progress-bar {
    background-color: #7a5dfa;
}
.progress-postgres1 .progress-bar {
    background-color: #187850;
}
.progress-postgres2 .progress-bar {
    background-color: #187850;
}
.progress-postgres3 .progress-bar {
    background-color: #187850;
}
.progress-postgres4 .progress-bar {
    background-color: #187850;
}
.progress-integration1 .progress-bar {
    background-color: #2c7a21;
}
.progress-integration2 .progress-bar {
    background-color: #2c7a21;
}
.progress-integration3 .progress-bar {
    background-color: #2c7a21;
}
.progress-integration4 .progress-bar {
    background-color: #2c7a21;
}
.progress-business1 .progress-bar {
    background-color: #4459f5;
}
.progress-business2 .progress-bar {
    background-color: #4459f5;
}
.progress-business3 .progress-bar {
    background-color: #4459f5;
}
.progress-business4 .progress-bar {
    background-color: #4459f5;
}
.progress-devops1 .progress-bar {
    background-color: #e03e1b;
}
.progress-devops2 .progress-bar {
    background-color: #e03e1b;
}
.progress-devops3 .progress-bar {
    background-color: #e03e1b;
}
.progress-devops4 .progress-bar {
    background-color: #e03e1b;
}

/* Tools & Technologies section */
.tools-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(50, 60, 90, 0.13);
    padding: 2.5rem 3rem 3rem 3rem;
    max-width: 960px;
    margin: 0 auto 4rem;
}

.tools-container h3 {
    font-weight: 700;
    text-align: center;
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.3rem;
    justify-content: center;
}

.tools-list li {
    background: #f8fafc;
    border-radius: 0.7rem;
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #212529;
    box-shadow: 0 3px 8px rgba(33, 37, 41, 0.05);
    cursor: default;
    user-select: none;
    min-width: 95px;
    text-align: center;
    transition: all 0.25s ease;
}

.tools-list li:hover {
    background-color: #e7f0ff;
    color: #4a90e2;
    box-shadow: 0 5px 14px rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
}

/* Smaller screen adjustments */
@media (max-width: 767.98px){
    .skill-card {
        min-height: unset;
    }
    .tools-list li {
        min-width: 80px;
        padding: 0.4rem 1rem;
    }
}