.bottom-header-atgvct {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 320px;
  transition: background-image 0.6s ease-in-out;
  overflow: hidden;
}

.bottom-header-atgvct::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.92), rgba(10,10,15,0.75));
  z-index: 1;
}

.bottom-header-hero-atgvct {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 100px;
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.3s ease-out;
}

.bottom-header-title-atgvct {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #06b6d4, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle styling */
.bottom-header-subtitle-atgvct {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== Typewriter Effect ===== */
.typewriter-title,
.typewriter-subtitle {
  display: inline-block;
  overflow: hidden;
  white-space: normal;  /* allow multi-line typing but white-space: nowrap; => doesn't allow multi-line typing */
  border-right: 2px solid #06b6d4;
  animation: blinkCursor 0.8s step-end infinite;
}


@keyframes blinkCursor {
  0%,100% { border-color: transparent; }
  50% { border-color: #06b6d4; }
}

/* ===== Word-by-word Fade ===== */
.word-span {
  opacity: 0;
  display: inline-block;
  animation: fadeWord 0.5s forwards ease;
}

@keyframes fadeWord {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .bottom-header-title-atgvct { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .bottom-header-hero-atgvct { padding: 100px 20px 80px; }
  .bottom-header-title-atgvct { font-size: 2rem; }
  .bottom-header-subtitle-atgvct { font-size: 1rem; }
}

@media (max-width: 480px) {
  .bottom-header-title-atgvct { font-size: 1.7rem; }
  .bottom-header-subtitle-atgvct { font-size: 0.9rem; }
}



