/* === Background Gradient (can be applied with a utility class or inline) === */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.bg-conic-custom {
  background: conic-gradient(from 135deg, #191056, #060221, #030116, #191056) !important;
  min-height: 100vh;
  color: white;
}


/* Text Flying Animation */

/* .hero-text-smear {
  transition: transform 0.2s ease-out;
  will-change: transform;
  transform: perspective(1000px);
}
@media (hover: none) {
  .hero-text-smear:active {
    transform: perspective(1000px) rotateX(1deg) rotateY(-1deg);
  }
} */







/* Light Speckle */

 /* .speckle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: rgba(68, 138, 99, 0.6);
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.5);
    animation: floatFast 1.5s ease-in-out infinite;
  }

  @keyframes floatFast {
    0% { transform: translateY(10px) translateX(0); }
    50% { transform: translateY(-10px) translateX(10px); }
    100% { transform: translateY(0) translateX(-10px); }
  }

  .speckle.animate-to-center {
    transition: all 1.2s ease-in-out;
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    top: 50% !important;
    opacity: 0;
  }

  #glowing-orb.show {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
  }

 @keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}

#glowing-orb.show {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
} */


/* speckle 2 */

  .speckle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 9999px;
    background: rgba(119, 211, 146, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    animation: floatFast 2.5s ease-in-out infinite;
  }

  @keyframes floatFast {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0) translateX(0); }
  }

  .speckle.animate-to-center {
    transition: all 1.2s ease-in-out;
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    top: 50% !important;
    opacity: 0;
  }

  #glowing-orb.show {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
  }

  @keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}

#glowing-orb.show {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}


/* INVESTOR SECTION */
 /* @media (max-width: 1024px) {
  #revealWrapper {
    position: static !important;
    z-index: auto !important;
    pointer-events: auto !important;
    display: block !important;
  }

  #revealMask {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
} */





 





/* === Text Animations === */
/* === "Why Choose Us" Gradient === */
@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-gradient {
  background: linear-gradient(45deg, #10B981, #FBBF24);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
}

.zoom-out {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.zoom-out.scrolled {
  transform: scale(0.8);
}

  .slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .slide-up.scrolled {
            opacity: 1;
            transform: translateY(0);
        }

/* === Hero Pop Animations === */
@keyframes popUp {
  0% { opacity: 0; transform: scale(0.6); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pop1 {
  animation: popUp 1.5s ease-out 1.0s forwards;
}
.pop2 {
  animation: popUp 2.5s ease-out 1.5s forwards;
}
.pop3 {
  animation: popUp 3.5s ease-out 2.0s forwards;
}

/* === Section 2 Line + Circle === */
@keyframes lineToCircle {
  0% {
    height: 100%;
    width: 1px;
    border-radius: 0;
    opacity: 1;
  }
  50% {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
  }
  100% {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 0;
  }
}

@keyframes circleUp {
  0% { bottom: 0; opacity: 1; }
  100% { bottom: 100%; opacity: 0; }
}

#white-line {
  animation: lineToCircle 5s infinite;
}

#circle {
  animation: circleUp 5s infinite;
}

.animate-slide-polygon {
  animation: slidePolygon 10s linear infinite;
}

/* === Flip Animation === */
@keyframes rotateCard {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}





/* === Scroll Zoom Animation === */
.zoom-on-scroll {
  transform: scale(0.8);
  opacity: 0.4;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.zoom-on-scroll.zoomed {
  transform: scale(1);
  opacity: 1;
}





/* infinite scroll */


  @keyframes spin-slow {
    0% { transform: translateX(-50%) rotate(100deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
  }
  .animate-spin-slow {
    animation: spin-slow 20s linear infinite;
  }





  /* <!-- Card Rotation Keyframes --> */

  @keyframes rotateCard {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }


