.category-02 .category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-02 .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.category-02 .category-item {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.category-02 .category-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

/* SVG styling */
.category-02 .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;

}

.category-02 .icon-box svg {
    width: 22px;
    height: 22px;
    stroke: #1a1a1a;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}