.EnquiryModal .modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.EnquiryModal .left_section {
  /* background: linear-gradient(135deg, #FF4D4F, #DC2626); */
  color: white;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #ff3b30, #d00000); */
  background: linear-gradient(135deg, #5d2025, #a5535a);
}

.EnquiryModal .overlay {
  padding: 40px;
}

.EnquiryModal .overlay h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.EnquiryModal .overlay ul {
  margin-top: 30px;
  padding-left: 18px;
}

.EnquiryModal .overlay p {
  font-size: 13px;
  margin-bottom: 0;
}

.EnquiryModal .overlay li {
  margin-bottom: 15px;
  font-size: 16px;
}

.EnquiryModal .modal_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.EnquiryModal .form_section {
  /* position: relative; */
  padding: 20px 40px 30px;
  background: #fff;
}

.EnquiryModal .form_section h3 {
  font-weight: 700;
  margin-bottom: 0;
  color: #222;
  font-size: 18px;
}

.EnquiryModal .form-control {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.EnquiryModal textarea.form-control {
  height: auto;
}

.EnquiryModal .form-control:focus {
  border-color: #b22c35;
  box-shadow: 0 0 0 0.15rem rgba(178, 44, 53, 0.2);
}

.EnquiryModal .submit_btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: #b22c35;
  font-weight: 600;
  transition: 0.3s;
}

.EnquiryModal .submit_btn:hover {
  background: #8e1f27;
}

.EnquiryModal .close_btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.EnquiryModal .close_btn button {
  font-size: 16px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
}

@media (min-width: 0px) and (max-width: 991px) {
  .EnquiryModal .left_section {
    min-height: 90px;
  }

  .EnquiryModal .overlay {
    padding: 0px 10px;
  }

  .EnquiryModal .overlay h2 {
    font-size: 22px;
    margin-bottom: 0;
  }

  .EnquiryModal .form_section {
    padding: 15px;
  }
}

@media (min-width: 0px) and (max-width: 576px) {
  .EnquiryModal .overlay {
    text-align: center;
  }

  .EnquiryModal .overlay ul {
    text-align: left;
  }

  .EnquiryModal .form_section {
    padding: 15px;
  }
}

@media (min-width: 0px) and (max-width: 991.98px) {
  .EnquiryModal .close_btn {
    position: absolute;
    top: 5px;
    right: 5px;
  }
}