/* General Section Styling */
.contact-us-section {
  padding-bottom: 40px;
}

/* Header Section */
.contact-us-header-section {
  background-color: rgb(245, 245, 245);
  text-align: center;
}

.contact-us-header-section h2 {
  font-weight: 700;
  font-size: 65px;
  color: rgb(27, 57, 93);
  padding: 30px 0px;
}

.contact-us-header-section span {
  color: rgb(78, 165, 219);
}

/* Text Section */
.contact-us-text-section01 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

.contact-us-text-section01 h6 {
  color: rgb(6, 135, 135);
}

/* Main Content Section */
.contact-us-section02 {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  gap: 20px;
}

.contact-us-section02-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us-section02-img img {
  width: 400px;
  height: 400px;
  border-radius: 10px;
  margin-top: -75px;
  margin-left: 100px;
}

/* Form Section */
.contact-us-section02-form {
  width: 50%;
  font-size: 30px;
  font-weight: 400;
}

.contact-us-section02-form i{
  margin-right: 25px;
}

.contact-us-section02-form ul {
  list-style-type: none;
}

@media (max-width: 600px){
  .contact-us-section02-form {
    width: 50%;
    font-size: 15px;
    font-weight: 400;
    padding-left: 5px;
  }
  
  .contact-us-section02-form i{
    margin-right: 12px;
  }
  
  
  .contact-us-section02-form ul {
    list-style-type: none;
  }
}
/* .contact-us-section02-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
} */

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.input-error {
  border-color: red;
}

.error-text {
  color: red;
  font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
  background-color: rgb(103, 26, 161);
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: center;
}

.submit-btn:hover {
  background-color: rgb(17, 104, 210);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .contact-us-section02 {
    flex-direction: column;
    align-items: center;
  }

  .contact-us-section02-img,
  .contact-us-section02-form {
    width: 100%;
  }

  .contact-us-section02-img img {
    width: 250px;
    height: 250px;
    margin-left: 10px;
}

  .contact-us-section02-form form {
    width: 90%;
  }

  .form-row {
    flex-direction: column;
  }
  .contact-us-header-section h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: rgb(27, 57, 93);
    padding: 15px 0;
}
.contact-us-text-section01{
 padding-bottom: 40px;
}
}
