/* Under Construction Page Styles */
.construction-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(135deg, #00264f, #004080);
  color: white;
  font-family: "Arial", sans-serif;
}

.construction-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite alternate;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.dots::after {
  content: "";
  animation: dotsAnimation 1.5s infinite;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Animated dots */
@keyframes dotsAnimation {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
  100% {
    content: ".";
  }
}

/* Bouncing icon effect */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Button Style */
.home-btn {
  background: #ffa500;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.home-btn:hover {
  background: #ff8700;
}
