
.main-content {
  padding-top: 185px;
}
/* Container */
.contact {
  padding: 2rem;
  background-color: white;
}

.contact-container {
  display: flex;
  flex-direction: row;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  width: 74%;
  margin: auto;
}

/* Left Image Section */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form Section */
.contact-right {
  flex: 1;
  padding: 2rem;
}

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

.form-title {
    font-size: x-large;
    margin-bottom: 1rem;
    color: #0e3a24;
    text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 3px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 52px;
    height: 13vh;
}

.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.submit-button {
    background-color: #0e3a24;
    color: #fff;
    padding: 3px;
    border: none;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
  background-color: #116d3d;
}
/* ---------------------------------------------------------------- */
.thankyou-wrapper {
  background-color: whitesmoke;
  padding: 80px 20px 100px;
  margin-top: -50px;
}
.back-button {
  margin: 0 20px;
  text-align: left;
}
#backbtn {
  background-color: #215d0e;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#backbtn:hover {
  background-color: #1a4c0c;
}
.thankyou-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #215d0e;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.thankyou-message h2 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}
.sub-msg {
  font-size: 18px;
  margin-bottom: 30px;
}
.info-box {
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.8;
  text-align: justify;
  color: #215d0e;
  margin: 0 20px;
}

.info-box a {
  color: black;
  text-decoration: underline;
}
.alert-msg{
    position:relative;
    background: #b1e7c178;
    width: 50%;
    margin: auto;
    border: 1px solid green;
    border-radius: 3px;
    color: green;
    padding: 8px 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  }
  .phone_form_container {
    display: none;
    align-items: center;
    gap: 8px;
}
.sidebar-toggle-btn {
  display: none;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 99%;
    margin: auto;
  }

  .contact-left, .contact-right {
    flex: none;
    width: 100%;
  }

  .contact-left {
    height: 250px;
  }
    .thankyou-message h2 {
    font-size: 20px;
  }

  .sub-msg {
    font-size: 16px;
  }

  #backbtn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .info-box {
    font-size: 14px;
  }
  .alert-msg{
    position:relative;
    background: #b1e7c178;
    width: 90%;
    margin: auto;
    border: 1px solid green;
    border-radius: 3px;
    color: green;
    padding: 8px 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  }
  .main-content{
    padding-top: 150px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
    /* .main-content {
        margin-top: 187px;
    } */
}