html{
scroll-behavior: smooth;}



/* Use your uploaded cursor PNG */
 
 body {
    cursor: url('./images/cursorArrow.png') 4 12, pointer; /* Adjust hotspot x/y if needed */
  }

  /* Revert to normal cursor on text or input areas */
  a, input, textarea, button, select, [contenteditable], ::selection {
    cursor: auto !important;
  }

  /* Optional: pointer for links, but with your style */
  a {
    cursor: url('./images/cursorHand.png') 4 4, pointer !important;
  }
  /* Custom font import using local path */
@font-face {
    font-family: 'Stifly';
    src: url('./font/Stifly_Heading.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'JunkRobo';
    src: url('./font/JunkRobo-z8vzX_SubHeading.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }


  /* Apply custom font globally and set text color to white */
  .cyberFont {
    font-family: 'Stifly', sans-serif; /* Added a comma between 'cyber' and 'sans-serif' */
    color: white; /* Added this line to set the font color to white */
      -webkit-text-stroke: 0.010em black !important;

  }

    /* Apply custom font globally and set text color to white */
  .SubHeadingFont, a {
    font-family: 'JunkRobo', sans-serif; /* Added a comma between 'cyber' and 'sans-serif' */
    color: white; /* Added this line to set the font color to white */

  }




    .hero {
      background-image: url('./images/Hero-BG_01_full.png') !important;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }


    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .floating {
      animation: float 4s ease-in-out infinite;
    }

    .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    transition: transform 0.3s ease, scale 0.3s ease;
  }

  .letter:hover {
    transform: scale(1.3) rotate(5deg) !important;
    z-index: 50 !important;
     text-shadow:
    0 0 5px #0000F7,
    5px 0 10px #0000F7,
    0 0 20px #d7003d,
    0 0 30px #d7003d;

  transition: all 0.3s ease;

  }

    .letter:nth-child(1) { animation-delay: 0.2s; }
    .letter:nth-child(2) { animation-delay: 0.4s; }
    .letter:nth-child(3) { animation-delay: 0.6s; }
    .letter:nth-child(4) { animation-delay: 0.8s; }
    .letter:nth-child(5) { animation-delay: 1s; }
    .letter:nth-child(6) { animation-delay: 1.2s; }
    .letter:nth-child(7) { animation-delay: 1.4s; }
    .letter:nth-child(8) { animation-delay: 1.6s; }
    .letter:nth-child(9) { animation-delay: 1.8s; }



    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Button Styles */
 











.scale-up {
  transition: transform 0.3s ease !important;
}

.scale-up:hover {
  transform: scale(1.05) !important;
}


/* Button Styles - Neon Cyberpunk Theme */
.cta-button {
  background-color: rgba(0, 0, 0, 0.521);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #00f0ff; /* Neon blue border */
  position: relative;
  font-family: 'Rajdhani', 'Orbitron', sans-serif; /* Futuristic fonts */
  font-weight: bold;
  letter-spacing: -0.05rem;
  text-transform: uppercase;
  -webkit-text-stroke: 0.05em rgb(0, 0, 0);
  text-shadow:
    0 0 5px #0000F7,
    0 0 10px #0000F7,
    0 0 20px #0000F7;
  transition: all 0.3s ease;
  box-shadow:
    0 0 5px #0000F7,
    0 0 10px #0000F7,
    inset 0 0 5px rgba(253, 0, 0, 0.86),
    inset 0 0 10px rgb(255, 0, 0);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 15px rgba(0, 240, 255, 0.8),
    0 0 30px rgba(0, 240, 255, 0.5),
    inset 0 0 10px rgba(0, 240, 255, 0.8),
    inset 0 0 20px rgba(0, 240, 255, 0.5);
  animation: pulse 1.5s infinite alternate;
}

.cta-button1 {
  background-color: transparent;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #ff0055; /* Neon red border */
  position: relative;
  font-family: 'Rajdhani', 'Orbitron', sans-serif; /* Futuristic fonts */
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.055em rgb(255, 255, 255);
  text-shadow:
    0 0 5px #ff0055,
    0 0 10px #ff0055,
    0 0 20px #ff0055;
  transition: all 0.3s ease;
  box-shadow:
    0 0 5px rgba(255, 0, 85, 0.5),
    0 0 10px rgba(255, 0, 85, 0.3),
    inset 0 0 5px rgba(255, 0, 85, 0.5),
    inset 0 0 10px rgba(255, 0, 85, 0.3);
}

.cta-button1:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 15px rgba(255, 0, 85, 0.8),
    0 0 30px rgba(255, 0, 85, 0.5),
    inset 0 0 10px rgba(255, 0, 85, 0.8),
    inset 0 0 20px rgba(255, 0, 85, 0.5);
  animation: pulse-red 1.5s infinite alternate;
}

/* Pulsing animations */
@keyframes pulse {
  from {
    box-shadow:
      0 0 5px rgba(0, 240, 255, 0.5),
      0 0 10px rgba(0, 240, 255, 0.3),
      inset 0 0 5px rgba(0, 240, 255, 0.5),
      inset 0 0 10px rgba(0, 240, 255, 0.3);
  }
  to {
    box-shadow:
      0 0 15px rgba(0, 240, 255, 0.8),
      0 0 30px rgba(0, 240, 255, 0.5),
      inset 0 0 10px rgba(0, 240, 255, 0.8),
      inset 0 0 20px rgba(0, 240, 255, 0.5);
  }
}

@keyframes pulse-red {
  from {
    box-shadow:
      0 0 5px rgba(255, 0, 85, 0.5),
      0 0 10px rgba(255, 0, 85, 0.3),
      inset 0 0 5px rgba(255, 0, 85, 0.5),
      inset 0 0 10px rgba(255, 0, 85, 0.3);
  }
  to {
    box-shadow:
      0 0 15px rgba(255, 0, 85, 0.8),
      0 0 30px rgba(255, 0, 85, 0.5),
      inset 0 0 10px rgba(255, 0, 85, 0.8),
      inset 0 0 20px rgba(255, 0, 85, 0.5);
  }
}

/* Responsive placement */
@media (max-width: 768px) {
  .cta-button, .cta-button1 {
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 250px;
  }
  
}

@media (min-width: 769px) {
  .cta-button, .cta-button1 {
    display: inline-block;
    margin: 0 10px;
  }
  
}
 


@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-slow {
  animation: floatUpDown 5s ease-in-out infinite;
}