.ban_sec {
  height: 40vh;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ban_img {
  display: block;
  height: 100%;
  width: 100%;
}
.ban_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ban_text {
  position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}
.ban_text strong {
  font: 800 62.22px/70px "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 4px 4px 6px #ff6f00;
}
.ban_text strong span {
  font: 400 44.44px/52px "Montserrat", sans-serif;
  letter-spacing: 3px;
}
.ban_text p {
  font: 400 25px/30px "Montserrat", sans-serif;
  color: #fff;
  margin: 7px 0 25px;
}
.ban_text a {
  display: inline-block;
  font: 800 19.39px/24px "Montserrat", sans-serif;
  background: #282828;
  border-radius: 26px;
  color: #fff;
  padding: 12px 28px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration:none;
}
.ban_text a:hover {
  background: #50af47;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .ban_text p {
    font-size: 21px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ban_text p {
    font-size: 17px;
  }
  .ban_text strong {
    font-size: 50px;
    line-height: 60px;
  }
  .ban_text strong span {
    font-size: 37px;
  }
  .ban_text a {
    font-size: 16px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 991px) {
  .ban_text strong {
    font-size: 35px;
    line-height: 40px;
  }
  .ban_text strong span {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 2px;
  }
  .ban_text p {
    font-size: 14px;
    line-height: 20px;
  }
  .ban_text a {
    font-size: 13.39px;
    line-height: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .ban_img img {
    min-height: 290px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 575px) {
  .ban_text strong {
    padding: 10px;
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .ban_text strong span {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 1px;
  }
 
}


  
.contact-form-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px;
    background: #11111136;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .contact-details {
    margin-bottom: 20px;
  }
  
  .contact-details h2 {
    margin-bottom: 10px;
  }
  
  .contact-details .contact-list {
    list-style: none;
    padding: 0;
  }
  
  .contact-details .contact-list li {
    margin-bottom: 10px;
  }
  
  .contact-details .contact-list a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-details .contact-list a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-label {
    font-weight: bold;
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .form-textarea {
    resize: none;
    height: 100px;
  }
  
  .form-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .form-submit-button {
    background: linear-gradient(90deg, #ef810b, #eca35f);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .form-submit-button:hover {
    background-color: #ff8c00;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    .contact-form-section {
      padding: 10px;
    }
  
    .form-input,
    .form-textarea {
      font-size: 12px;
    }
  }