﻿.skill-box {
    padding: 20px;
    border-left: 3px solid #0d6efd;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all .25s ease;
    cursor: default;
}

    .skill-box h4 {
        margin-bottom: 6px;
        font-size: 17px;
        font-weight: 600;
        transition: color .25s ease;
    }

    .skill-box p {
        margin: 0;
        font-size: 14px;
        color: #555;
        transition: color .25s ease;
    }

    /* Hover effect */
    .skill-box:hover {
        transform: translateY(-5px);
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
        border-left-color: #0a58ca;
    }

        .skill-box:hover h4 {
            color: #0d6efd;
        }

        .skill-box:hover p {
            color: #333;
        }