
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      background-color: #1C1C1C;
      font-family: Arial, sans-serif;
      width: 100%;
      box-sizing: border-box;
    }

    *, *::before, *::after {
      box-sizing: inherit;
    }

    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: black;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #preloader video {
      width: 700px;
      max-width: 80%;
      height: auto;
    }  
   @media (max-width: 600px) {
    #preloader video {
      width: 100%;
      max-width: 100%;
      height: auto;
    }
  }
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 700px;
      width: 100%;
      padding: 20px;
    }

    img {
      margin-bottom: 2rem;
      width: 100%;
      max-width: 800px;
      height: auto;
    }

    .divider {
      margin: 2rem 0;
      width: 100%;
    }

    h2, span {
      color: white;
      font-weight: 300;
      text-align: center;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: -1rem;
    }

    span {
      font-size: 1.5rem;
      margin: 2rem 0;
    }
    @media (max-width: 600px) {
      span {
      font-size: 1rem;
      margin-bottom: 3rem;
      }
    }
    .subscribe-form {
      display: flex;
      width: 100%;
      max-width: 600px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .subscribe-form input {
      flex: 1 1 30px;
      padding: 15px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    .subscribe-form button {
      flex: 0 1 auto;
      padding: 15px 20px;
      border: none;
      border-radius: 5px;
      background-color: #E85002;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      white-space: nowrap;
    }

    .subscribe-form button:hover {
      background-color: #e64d2e;
    }

    .social-links {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }  
    @media (max-width: 600px) {
      .ssocial-links {
          gap: 10px;
          width: 30px;
          height: 30px;
      }
    }

    .social-links a {
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      margin-top: 4rem;
    }
     @media (max-width: 600px) {
      .ssocial-links {
      margin-top: 100px;
      }
    }

    .social-links a:hover {
      color: #e64d2e;
    }

    @media (max-width: 600px) {
      .subscribe-form {
        flex-direction: column;
        gap: 10px;
      }

      .subscribe-form input,
      .subscribe-form button {
        width: 100%;
        height: auto;
      }
    }
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  max-width: 300px;
  width: 100%;
}

.popup-box p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.popup-box span {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 700;
}

.popup-box button {
  background-color: #E85002;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  background-color: #e64d2e;
}
  
@media (max-width: 600px) {
  .social-footer-mobile {
    display: block;
    position: relative;
    bottom: 0;
    width: 100%;
    background: #1C1C1C;
    text-align: center;
    z-index: 999;
  }

  .social-footer-mobile .social-icons a {
    margin: 0 30px;
    display: inline-block;
  }

 

  .social-footer-mobile .social-icons a:hover svg {
    fill: #E85002;
  }
}
#error-message{
  display: none; 
  color: #ff4d4d; 
  margin-top: 10px; 
  font-weight: bold;
}