/* =============================================================
   CURSOR ANIMATION — Salubry
   Scoped to #CFE8E5 background sections:
   .banner-image, .brand-main-sec, .why-choose-us-sec, .cert-section
   ============================================================= */

   /* Hide default cursor inside cursor-active sections */
.cursor-active-zone {
  cursor: none;
}

.reveal-heading {
  position: relative;
  color: #fff;
  /* your base text color */
}

.reveal-heading .reveal-text-black {
  position: absolute;
  inset: 0;
  color: #000;
  pointer-events: none;
  clip-path: circle(0px at -9999px -9999px);
}

/* Cursor blob */
#salubry-cursor-blob {
  position: fixed;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background: linear-gradient(0deg, #066D68 0%, #0AA49C 100%);
  box-shadow: 0 0 25px rgba(10, 164, 156, 0.6);
  opacity: 0;
  transition:
    background .35s ease,
    border-color .35s ease,
    width .35s ease,
    height .35s ease,
    box-shadow .35s ease;
  mix-blend-mode: normal;
}

#salubry-cursor-blob.is-visible {
  opacity: 1;
}

#salubry-cursor-blob.is-hovering {
  width: 80px;
  height: 80px;
  /* background: #0AA49C; */
  /* border-color: #0AA49C; */
  background: #FFD60A;
  border-color: #FFD60A;
  box-shadow: 0 0 30px rgba(255, 214, 10, 0.6);
  mix-blend-mode: difference;
  /* mix-blend-mode: exclusion; */

}

@media (prefers-reduced-motion: reduce) {
  #salubry-cursor-blob {
    display: none !important;
  }

  .reveal-heading .reveal-text-black {
    display: none !important;
  }
  .cursor-active-zone {
    cursor: auto;
  }
}