.elementor-8468 .elementor-element.elementor-element-7d105e5a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3cd9bc19 */body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
  }

  .coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
  }

  .coming-soon h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .coming-soon p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
  }

  #countdown {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  #countdown div {
    text-align: center;
    animation: fadeSlide 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  #countdown div.show {
    opacity: 1;
    transform: translateY(0);
  }

  #countdown span.label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
  }

  .email-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  .email-form input {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 250px;
    max-width: 100%;
  }

  .email-form button {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .email-form button:hover {
    background-color: #e55a4d;
  }

  .social-icons {
    margin-bottom: 30px;
  }

  .social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #ff6f61;
  }

  .home-link {
    color: #777;
    text-decoration: underline;
    font-size: 16px;
  }

  @media (max-width: 600px) {
    .coming-soon h1 {
      font-size: 32px;
    }

    #countdown {
      gap: 20px;
      font-size: 32px;
    }
  }

  @keyframes fadeSlide {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }/* End custom CSS */