
/* custom cursor styling */

/* Custom cursor circle */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  background: white;
  mix-blend-mode: difference; /* inverts colors under the circle */
  transition: transform 0.2s ease-out; /* Smooth transition for transform */
  z-index: 9999;
  will-change: transform;
}

/* Grow cursor on hover */
.hover-grow {
  transform: scale(2.5); /* Only scale on hover */
}


@media (max-width: 768px) {
	.custom-cursor {
  display:none;
}
	
}
