* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

  }



  body {

    font-family: Arial, sans-serif;

  }



  /* .h2{

      color: #fff;

      padding-bottom: 10px;

  } */



  .hero-section {

    position: relative;

    height: 100vh;

    background-image: url('images/U-travel-360-landing-page.png'); /* Replace with your image path */

    background-size: cover;

    background-position: center;

    display: flex;

    justify-content: center;

    align-items: center;

    background-repeat: no-repeat;

  }



  .subscription-form-container {

    /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent background */

    padding: 20px;

    border-radius: 10px;

    max-width: 500px;

    width: 100%;

    text-align: center;
    margin-top: 520px;

  }

  .subscription-form-container form {
    display: flex;
    align-items: center;
}




  .subscription-form-container h2 {

    color: #fff;

    margin-bottom: 20px;

    font-size: 1rem;

    color: #fff;

    padding-bottom: 10px;

  }



  input[type="email"] {

    width: 80%;

    padding: 10px;

    

    /* border-radius: 6px; */

    border: none;

    font-size: 1rem;

  }



  button {

    width: 80%;

    padding: 10px;

    background-color: #000000;

    color: white;

    border: none;

    /* border-radius: 6px; */

    font-size: 1rem;

    cursor: pointer;

  }



  button:hover {

    background-color: #0056b3;

  }



  @media (max-width: 768px) {

    .subscription-form-container {

              width: 90%;

    }



    .hero-section{

       position: relative;
      /* background-image: url('images/mobile-view-next-booking.jpg'); */
       background-image: url('images/U-travel-360-landing-page.png');
        background-size: cover;

    background-position: center;

    display: flex;

    justify-content: center;

    align-items: center;

    background-repeat: no-repeat;

    }

  }

   @media (min-width: 350px) {

    .hero-section {
    background-image: url('images/utravel360_mobile.jpg');
    background-size: cover;       /* Fit entire image */
    background-position: center;
    background-repeat: no-repeat;

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
  }
  .subscription-form-container {
  
    margin-top: 93px;
  }
   
  .subscription-form-container h2
  {
    margin-bottom:-2px
  }
  }