.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1; /* Changed from 52 to 1 for simplicity */
  }

  .intro-hero {
    background:
      radial-gradient(circle at 15% 18%, rgba(79, 171, 255, 0.22) 0%, rgba(79, 171, 255, 0) 44%),
      radial-gradient(circle at 82% 72%, rgba(112, 192, 255, 0.20) 0%, rgba(112, 192, 255, 0) 42%),
      linear-gradient(140deg, #f4fbff 0%, #e8f4ff 45%, #ffffff 100%);
    isolation: isolate;
  }
  

  .hero__overflow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}

  .intro-hero .hero__overflow {
    display: block;
  }


@media (min-width: 64rem) {
  .hero__overflow {
    display: block;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__overflow__gradient {
    opacity: 0;
    visibility: hidden;
  }
  .no-js .hero__overflow__gradient {
    opacity: 1;
    visibility: visible;
  }
}


  
  .hero__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
   
  }

  .intro-hero .hero__main {
    position: relative;
    z-index: 2;
    max-width: 78rem;
    padding: 0 1.25rem;
  }


  @keyframes animate {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Simplified title styles */
  .hero__main__title {
    color: #e8eaed;
    text-align: center;
    font-family: Google Sans Display, sans-serif;
    font-size: min(max(60px, 11.111vw), 160px);
    font-weight: 400;
    line-height: 1;
    padding: 0;
    letter-spacing: -0.76px;
    margin-bottom: 0px;
    padding-bottom: 5px;
  }
  
  /* Removed media queries and animations for simplicity */

  
  
  /* Adjusted for new animation */
  .hero__main__title, .button-container .custom-button {
    opacity: 0;
    transform: translateY(100px); /* Starting position off-screen */
  }
  
  /* New animation definition */
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Applying the slideUp animation */
  .hero__main__title, .button-container .custom-button {
    animation: slideUp 0.5s ease-out forwards;
  }
  
  /* Individual delays for title and buttons */
  .hero__main__title {
    animation-delay: 0.5s;
  }
  
  .button-container .custom-button {
    animation-delay: 0.75s; /* Same delay for all buttons, can be individual if needed */
  }
  
  /* Styles for the button container */
  .button-container {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 25px; /* Adjust as needed */
  }

  .intro-hero__subtitle {
    color: rgba(14, 43, 77, 0.75);
    font-size: clamp(1rem, 2.1vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 46rem;
    margin: 0.6rem auto 0;
  }

  .intro-hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .intro-hero__chip {
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #0b4a87;
    border: 1px solid rgba(79, 171, 255, 0.38);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
  }

  .intro-hero__ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
  }

  .intro-hero__ambient--one {
    width: clamp(16rem, 30vw, 26rem);
    height: clamp(16rem, 30vw, 26rem);
    top: -8%;
    left: -4%;
    background: radial-gradient(circle, rgba(118, 196, 255, 0.42) 0%, rgba(118, 196, 255, 0) 68%);
    animation: intro-float-a 12s ease-in-out infinite;
  }

  .intro-hero__ambient--two {
    width: clamp(18rem, 32vw, 30rem);
    height: clamp(18rem, 32vw, 30rem);
    right: -8%;
    bottom: -18%;
    background: radial-gradient(circle, rgba(197, 231, 255, 0.42) 0%, rgba(197, 231, 255, 0) 70%);
    animation: intro-float-b 15s ease-in-out infinite;
  }

  .intro-hero__grid {
    position: absolute;
    inset: -20%;
    background-image:
      linear-gradient(rgba(110, 164, 239, 0.14) 1px, transparent 1px),
      linear-gradient(90deg, rgba(110, 164, 239, 0.14) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65), transparent 72%);
    opacity: 0.33;
    animation: intro-grid-pan 26s linear infinite;
    pointer-events: none;
  }

  .intro-hero .hero__main__title {
    color: #0e3f73;
    text-shadow: 0 10px 26px rgba(121, 191, 255, 0.28);
  }

  @keyframes intro-float-a {
    0%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      transform: translate3d(24px, 18px, 0) scale(1.08);
    }
  }

  @keyframes intro-float-b {
    0%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      transform: translate3d(-30px, -22px, 0) scale(1.06);
    }
  }

  @keyframes intro-grid-pan {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-48px, -48px, 0);
    }
  }

  @media (max-width: 63.9375rem) {
    .intro-hero__chips {
      gap: 0.5rem;
      margin-top: 1.1rem;
    }
    .intro-hero__chip {
      font-size: 0.76rem;
      padding: 0.42rem 0.72rem;
    }
    .intro-hero__grid {
      opacity: 0.2;
      background-size: 34px 34px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .intro-hero__ambient--one,
    .intro-hero__ambient--two,
    .intro-hero__grid {
      animation: none;
    }
  }
  
 

  @keyframes infinite-gradient {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  /* .infinite-gradient {
    background: linear-gradient(270deg, #086FFF, #FFDDB7, #086FFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: infinite-gradient 3s linear infinite;
  }   */

  .infinite-gradient {
    background: linear-gradient(270deg, #086FFF, #FFDDB7, #086FFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text; /* This is the standard property */
    -webkit-text-fill-color: transparent;
    animation: infinite-gradient 3s linear infinite;
  }
  
