@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

* {
  margin: 0;
  padding: 0;
}
/* universal font  */
.main {
  padding-inline: 40px;
  font-family: syne;
  max-width: 1400px; 
  font-family: poppins;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
/* only the poppins font  */
.poppins {
  font-family: poppins;
  color: #3A3A3A;
  font-weight: normal;
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.h1,
.h2 {
  font-size: 60px;
  color: #07124d;
}
.h1 {
  margin-top: 6rem;
  margin-bottom: 4rem;
}
/* the pale blue box  */
.contact_div {
  background-color: #f8f9fe;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px; 
  margin: 0 auto;
  padding: 40px;
  gap: 100px; 
  justify-content: center; 
  border-radius: 10px;
}
.left_div,
.right_div {
  display: flex;
  flex-direction: column;
  flex: 1; 
  max-width: 500px; 
}
.butons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
  width: 250px;
  text-decoration: none;
  padding: 10px;
  background-color: #07124d;
  color: white;
  border-radius: 10px;
}

.butons a{
  text-decoration: none;
  color: white;
  display: flex;
  gap: 20px;
  align-items: center;
}
.social_icons {
  display: flex;
  height: 50px;
  /* margin-top: 15px; */
  display: flex;
  flex-wrap: wrap;
 font-size: 1.8rem;
  gap: 1.5rem;
}
.social_icons a {
  color: #07124d;
   cursor: pointer;
   text-decoration: none;
}
.social_media {
  margin-top: 16px;
}
/* the help section  */
.help {
  display: flex;
  flex-direction: row;
  gap: 200px;
  padding-inline-end: 40px;
  margin-bottom: 30px;
}
/* how we can help u  */
h4 {
  margin-top: 4rem;
  margin-bottom: 32px;
  font-size: 25px;
  color: #181818;
}
/* input boxes */
.extend {
  width: 100%;
  max-width: 400px;
  height: 40px;
  margin-top: 5px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #000000;
  background-color: white;
  font-family: poppins;
  font-size: 14px;
  box-sizing: border-box;
}



/* message box  */
.msg {
  width: 100%;
  width: 350px;
  height: 300px;
  border-radius: 4px;
  border: solid 1px;
  margin-top: 5px;
  padding: 10px;
  font-family: poppins;
  
}
/* message button  */
.mess {
  padding: 10px 18px;
  border-radius: 10px;
  background-color: #07124d;
  color: white;
  text-decoration: none;
  width: 250px;
}
/* responsive section  */
/* For screens up to 830px */
@media (max-width: 830px) {
  .contact_div {
    flex-direction: row;
    gap: 60px;
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
 
  .social_icons {
    font-size: 1.4rem;
    gap: 1rem;
  }

  
  .left_div,
  .right_div {
    max-width: 400px;
  }
  .h1,
  .h2 {
    font-size: 40px;
  }


  .extend,
  .msg {
    width: 100%;
    max-width: 800px;
  }

.help {
  flex-direction: column;
  gap: 20px;
  padding-inline-end: 0px;
}

  .butons,
  .mess {
    width: 100%;
    max-width: 250px;
  }
  
}
@media screen and (max-width: 768px) {
  #mobile-call-button {
    pointer-events: auto;
  }
}
/* For screens up to 390px */
@media (max-width: 390px) {
  .main {
    padding-inline: 20px;
  }
  
  .contact_div {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
  }
  
  .left_div,
  .right_div {
    width: 100%;
    max-width: 100%;
  }
  .h1,
  .h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }
.right_div{
    margin-top: 16px;
}
  .butons,
  .mess {
    padding: 8px 12px;
    font-size: 12px;
    width: 100%;
    max-width: 250px;
  }

  .extend,
  .msg {
    width: 100%;
    max-width: 340px;
  }

  .social_icons {
    font-size: 16px;
    flex-wrap: wrap;
  }
}

/* Alert Styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: center;
  font-family: poppins;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#mobile-call-button {
  pointer-events: none;
}
