 

     #loader-text {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Hide when done */
    #loader-text.hidden {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }


    #loader-text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0; /* space top & bottom */
}

#loader-text svg {
  width: 100%;
  max-width: 900px; /* optional */
  height: 500px;
}


    svg {
      width: 80%;
      max-width: 1000px;
    }

    .stroke-text {
      font-size: 80px;
      font-weight: 700;
      font-family: "Arial", sans-serif;
      fill: none;
      stroke: url(#text-gradient);
      stroke-width: 2.5;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: textStroke 5s ease-in-out infinite;
    }

    @keyframes textStroke {
      0% {
        stroke-dashoffset: 1000;
        fill: transparent;
      }
      50% {
        stroke-dashoffset: 0;
        fill: transparent;
      }
      75% {
        stroke-dashoffset: -1000;
        fill: url(#text-gradient);
      }
      100% {
        stroke-dashoffset: -2000;
        fill: url(#text-gradient);
      }
    }