/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Angle';
  src: url('./Fonts/Angle.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Clash Display';
  src: url('./Fonts/ClashDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cotta Free';
  src: url('./Fonts/Cotta Free.otf') format('opentype');
  font-weight: 900;
  /* Cotta Free is display-boldish, simulate bold weight */
  font-style: normal;
}

@font-face {
  font-family: 'MD Nichrome InfraOblique';
  src: url('./Fonts/MDNichromeTest-Dark.otf') format('opentype');
  font-weight: 900;
  /* Cotta Free is display-boldish, simulate bold weight */
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}


a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s ease;
}

header {
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

footer {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  /* same semi-transparent black feel */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  overflow: hidden;
}

/* Optional aurora/glow behind footer */
footer::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -250px;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

footer::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -250px;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

footer * {
  position: relative;
  z-index: 1;
}

body {
  font-family: 'Geist', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  font-weight: 400;
}

/* Aurora glow overlay */
#aurora-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: transparent;
  transition: background 0.1s linear;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
}

/* Logo */
.logo {
  font-size: 1.6rem;
  font-weight: 950;
  color: #ffffff;
  font-family: 'Angle', sans-serif;
  z-index: 1001;
}

/* Hamburger (mobile menu icon) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

/* Floating Nav */
.floating-nav {
  position: relative;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  isolation: isolate;
  max-width: 100%;
  overflow-x: auto;
  transition: all 0.3s ease;
}

.floating-nav::-webkit-scrollbar {
  display: none;
}

/* and in Firefox */
.floating-nav {
  scrollbar-width: none;
}


/* Nav Links */
.nav-links {
  position: relative;
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
  text-decoration: none;
}

/* Sliding Indicators */
.nav-indicator {
  position: absolute;
  /* bottom: 0.2rem;
    height: 2.2rem; */
  /* vertically center instead of bottom */
  top: 50%;
  transform: translateY(-50%);
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  will-change: transform, width;
  mix-blend-mode: lighten;
  transition: all 0.35s ease;
}

.nav-indicator-hover {
  opacity: 0;
  z-index: 0;
  transition: all 0.25s ease;
  top: 50%;
  transform: translateY(-50%);
}

.nav-indicator-active {
  box-shadow: 0 4px 12px rgba(105, 213, 237, 0.4) inset;
  background: rgba(42, 111, 249, 0.4);
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {

  /* Show hamburger menu icon */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    transition: background-color 0.3s ease;
    background-color: var(--hamburger-color, white);
    border-radius: 5px;
  }


  /* Style and position the dropdown menu */
  .floating-nav {
    position: absolute;
    top: 60px;
    /* instead of top: 100% */
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    display: none;
    box-shadow: none;
    z-index: 1000;
    border-radius: 0;
  }

  /* Show dropdown when .active is added */
  .floating-nav.active {
    display: block;
  }

  /* Stack nav links vertically */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Hide indicators for mobile */
  .nav-indicator,
  .nav-indicator-hover,
  .nav-indicator-active {
    display: none;
  }
}

/* Main content section */
main section {
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

/* Hero */
/* allow overflow so beam can bleed outside letters */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 50;
  padding-top: 10rem;
}

.hero h1 {
  max-width: 900px;
  line-height: 1.2;
  cursor: pointer;
  font-size: 4rem;
}

.hero-heading {
  font-family: 'MD Nichrome InfraOblique', 'General Sans', sans-serif;
  text-align: left;
  font-weight: 900;
  /* Stronger weight */
  /* Huge size */
  line-height: 1.1;
  letter-spacing: -0.03em;
  width: 100%;
  max-width: 100%;
}

/* constrain hero text to left half, wrap automatically */
/* constrain hero text to left half, wrap lines early */
.hero-box {
  max-width: 67vw;
  /* never cross the middle */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* big, bright primary */
.hero-box h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.sub-hero {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* frosty secondary & tertiary */
.second-sub-hero {
  /* slightly translucent white */
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  /* soft glow behind letters for glassy feel */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.4),
    0 0 8px rgba(255, 255, 255, 0.2);
  margin-bottom: .75rem;
}

/* override the inner .hero (inside #hero-section) */
#hero-section>.hero {
  justify-content: flex-start;
  /* push content to top */
  align-items: flex-start;
  /* push content to left */
  text-align: left;
  /* make text left‑aligned */
  padding-top: 2rem;
  /* give a little breathing room from the top */
}

/* Either on #hero-section or its inner .hero */
#hero-section,
#hero-section>.hero {
  position: relative;
  /* already set, just reiterate */
  overflow: hidden;
  /* ← clips the canvas to this section */
}

/* CTA button container */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Primary button style */
.hero-cta .btn-primary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: rgba(42, 111, 249, 0.8);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.hero-cta .btn-primary:hover {
  background: rgba(42, 111, 249, 1);
  transform: translateY(-2px);
}

/* Secondary (outline) button style */
.hero-cta .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* anywhere in your CSS, after your .btn rules */

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  /* Vertical padding scales between .5rem (mobile) and .8rem (desktop) */
  padding: clamp(0.5rem, 2vw, 0.8rem)
    /* Horizontal padding scales between 1rem (mobile) and 1.6rem (desktop) */
    clamp(1rem, 5vw, 1.6rem);

  /* Text scales between .9rem (mobile) and 1rem (desktop) */
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

/* Mobile tweak: get slim on phones */
@media (max-width: 600px) {

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.hero-cta a {
  white-space: nowrap;
  /* never wrap the text */
  padding: 0.5rem 1.6rem;
  /* fixed height, more width */
  /* optional minimum width if you want them at least this wide */
  /* min-width: 8rem; */
}

/* Mobile tweak: keep same height but let width flex */
@media (max-width: 600px) {
  .hero-cta a {
    padding: 0.4rem 1.2rem;
    /* slight vertical shrink on phones */
  }
}

/* dust canvas sits above dark background, below text */
#dustCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* the actual text‐clip beam */
.shine {
  position: relative;
  color: #fff;
  /* solid white text underneath */
  display: inline-block;
}

/* the moving beam lives in the blurred copy */
.shine::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* clip our gradient to the letter shapes */
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  background-position: -100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* blur makes the beam “leak” outside the letters */
  filter: blur(4px);
  pointer-events: none;
  animation: beam-sweep 2.5s linear infinite;
}

@keyframes beam-sweep {
  from {
    background-position: -100% 0;
  }

  to {
    background-position: 100% 0;
  }
}

.elevate {
  color: #ffffff;
}

.services-section {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* hide overflow of glows */
}

.back-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  margin-top: 40px;
}

.back-button a {
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.back-button a:hover {
  background-color: #333;
}

.project-button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  margin-top: 40px;
}

.project-button a {
  background-color: #ffffff;
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.project-button a:hover {
  background-color: #757575;
}

/* top‑left */
.services-section::before {
  top: -200px;
  left: -300px;
}

/* bottom‑right */
.services-section::after {
  bottom: -350px;
  right: -350px;
}

/* ensure your content sits above the glows */
.services-section>* {
  position: relative;
  z-index: 1;
}

.services-section h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
}


/* Section Headings */
.about-section h2,
.contact-section h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-section {
  background-color: #151515;
}

/* About */
.about-section p {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* Services */
/* Water‑fill ripple on .service-box */

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-box {
  position: relative;
  overflow: hidden;
  /* contain the ripple */
  --mouse-x: 50%;
  --mouse-y: 50%;

  background: #fff;
  /* white base like .card */
  color: #111;
  /* dark text */
  padding: 2rem;
  /* your original padding */
  width: 280px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition:
    color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Water‑fill ripple */
.service-box::before {
  content: "";
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 0;
  height: 0;
  background: #111;
  /* dark ripple */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  mix-blend-mode: multiply;
  will-change: width, height;
  z-index: 0;
}

.service-box.hovered::before {
  width: 300%;
  height: 300%;
}

/* lift content above ripple and animate text color */
.service-box * {
  position: relative;
  z-index: 1;
  transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* On hover, swap to white text & deeper shadow */
.service-box.hovered {
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.service-box h3 {
  margin-bottom: 0.75rem;
}

.service-box p {
  margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  /* background-color: #151515; */
}

.contact-title {
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.project-subtitle {
  display: block;
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.4rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

/* Contact Info */
.contact-info-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  color: #ffffff;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-socials a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.contact-socials a:hover {
  transform: scale(1.2);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #151515;
  padding: 2rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: none;
  border-left: none;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.input-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-row input,
.contact-form textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: none;
  border-left: none;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #eee;
  font-size: 1rem;
  resize: vertical;
  transition: 0.3s ease;
  width: 100%;
  font-family: 'Geist', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(107, 183, 206, 0.05);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.btn-primary {
  background: rgba(42, 111, 249, 0.8);
  backdrop-filter: blur(12px);
  color: #ffffff;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Geist', sans-serif;
}

.btn-primary:hover {
  background: #e5e5e5;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .floating-nav.active .nav-links {
    display: flex;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .service-boxes,
  .founders-container,
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .input-row {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }
}

.cool-footer {
  background-color: #151515;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='0.5' fill='%23222222' /%3E%3Ccircle cx='20' cy='30' r='0.5' fill='%23222222' /%3E%3Ccircle cx='50' cy='80' r='0.5' fill='%23222222' /%3E%3Ccircle cx='70' cy='70' r='0.5' fill='%23222222' /%3E%3Ccircle cx='80' cy='10' r='0.5' fill='%23222222' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;

  color: #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1.5rem 1.2rem;
  box-shadow: inset 0 0 20px #0008;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 0.8rem;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #52b0e7;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  /* Remove underline */
  border-bottom: none;
  padding-bottom: 0;
  max-width: fit-content;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #bbb;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
  color: #bbb;
  transition: color 0.25s ease;
  cursor: default;
}

.contact-info ul li:hover {
  color: #3e3e3e;
}

.contact-info .icon {
  color: #ffffff;
  font-size: 1.1rem;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  .contact-info .icon i {
    transform: none !important;
    rotate: 0deg !important;
    scale: 1 !important;
  }
}

.social-connect .social-links {
  display: flex;
  gap: 1.4rem;
  margin-top: 0.3rem;
}

.social-links a {
  font-size: 1.4rem;
  color: #aaa;
  background: #22272b;
  height: 40px;
  width: 40px;
  padding: 6px 9px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.social-links a:hover,
.social-links a:focus {
  color: #52b0e7;
  background: #1e91ff33;
  transform: scale(1.2);
  outline: none;
  box-shadow: 0 0 10px #52b0e7;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.04em;
  padding-top: 0.8rem;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

.social-links a.x-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: #aaa;
  background: #22272b;
  padding: 6px 9px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

.social-links a.x-icon:hover,
.social-links a.x-icon:focus {
  color: #52b0e7;
  background: #1e91ff33;
  transform: scale(1.2);
  outline: none;
  box-shadow: 0 0 10px #52b0e7;
}

#custom-cursor {
  position: fixed;
  width: 30px;
  /* larger radius */
  height: 30px;
  border-radius: 50%;
  border: 1px solid white;
  /* thin border */
  background-color: transparent;
  /* hollow inside */
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  /* only affects the border */
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.magnetic-hover #custom-cursor {
  transform: translate(-50%, -50%) scale(1.8);
  /* was scale(2) */
}

body {
  cursor: none;
}

a,
button {
  cursor: none;
}

/* Disable default cursors on all interactive elements */
*,
*::before,
*::after {
  cursor: none !important;
}

/* Disable custom cursor & restore default pointer on mobile */
@media (max-width: 768px) {

  /* Hide the custom-cursor element */
  #custom-cursor {
    display: none !important;
  }

  /* Restore normal cursors for everything */
  * {
    cursor: auto !important;
  }
}