.form-container {
  /* max-width: 1200px;
  margin: 0 auto; */
  /* padding: 50px 20px; */
  background-color: white;
  /* padding-bottom: 4%; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  width: 100%;
  display: flex;
  padding: 0% 12%;
}

.contact-form {
  width: 65%;
  /* padding-left: 8%; */
  /* margin-right: 4%; */
  /* float: left; */
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group {
  width: 48%;
  background: #e8e8e8;
  overflow: hidden;
}

.form-group-discuss {
  width: 33%;
  background: #e8e8e8;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  /* font-size: 1.1rem; */
  /* color: black; */
  font-weight: 400;
  background-color: #f0f0f0;
  transition:
    border-color 0.3s ease,
    border-width 0.3s ease;
}

/* Animation on focus */
.form-control:focus {
  border-bottom: 1px solid #007bff;
  outline: none;
  transition: border-bottom 0.4s ease-in-out;
  background-color: #f5f5f5;
}

/* Input labels animation */
.form-control::placeholder {
  color: #999;
  transition: color 0.2s ease;
}

.form-control:focus::placeholder {
  color: #007bff;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.char-count {
  text-align: right;
  font-size: 12px;
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.submit-btn {
  margin-right: 2%;
  /* margin-top: 20px; */
  padding: 12px 30px;
  float: left;
  background-color: #004f87;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #007bff;
}

.privacy-policy {
  font-size: 12px;
  color: #999;
  margin-top: 20px;
}

.privacy-policy a {
  /* color: #007bff; */
  text-decoration: none;
}

.privacy-policy a:hover {
  /* text-decoration: underline; */
}

/* Right-side information section */
.info-section {
  width: 35%;
  padding-left: 4%;
  display: flex;
  flex-direction: column;
  gap: 18px;

  /* float: right; */
}

.info-section h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.info-section p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 20px;
}

.info-section a {
  /* color: #007bff; */
  text-decoration: none;
}

.info-section a:hover {
  /* text-decoration: underline; */
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section ul li {
  margin-bottom: 10px;
}

.info-section ul li a {
  color: #333;
  text-decoration: none;
}

.info-section ul li a:hover {
  /* text-decoration: underline; */
}

/* Clearfix for floats */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Hover effect for form elements */
.form-control:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.87);
}

.checkbox-group input:checked + label {
  color: #e74c3c;
  transition: color 0.3s ease;
}

/* Styling for the div with the class 'info-box' */
.info-box {
  /* Centering with some space around */
  /* max-width: 480px; Limit the width */
}

/* Styling for the header inside the info-box */
.info-box h3 {
  font-size: 1rem;
  color: #333; /* Darker text color */
  margin-bottom: 5px;
}
.info-box h3 b {
  font-size: 1.1rem;
}

/* Styling for the paragraph */
.info-box p {
  font-size: 1.1rem;
  line-height: 1.6; /* Better readability */
  color: #555; /* Slightly lighter text color */
}

/* Styling for the email link */
.info-box a {
  /* color: #007bff; Blue color for the link */
  text-decoration: none;
}

/* .info-box a:hover {
  text-decoration: underline; Underline on hover
} */

@media only screen and (max-width: 768px) {
  .info-section {
    width: 100%;
    float: right;
  }

  .contact-form {
    width: 50%;
    /* margin-right: 4%; */
    /* float: left; */
    padding: auto;
  }

  .form-container {
    /* margin: 0 auto; */
    padding: 50px 20px;
    background-color: white;
  }
}

.g-map {
  display: flex;
  width: 100%;
  height: 560px;
  margin: 4% 0%;
}
.w-form {
  /* display: flex;
    justify-content: center; */
  /* align-items: center; */
  /* height: 1224px; */
  padding: 4% 0% 8% 0%;
}

.gmap-info {
  padding-left: 4%;
  width: 50%;
  display: flex;
  align-items: center;
  background-color: #0a0a0c;
}
.gmap-info h3 {
  font-size: 1.3rem;
  line-height: 1.6;
}
.gmap-info div h3 {
  color: white;
}

.E-underline {
  color: white !important;
  position: relative;
  transition: all 1s ease;
  /* font-weight: 600; */
  width: fit-content;
  /* text-shadow: 0.3px 0 0 #555555; */
}

.E-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.5s ease;
}
.E-underline-2 {
  color: black !important;
  position: relative;
  transition: all 1s ease;
  /* font-weight: 600; */
  width: fit-content;
  /* text-shadow: 0.3px 0 0 #555555; */
}
.E-underline-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.5s ease;
}

.E-underline:hover::after,
.E-underline-2:hover::after {
  width: 100%;
}
