/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Disable text selection */
body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}

/* Disable image dragging */
img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Optional: prevent long tap save on mobile */
img {
  -webkit-touch-callout: none;
}
/* Allow selection for contact details */
a[href^="tel"],
a[href^="mailto"] {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}