/* Remove image background and make icons clean */
.service-block-three_image {
    background: none !important;
    border-radius: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    /* adjust height */
}

/* Style icons */
.service-block-three_image i {
    font-size: 6rem;
    color: #deb18a !important;
    /* brand color */
    transition: all 0.3s ease;
}

/* Hover effect */
.service-block-three:hover .service-block-three_image i {
    transform: scale(1.2);
    color: #d84e56 !important;
}

/* Optional: add subtle card hover lift */
.service-block-three {
    transition: all 0.3s ease;
}

.service-block-three:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}