/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 22 2026 | 11:10:19 */
/* Main card box */
.hover-card {
    padding: 30px 20px 35px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.35s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Hover effect for card */
.hover-card:hover {
    background: #fff7e6;
    border-color: #f4b000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Image wrapper */
.hover-card .module-image {
    margin-top: -35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Image styling */
.hover-card .module-image img {
    width: 70px;
    height: 70px;
    transition: transform 0.35s ease;
    position: relative;
}

/* Image move on hover */
.hover-card:hover .module-image img {
    transform: translateY(-12px);
}

/* Heading */
.hover-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Description text */
.hover-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}