@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
  background-color: #000;
  color: #E0E0E0;
  overflow-x: hidden;
}


.frosted-glass {
  background-color: transparent; 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 0.75rem; 
}

nav.frosted-glass {
  background-color: transparent; 
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}


.typing-effect {
  width: 4.5ch;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid #1abc9c; 
  animation: typing 1s steps(4), blink 0.5s step-end infinite alternate;
}

@keyframes typing {
  from { width: 0; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.875rem;
  top: 0.25rem;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2); 
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1abc9c; 
  border-radius: 9999px;
  z-index: 10;
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}