
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

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

body {
  min-height: 100vh;
  width: 100%;
  background: #f5f5f5;
  align-items: center;
  justify-content: center;
}



.contactus {
  width: 100%;
  margin-top: 100px;
  background: #fff;
  border-radius: 6px;
  padding: 20px 20px 20px 20px
}

.contactus .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right-side .contact-form {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}

.right-side .contact-form h3 {
  margin-bottom: 20px;
  color: #007bff;
}

.right-side .contact-form .input-box {
  margin-bottom: 15px;
}

.right-side .contact-form .input-box input,
.right-side .contact-form .input-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #a2ccee;
  border-radius: 6px;
}

.right-side .contact-form .input-box textarea {
  height: 150px; /* Increased height */
}

.right-side .contact-form .button input[type="submit"] {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.right-side .contact-form .button input[type="submit"]:hover {
  background: #007bff;
}

.contactus .content .left-side {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
  width: 100%;
}

.content .left-side .details i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
}

.content .left-side .details .topic {
  font-size: 23px;
  font-weight: 900;
  color: #007bff;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 15px;
  color: black;
  font-weight: 400;
}

.contactus .content .right-side {
  width: 75%;
  margin-left: 75px;
  min-height: 580px;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}

.contactTitle {
  margin-left: 10px;
}

.contactTitle h2 {
  position: relative;
  font-size: 28px;
  color: #007bff;
  display: inline-block;
  margin-bottom: 25px;
}

.contactTitle h2::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #888;
  top: 120%;
  left: 0;
}

.contactTitle h2::after {
  content: '';
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #007bff;
  top: calc(120% - 1px);
  left: 0;
}

.right-side .input-box {
  height: 55px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #ffffff;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 105px;
}

.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #5029bc;
}

@media (max-width: 750px) {


  .contactus .content {
    flex-direction: column-reverse;
  }

  .contactus .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contactus .content .left-side::before {
    display: none;
  }

  .contactus .content .right-side {
    width: 100%;
    min-height: 520px;
    margin-left: 0;
  }
}


/* Add this style block for responsive map */
.right-side {
  position: relative;
  width: 100%;
  padding-bottom: 40%;
  /* Adjust this value to control the aspect ratio */
  height: 0;
  overflow: hidden;
}

.right-side iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

#map {
  width: 100%;
  height: 400px;
}

.space_lg {
  width: 100px;
}

.map_host {
  color: #007bff;
  padding: 8px;
  font-weight: 600;
  margin-left: 5px;
  font-size: 14px;
}

@media (max-width: 400px) {
  .map_host {
    font-size: 10px;
  }
}

