* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body, html {
    height: 100%;
    background-color: black;
    color: white;
  }

  body.modal-open .content {
    filter: blur(8px);
  }

  .hero {
    background: url('image/generative_fill_copy.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 60px 20px;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
/*    background-color: rgba(0, 0, 0, 0.7);*/
    z-index: 0;
  }

  .content {    padding-top: 90px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    transition: filter 0.3s ease;
  }

  .logo {
    width: 160px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: -40px;
  }

  h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: -10px;
  }

  .description {
    font-size: 1rem;
    color: #00e6e6;
    line-height: 1.6;
    margin-bottom: 300px;
    margin-top: -20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .video-text .highlight {
    color: #00ffff;
    font-weight: 500;
  }

  .launch {
    font-size: 1.6rem;
    margin: 40px 0 30px;
    font-weight: normal;
  }
  #contactForm > span {
    color: #554b4b;
    font-size: 23px;
    padding-top: 5px;
}
  .form {border: 1px solid #00f5ff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .form input, .form button {
    padding: 10px 12px;
    width: 200px;
/*    border: 2px solid #00f5ff;*/
/*    border-radius: 8px;*/
border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    transition: all 0.4s ease-in-out;
    outline: none;
  }

  /*.form input:focus, .form button:focus {
    border-color: #00f5ff;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
    animation: bounce 0.5s ease-in-out;
  }*/
input:-webkit-autofill {
    -webkit-text-fill-color: white !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

  @keyframes bounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

/*  .form button:hover {
    background-color: #00f5ff;
    color: black;
    transform: translateY(-4px);
  }*/

  /*.form input:hover {
    border-color: #00f5ff;
    background-color: rgba(0, 245, 255, 0.05);
  }*/

  #submitBtn {
    background-color: #000;
    color: #00f5ff;
    padding: 10px 20px;
   /* border: none;*/
/*       text-transform: uppercase;*/
        border-left: 1px solid #00f5ff;
    cursor: pointer;
  }

  /*#submitBtn:hover {
    background-color: #00f5ff;
  }*/

  .contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-link:hover {
    color: #00f5ff;
  }

  input.error {
    animation: shakeInput 0.3s ease-in-out;
    border-color: red;
    border-bottom: 1px solid red;
  }

  @keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
  }

  #notification {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    text-align: center;
    z-index: 10001;
    max-width: 300px;
    width: 80%;
    animation: pulseBackground 2s infinite alternate;
    border: 2px solid #00f5ff;
  }

  @keyframes pulseBackground {
    0%, 100% {
      background-color: black;
    }
  }

  #okButton {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
  }

  div.error {
    display: none !important;
    margin-top: 5px;
    color: red;
    font-size: 10px;
    margin-bottom: 10px;
  }

  @keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes flipInLeft3D {
    0% { opacity: 0; transform: perspective(1000px) rotateY(-90deg); }
    100% { opacity: 1; transform: perspective(1000px) rotateY(0deg); }
  }

  .animated-para {
    opacity: 0;
    animation: fadeSlideUp 1.2s ease-out forwards;
    animation-delay: 2.8s;
    font-size: 1rem;
    line-height: 1.6;
    color: #00f5ff;
  }

  .highlight {
    /*display: inline-block;
    opacity: 0;
    animation: flipInLeft3D 1.2s ease-out forwards;
    animation-delay: 1.8s;
    transform-origin: left;*/
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff4c60;
    text-align: center;
  }
@media (max-width: 900px) {.content {
    padding-top: 10px;
}
.hero {
             background: url(image/generative_fill_copy.png) no-repeat 30px 60px;
        background-size: contain; min-height: 90vh;
 
    }
}
  @media (max-width: 768px) {
    .form input, .form button {
    padding: 10px 12px;
    width: 200px;
    border: 1px solid #00f5ff;
   border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 1rem;
    transition: all 0.4s ease-in-out;
    outline: none;
  }  #contactForm > span {display:none;} .form {border: none;}
    .hero {
             background: url(image/Mobile-banner_new.jpg) no-repeat 0px 0px;
        background-size: contain;
 
    }
.content {
    padding: 10px;}
    h1 {
      font-size: 1.6rem;
    }

    .description {
      color: #fff;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .logo {
      width: 140px;
      top: -20px;
      margin-top: 10px;
    }

    .form {
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }.description {
       
        margin-bottom: 10px;}

.video-text p {margin: 0;}
    .form input, .form button {
      width: 90%;
      max-width: 300px;
    }.video-text p {
    padding: 10px;}
p.highlight { padding: 10px;}
    .launch {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 30px 10px;
    }

a.contact-link {
    font-size: 13px;
}
    h1 {padding-bottom: 20px;padding-top: 320px;
      font-size: 1.3rem;
    }

    .description {
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .logo {margin-bottom: 25px;
      width: 120px;
      top: -10px;
      margin-top: 8px;
    }
.launch {
    margin: 10px 0 30px;}
    .form input, .form button {
      width: 100%;
      max-width: 280px;
    }

    .launch {
      font-size: 1.2rem;
    }
  }
