/*type writtern*/

.typewriter p {
    font-family: monospace;
    border-right: .15em solid orange; /* Cursor effect */
    white-space: nowrap; /* Prevents wrapping */
    overflow: hidden; /* Ensures the text doesn't overflow */
    margin: 0 auto; /* Centering */
    letter-spacing: .15em; /* Spacing between letters */
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: orange; }
}

.hidden {
    visibility: hidden; /* Hides elements */
}

.type-effect {
    position: absolute;
    width: 100%;
    height: 8%;
    top: 53vh;
    z-index: 99999;
    right: 0;
    text-align: right;
    /* background: #fff; */
    font-size: 1.5rem;
    color: #fff;
}

/*smoke*/

body{
     z-index: 0;
  background: #000 url(https://imgur.com/YKY28eT) repeat top;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.slider_area {
    z-index: 0;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.background_gradient {
    position: relative;
    width: 100%;
    height: 100%;
}

.background_gradient::before{
    width: 100%;
    height: 100%;
    background: url(../assets/img/background-image.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.slider_area:before {
  z-index: 1;
  background: transparent url(https://i.imgur.com/XYMF4ca.png) repeat top;
  -webkit-animation: move-twink-back 200s linear infinite;
  animation: move-twink-back 200s linear infinite;
}
.slider_area:after,
.slider_area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slider_area:after {
  z-index: 2;
  background: transparent url('../assets/output-onlinepngtools.png') repeat top;
  -webkit-animation: move-clouds-back 200s linear infinite;
  animation: move-clouds-back 200s linear infinite;
  opacity: 0.1;
}


#bar svg{
    border-radius:40px;
}


@-webkit-keyframes move-twink-back {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@keyframes move-twink-back {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@-webkit-keyframes move-clouds-back {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}
@keyframes move-clouds-back {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

#typewriter-text {

    display: inline-block; /* Ensures scaling works correctly */
    opacity: 1;
    transform: scale(1); /* Default scale */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Smooth scaling */
}

#typewriter-text.ease-out {
    opacity: 0; /* Gradually disappear */
    transform: scale(0.8); /* Shrink effect */
}

#typewriter-text.ease-in {
    opacity: 1; /* Gradually appear */
    transform: scale(1.2); /* Grow effect */
}



