.typewriter-text {
    overflow: hidden; /* Ensures the text is hidden until typed */
    white-space: nowrap; /* Keeps text on a single line */
    margin: 0 auto; /* Centers the text */
}
.headingsec{
  width:auto;
  position:relative;
  margin-bottom:2rem;
}
.headingsec img{
  position:absolute;
  top:100%;
  left:40%;
  animation:lineanim 8s 1;
}
@keyframes lineanim {
  0%{
    opacity:0;
  }
  100%{
    opacity: 1;
  }
}