html, body {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
}

/* Footer */
.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Main content should respect the height of the navbar and footer */
.main-content {
  margin-top: 70px; /* Adjust according to the height of your navbar */
  margin-bottom: 60px; /* Adjust according to the height of your footer */
}


.navbar-brand {
  color: black;
}
.nav-link {
  color:black;
}
main {
  margin-top:80px;
}
section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-brand {
  font-weight: bold;
}
.welcome-message {
  font-size: 2.5rem;
  font-weight: bold;
}
.welcome-points {
  font-size: 1.2rem;
}
.welcome-section {
  align-items: flex-start; /* Aligns the content to the top */
  padding-top: 100px; /* Adds space from the top to avoid overlap with the navbar */
}
/* Fixing the Welcome Section */
#welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1;
}
/* Adding padding-top to About section so it appears below the Welcome section */
#about {
  margin-top: 100vh;
  padding-top: 50px;
}
/* About and Contact Sections should layer over the Welcome section */
#about, #contact {
  position: relative;
  z-index: 2; /* Higher z-index to ensure they layer over Welcome */
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 12px;
  color: lightgray;
}


.popup {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

.popup-header {
  background-color: #f8f9fa;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-body {
  padding: 1rem;
}

/* Fade out animation */
.fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.otp-input-container {
  display: flex;
  justify-content: center; /* Align the inputs horizontally in the center */
  gap: 10px; /* Add space between the input boxes */
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-sm {
  font-size: 12px;
}