
/* General styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #000000;
  background: linear-gradient(to top, rgb(2, 31, 34) 0%, rgb(0, 0, 0) 33%, rgb(1, 37, 37) 100%);
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Semi-transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's above other content */
}

.loader-image {
  border-radius: 10px;
  width: 150px; /* Adjust the width of the loader as needed */
  height: auto; /* Maintain aspect ratio */
}


/* Intro section */
.Sec1 {
  display: flex;
  flex-direction: column; /* Changed to column for mobile view */
  align-items: center;
  margin: 1rem 2rem;
}

.Image {
  width: 100%;
  margin-bottom: 1rem;
  transition: 1s ease;
}

.Image img:hover{
  -webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}

.Info {
  width: 100%;
}

/* Key features section, Video section, and other sections remain unchanged */

  h1{
    color: aliceblue;
    letter-spacing: 0.3rem;

  }
  p{
    color: aliceblue;
    text-align: justify;
    line-height: 1.5rem;
    font-size: 15px;
  }                                       
  /* Intro section end  */


  /* key feature section start */
.key-Features {
  padding: 0 1rem;
    background: linear-gradient(to bottom, rgba(0, 27, 29, 0.993) 0%, rgb(0 7 7) 33%,rgb(0, 0, 0) 100%);
    text-align: center;
    padding-bottom: 6rem;
  }
  
  .key-Features h1 {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff; 
    padding: 4rem 0 2rem 0;
  }
  
  .key-Points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
  }
  
  .key-Points li {
    background-color: #51c4bd;
    border: 5px solid #00726a; 
    border-radius: 3rem;
    padding: 1.5rem; 
    font-weight: 500;
    font-size: 1rem;
    color: #000000;
    flex-basis: calc(33.33% - 20px);
    margin-bottom: 10px;
  }
    /* key feature section end */


    /* video section start */
    /* span{
      color: #51c4bd;
    } */
  .main {
    display: flex;
    flex-direction: column; /* Display sections vertically */
    align-items: center;
    /* background: linear-gradient(to bottom, rgb(7 77 83) 0%, rgb(0 7 7) 33%, rgb(26, 34, 34) 100%); */
    background-color: #000000;
    padding: 1rem;
  }
  
  .right-section  {
    width: 100%;
    max-width: 800px;
    height: 100%;
    margin: 1rem 6rem 1rem 2rem;
  }
  
  .left-section {
    width: 100%;
    max-width: 800px;
  }

  .left-section h2{
    margin: 3rem 5rem 1rem 7rem;
    color: aliceblue;
    font-size: 1.5rem;
    
  }
  .left-section p{
    margin: 1.5rem 5rem 1rem 7rem;
    color: aliceblue;
    text-align: justify;
    font-size: 1rem;
    
  }
  video {
    width: 100%;
    height: auto;
    margin-top: 5%;
  }

  .Vid{
    border: 1.6px  solid white; /* Adjust the border size as needed */
            box-sizing: border-box; /* Ensures border size doesn't affect overall dimensions */
  }
   .Vid-1{
    border: 1.6px  solid white; /* Adjust the border size as needed */
            box-sizing: border-box; /* Ensures border size doesn't affect overall dimensions */
            width: 100%;
    height: auto;
    margin-top: 5%;
  }

  .main2 {
    display: flex;
    flex-direction: column; /* Display sections vertically */
    align-items: center;
    background-color: #000000;
    padding: 1rem 1rem 2rem 2rem;
  }
  
  .right-section2 {
    width: 100%;
    max-width: 800px;
    margin: 1rem 5rem 1rem 2rem;
  }
  .right-section2 h2 {
    margin: 3rem 0rem 1rem 4rem;
    color: aliceblue;
    text-align: justify;
    font-size: 1.5rem;
  }
  .right-section2 p {
    margin: 1.5rem 5rem 1rem 4rem;
    color: aliceblue;
    text-align: justify;
    font-size: 1rem;
  }
  .left-section2 {
    width: 100%;
    max-width: 800px;
  }
  
  .left-section2 video {
    width: 100%;
    height: auto;
    margin-top: 5%;
  }
     
  /* everything vaildated section start*/
  .main3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #141414;;
    padding: 2rem 1rem; /* Adjust padding for mobile view */
    text-align: center; /* Center align content */
}

.main3 h1 {
  font-size: 1.5rem; /* Decrease font size for heading in mobile view */
    color: aliceblue;
    margin-bottom: 1rem;
    text-align: center;
}

.main3 p {
    margin-bottom: 1rem;
    text-align: center;
}

  /* everything vaildated section end*/

  /* form start */

  .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 5rem;
  }
  
  /* Illustration */
  .illustration {
    flex: 1; /* Take up available space */
    padding-right: 2rem; /* Add some right padding for spacing */
  }
  
  .illustration img {
    max-width: 100%; /* Ensure illustration fits container */
    height: auto;
  }
  
 /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* align-items: flex-start; */
  max-width: 1200px;
  width: 100%;
}

/* Illustration */
.illustration {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.illustration img {
  max-width: 100%;
  height: auto;
}

/* Form Container */
.form-container {
  flex: 1;
  min-width: 320px;
  padding: 20px;
}

.form-container h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 2px;
}

/* Form Styling */
form#myForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.input-field {
  width: 100%;
}

.input-field input,
.input-field textarea {
  width: calc(50% - 7.5px);
  background-color: transparent;
  border: 2px solid #00ffd5;
  border-radius: 5px;
  padding: 12px 15px;
  margin: 0px 5px 15px 0px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
}
.input-field .full-width {
  width: 100% !important;
  margin: -15px 5px -1px 0px;
}



.input-field input:focus,
.input-field textarea:focus {
  border-color: #00ffd5;
}

.input-field textarea {
  width: 100%;
  resize: none;
  height: 120px;
}

.input-field label {
  display: block;
  color: #00ffd5;
  font-weight: 500;
  margin-top: 10px;
}

button[type="submit"] {
  background-color: #3ce0c4;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0, 255, 213, 0.3);
}

button[type="submit"]:hover {
  background-color: #29bba9;
}



/* Laptop: 1024px */
@media (max-width: 1024px) {
  .illustration {
    display: none;
  }

  .contact-container {
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
  }

  .form-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
  }

  .input-field input,
  .input-field textarea {
    width: 100% !important;
  }

  .input-box {
    flex-direction: column;
    gap: 0;
  }
}


/* Tablet: 768px */
@media (max-width: 768px) {
  .illustration {
    display: none;
  }

  .form-container {
    width: 100%;
    padding: 20px;
  }

  .input-field input {
    width: 100% !important;
  }
}

/* Mobile L: 425px */
@media (max-width: 425px) {
  .illustration {
    display: none;
  }

  .form-container h2 {
    font-size: 26px;
  }

  .input-field input,
  .input-field textarea {
    width: 100% !important;
  }
}

/* Mobile M: 375px */
@media (max-width: 375px) {
  .illustration {
    display: none;
  }

  .form-container h2 {
    font-size: 24px;
  }

  .input-field input,
  .input-field textarea {
    font-size: 13px;
  }
}

/* Mobile S: 320px */
@media (max-width: 320px) {
  .illustration {
    display: none;
  }

  .form-container h2 {
    font-size: 22px;
  }

  .input-field input,
  .input-field textarea {
    font-size: 12px;
  }

  button[type="submit"] {
    font-size: 14px;
    padding: 12px;
  }
}

  
/* Media Queries */
@media screen and (max-width: 427px) {
  .key-Points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: column;
  }

  /* for sec-1 start*/
  .left-section h2{
    margin: 1.5rem 1rem 1rem 1rem;
  }
  .left-section p{
  margin: 1.5rem 1rem 1rem 1rem; 
  }
  .right-section{
    margin: 1.5rem 1rem 1rem 1rem; 
  }
  /* for sec-1 End*/

   /* for sec-2 start */
  .right-section2 h2{
    margin: 1.5rem 0rem 1rem 1rem;
  }
  .right-section2 p{
  margin: 1.5rem 0rem 1rem 1rem; 
  }
  .left-section2{
    margin: 1.5rem 1rem 1rem 0rem; 
  }
  /* for sec-2 End*/


  
}
@media (min-width: 427px) and (max-width: 770px) {
  /* Intro section */
.Sec1 {
  display: flex;
  flex-direction: column; /* Changed to column for mobile view */
  align-items: center;
  margin: 1rem 2rem;
}
   /* for sec-1 start*/
   .left-section h2{
    margin: 1.5rem 1rem 1rem 1rem;
  }
  .left-section p{
  margin: 1.5rem 1rem 1rem 1rem; 
  }
  .right-section{
    margin: 1.5rem 1rem 1rem 1rem; 
  }
  /* for sec-1 End*/

   /* for sec-2 start */
  .right-section2 h2{
    margin: 1.5rem 0rem 1rem 3rem;
  }
  .right-section2 p{
  margin: 1.5rem 0rem 1rem 3rem; 
  }
  .left-section2{
    margin: 1.5rem 1rem 1rem 1rem; 
  }


}
@media screen and (min-width: 771px) {
  .Sec1 {
    flex-direction: row;
  }

  .Image {
    width: 50%;
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .Info {
    width: 50%;
  }

  .key-Points li {
    flex-basis: calc(33.33% - 20px);
  }

  .main, .main2 {
    flex-direction: row;
     align-items: flex-start; /* Align sections to the start for mobile view */
  }

  .left-section, .right-section, .left-section2, .right-section2 {
    width: 50%;
  }

  .left-section, .left-section2 {
    order: 1; /* Change the order of left section */
  }

  

  .right-section, .right-section2 {
    margin-top: 0;
    margin-left: 1rem;
    order: 2; /* Change the order of right section */
  }


  
}

@media (min-width: 772px) and (max-width: 1024px) {
  /* Intro section */
.Sec1 {
  display: flex;
  flex-direction: column; /* Changed to column for mobile view */
  align-items: center;
  margin: 1rem 2rem;
}
.Image{
  width: 70%;
  margin-bottom: 0;
  margin-right: 1rem;
}
.Info{
  width: 90%;
}
   /* for sec-1 start*/
   .left-section h2{
    margin: 1.5rem 1rem 1rem 1rem;
  }
  .left-section p{
  margin: 1.5rem 1rem 1rem 1rem; 
  }
  .right-section{
    margin: 1.5rem 1rem 1rem 1rem; 
  }
  /* for sec-1 End*/

   /* for sec-2 start */
  .right-section2 h2{
    margin: 1.5rem 0rem 1rem 3rem;
  }
  .right-section2 p{
  margin: 1.5rem 0rem 1rem 3rem; 
  }
  .left-section2{
    margin: 1.5rem 1rem 1rem 1rem; 
  }
  /* for sec-2 End*/


}