/* Apply only to boxes you want popup */
.popup-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Popup effect */
.popup-box:hover {
    transform: scale(1.05);         /* slight zoom */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* soft shadow */
}
/* Target Zoho block/box with stronger rule */
.value-box {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}



