.cursor-bubble {
  position: absolute;
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: #090909;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 280ms ease;
  white-space: nowrap;
  z-index: 10;
}
.project-card { position: relative; overflow: hidden; }
.project-card:hover .cursor-bubble { opacity: 1; }
.service-col:hover .cursor-bubble { opacity: 1; }
.team-photo:hover .cursor-bubble { opacity: 1; }
.section-lead__photo { position: relative; cursor: default; }
.section-lead__photo:hover .cursor-bubble { opacity: 1; }
.card-img { position: relative; }
