* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  color: #333;
  font-family: "Roboto", serif;
}

.container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

header h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.contact-info,
.contact-form {
  padding: 20px;
  width: 49%;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 23px;
  font-size: 1.5rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 2px 2px 10px #ccc;
  height: 45px;
}

.contact-form textarea {
  height: 120px;
  max-height: 120px;
  max-width: 100%;
}

.contact-form button {
  background-color: #7e6624;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 5px;
}

.contact-form button:hover {
  background-color: #695734;
}

.listing {
  padding-top: 20px;
}

.listing i {
  padding-right: 15px;
  color: #542a1a;
}

.listing li {
  padding-top: 10px;
}

.contact-img {
  padding-top: 30px;
}

.label-form {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.contact-info {
  position: relative;
}

.contact-info::after {
  height: 93%;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 25px;
  width: 1px;
  content: "";
}

.container-box {
  display: flex;
  align-items: center;
  height: 100vh;
}

.contact-title {
  padding-bottom: 9px;
  font-weight: 800;
  font-size: 55px;
}

.contact-form {
  padding-left: 100px;
}

.error {
  color: red;
  font-size: 0.9em;
}
/* style for laodr  */
/* Full screen overlay style */
#overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 9999; /* Make sure it's on top of all other content */
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

/* Style for the spinner */
#loader {
  border: 8px solid #f3f3f3; /* Light gray */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Style for the response area */
#response {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 0 0;
  }

  .contact-info,
  .contact-form {
    width: 48%;
  }
  .contact-info::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
  }

  .contact-info::after {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

  .contact-img {
    display: none;
  }

  .container {
    padding: 0 15px;
    width: 100%;
  }

  .container-box {
    flex-wrap: wrap;
  }

  .contact-title {
    margin-bottom: 0;
    font-size: 40px;
    padding-top: 20px;
  }

  .contact-section {
    padding: 10px 0;
  }

  .contact-form {
    padding-left: 20px;
  }
}
