.typewriter-container {
    position: absolute;
    top: 32%;
    left: 0px;
    right: 933px;
    text-align: center;
    z-index: 100;
    margin: 0 auto;
    width: 100%;
    max-width: 629px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.hero6-main-area {
  position: relative;
}

.hero6-main-area .bg-img1 {
  position: relative;
  z-index: 1;
}

.hero6-main-area .bg-img1 img {
  width: 100%;
  height: auto;
  display: block;
}

.hero6-main-area .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.typewriter-text {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  overflow: hidden;
  border-right: 3px solid #ffffff;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 2px;
  animation: 
    typing 3.5s steps(30, end) forwards,
    blink-caret .75s step-end 5;
  animation-iteration-count: 1;
}

/* Daktilo yazma efekti */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* İmleç efekti */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #ffffff; }
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
  .typewriter-text {
    font-size: 28px;
  }
  
  .typewriter-container {
    top: 30%;
    padding: 15px;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .typewriter-text {
    font-size: 22px;
  }
  
  .typewriter-container {
    top: 25%;
    padding: 10px;
    width: 95%;
  }
}