/* --- Universal Pattern Fade Mask --- */
/* 1. Background Overlay එක සහ ::before යන දෙකටම Mask එක දානවා */
.soft-pattern-bg > .elementor-background-overlay,
.soft-pattern-bg::before {
/* Chrome, Safari, Edge, Android */
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%) !important;
/* Firefox */
mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%) !important;
/* Mask එක හරියට වැඩ කරන්න මේවා අවශ්යයි */
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
/* 2. Container එකේ Background එක Mask නොවී තියන්න (Content බේරගන්න) */
.soft-pattern-bg {
/* මේක හිස්ව තියන්න, අවශ්ය නම් z-index හදන්න පුළුවන් */
}
/* --- Custom Leaf Cursor --- */
body, a, button, input {
/* මෙතන 'YOUR_IMAGE_URL' වෙනුවට ඔයාගේ කොළයේ Link එක දාන්න */
cursor: url('https://plantloversllc.com/wp-content/uploads/2026/01/leaf.png'), auto;
}
/* වැදගත්: Click කරනකොට වෙන දේ */
body:active {
cursor: url('https://plantloversllc.com/wp-content/uploads/2026/01/tropical-leaves.png'), grabbing;
}