* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.coming-soon-container {
  background-image: url('../image/WhatsApp\ Image\ 2025-07-02\ at\ 18.49.08_f0b4e864.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;

}

.content{
  margin-top: -150px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  margin-top: -90px;
}

.content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 30px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto 20px;
}

.email-form input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 1rem;
}

.email-form input::placeholder {
  color: #eee;
}

.email-form button {
  background: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  color: #000;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.email-form button:hover {
  background: #ddd;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 8px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 600px) {
  .content h1 {
    font-size: 2rem;
  }

  .email-form {
    flex-direction: column;
    border-radius: 15px;
  }

  .email-form input {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .email-form button {
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
}



/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
  z-index: 999;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #333;
}

.modal-content p {
  margin-bottom: 20px;
  color: #555;
}

.close-btn {
  padding: 10px 20px;
  background: #e30218;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.close-btn:hover {
  background: #e69500;
}
