/* Full CSS for Zoho Sites blur effect */
.blur-section {
  filter: blur(10px);              /* strong blur */
  user-select: none;               /* prevents text selection */
  transition: filter 0.3s ease;    /* smooth blur transition */
  background: none;                /* no dark overlay */
  border: none;                    /* removes borders */
  box-shadow: none;                /* removes shadows */
}

/* Optional: Remove blur when active (if you want to toggle blur later) */
.blur-section.active {
  filter: blur(0);
  user-select: auto;
}
