/* =========================
   Nelson Computing Overrides
   ========================= */

/* Hide Our Clients section (can be re-enabled later) */
#clients {
  display: none !important;
}

/* =========================
   HERO SECTION TWEAKS
   ========================= */

/* Center the intro content instead of pushing it right */
#intro .tm-intro {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 650px;
  text-align: left;
}

/* Make hero text background readable */
.tm-bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
}

/* Center hero title only */
#intro .tm-section-title {
  text-align: center;
}

/* Subtle dark overlay over hero image for contrast */
.parallax-window {
  position: relative;
}
.parallax-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  pointer-events: none;
  z-index: 0;
}
.parallax-window > * {
  po
