.elementor-9311 .elementor-element.elementor-element-0a3a494{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   AHSN Basketball Background Watermark
   Background only - no per-section overlays
   Spinning animation
   ============================================ */

@keyframes ahsn-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes ahsn-spin-reverse {
  from {
    transform: translate(0, 0) rotate(360deg);
  }
  to {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Background basketball - right side */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  right: -8%;
  width: 650px;
  height: 650px;
  background-image: url("https://dev.neonsnowcareplus.com.au/wp-content/uploads/2026/07/AHSN-B-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
  animation: ahsn-spin 50s linear infinite;
}

/* Background basketball - top left */
body::after {
  content: "";
  position: fixed;
  top: -12%;
  left: -10%;
  width: 550px;
  height: 550px;
  background-image: url("https://dev.neonsnowcareplus.com.au/wp-content/uploads/2026/07/AHSN-B-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
  animation: ahsn-spin-reverse 65s linear infinite;
}

/* ============================================
   Blue Scrollbar
   ============================================ */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #0876cf;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #065ba3;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #0876cf #f5f5f5;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  body::before {
    width: 480px;
    height: 480px;
    right: -12%;
    opacity: 0.035;
  }

  body::after {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  body::before {
    width: 350px;
    height: 350px;
    right: -18%;
    opacity: 0.03;
  }

  body::after {
    width: 280px;
    height: 280px;
    top: -8%;
    left: -15%;
    opacity: 0.025;
  }
}

@media (max-width: 480px) {
  body::before {
    width: 260px;
    height: 260px;
    opacity: 0.025;
  }

  body::after {
    display: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}/* End custom CSS */