/* CSS for Inqury-Form
----This Form Designed By (RR Digital Soultions, Bilaspur HP)----
------Its Free to Use But Maintain the Watermark for Our Marketing------- */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;

}

body{
    background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%);
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}


.contact-container{
    height: 94vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    
}

.contact-left {
  /* Your existing styles */
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  text-align: center;
  padding: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3), -5px -5px 10px rgba(255, 255, 255, 0.3);

  /* Add animation */
  transform: scale(0.8); /* Initial scale */
  opacity: 0;
  animation: zoomOut 1s forwards;
}

@keyframes zoomOut {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


  

.page-main-title {
    font-weight: 200;
    color: black;
    font-size:15px;
    text-align: center;
}
    
    hr {
    border: none;
    width: 50vw;
    height: 5px;
    background: linear-gradient(#fac6a1,#fa6d86);
    border-radius: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;

}

.contact-left-title{
    font-weight: 100;
    color: black;
    margin-bottom: 5px;
    font-size:1.5vw;
    padding-right: 1vw;
}

.contact-input{
    width: 40vw;
    height:4vh;
    border-radius: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    font-weight: 700;
    
    

}

label {
    font-size: 14px;
    font-weight: 300;
  }


.contact-left textarea{
    height:10vh;
    padding-top: 15px;
    border-radius: 20px;

}

.contact-input:focus{
    border:2px solid orange;
}

.contact-input::placeholder{
    color:black;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#ff994f,#fa6d86);
    cursor: pointer; 
    
}
.book-button{
    display: flex;
    justify-content: center;
    
}
.contact-right img{
    width: 500px;
}

/* CSS for Inqury-Form
----This Form Designed By (RR Digital Soultions, Bilaspur HP)----
------Its Free to Use But Maintain the Watermark for Our Marketing------- */

@media(max-width:800px){
    .contact-input{
        width: 90vw;
    }
    .contact-right {display: none}

      h2{
        font-size: 3vw;
      }
h4{

}
      .contact-left-title {
        font-size: 3vw;
      }
     
}

  




  