.hero-image {
  width: 75%;
  height: auto;
  margin: auto;
}

/* Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: white;
  }
}

/* Letter Fade-In Animation */
@keyframes fadeInLetter {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bounce-In Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* Tailwind Animation Extensions */
.typing-effect {
  /* overflow: hidden; */
  /* white-space: nowrap; */
  border-right: 2px solid white;
  animation: typing 4s steps(30, end), blink 0.7s step-end infinite;
}

.fade-in-letters span {
  display: inline-block;
  opacity: 0;
  animation: fadeInLetter 0.5s ease-in-out forwards;
}

.bounce-in {
  animation: bounceIn 1s ease-in-out;
}

/* Star Animation */
@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Slide-Up Fade-In Animation */
@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom-In Animation */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tailwind Animation Extensions */
.star {
  width: 5px;
  height: 5px;
  position: absolute;
  animation: twinkle 2s infinite ease-in-out;
}

/* Random Star Positions */
.star:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-duration: 3s;
}

.star:nth-child(2) {
  top: 50%;
  left: 70%;
  animation-duration: 4s;
}

.star:nth-child(3) {
  top: 80%;
  left: 40%;
  animation-duration: 2.5s;
}

/* Add more positions as needed */
/* Footer Base Styles */
.footer {
  position: relative;
  background: #ffffff;
  /* Primary color */
}

/* Gradient background below the wave */
.footer-content {
  background: linear-gradient(to bottom, white, #f7f7f7);
  /* White gradient */
  padding: 2rem 0;
}

/* Footer Wave SVG */
.footer .wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  /* Adjust height for wave */
  z-index: 1;
  margin-top: 2rem;
}

.footer path {
  fill: #b0be4f;
  /* Primary color */
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  /* 3D shadow effect */
}

.hide-default-scroller {
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.hide-default-scroller ::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}

/* Mobile Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  /* Off-screen initially */
  width: 100%;
  height: 100%;
  /* background-color: #102b4c; */
  transition: left 0.3s ease;
  z-index: 999;
}

.sidebar.open {
  left: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

.overlay.show {
  display: block;
}