.coming-soon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #ffffff;
  padding: 2rem;
  animation: fadeIn 1s ease-in-out;
}

.coming-soon-content {
  text-align: center;
  max-width: 800px;
  animation: slideUp 1s ease-in-out;
}

/* Heading Styling */
.coming-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}

/* Subtitle Styling */
.coming-subtitle {
  font-size: 1.2rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

/* Button Styling */
.contact-btn {
  display: inline-block;
  background-color: #0b0c1d;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-btn:hover {
  background-color: #ff0000;
  color: #ffffff;
  transform: scale(1.05);
}

/* 🔸 Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .coming-title {
    font-size: 2rem;
  }

  .coming-subtitle {
    font-size: 1rem;
  }

  .contact-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .coming-title {
    font-size: 1.6rem;
  }

  .coming-subtitle {
    font-size: 0.95rem;
  }
}
