/* Reset and base styles */
body {
  color: #333;
  font-family: 'Arial', sans-serif;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
}

/* Contact section */
.contactform-contact_us {
  background-color: #fff;
  padding: 60px 0;
}

.contactform-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contactform-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contactform-col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

.contactform-contact_form_inner,
.contactform-contact_info_sec {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.contactform-contact_form_inner {
  flex: 1;
}

.contactform-contact_field h2 {
  color: #00B98E;
  font-size: 28px;
  margin-bottom: 20px;
}

.contactform-contact_field p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contactform-form-input-material {
  position: relative;
  margin-bottom: 30px;
}

.contactform-form-input-material input,
.contactform-form-input-material textarea {
  width: calc(100% - 20px); 
  padding: 12px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  color: #333;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box; 
}

.contactform-form-input-material label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 16px;
  color: #999;
  transition: all 0.2s;
  pointer-events: none;
}

.contactform-form-input-material input:focus + label,
.contactform-form-input-material textarea:focus + label,
.contactform-form-input-material input:not(:placeholder-shown) + label,
.contactform-form-input-material textarea:not(:placeholder-shown) + label {
  top: -18px;
  font-size: 14px;
  color: #00B98E;
}

.contactform-form-input-material input:focus,
.contactform-form-input-material textarea:focus {
  border-bottom: 2px solid #00B98E;
}

.contactform-contact_form_submit {
  background-color: #00B98E;
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.contactform-contact_form_submit:hover {
  background-color: #008F72;
}

.contactform-contact_info_sec {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: left; 
}

.contactform-contact_info_inner {
  max-width: 500px; 
  margin: 0 auto;
}

.contactform-contact_info_sec h2 {
  color: #00B98E;
  font-size: 24px;
  margin-bottom: 20px;
}

.contactform-info_single {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contactform-icon {
  font-size: 20px; 
  color: #00B98E;
  margin-right: 10px;
  background-color: #f3f3f3; 
  border-radius: 50%;
  padding: 12px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.contactform-info_details {
  flex: 1;
}

.contactform-detail {
  font-size: 16px;
  color: #555;
  line-height: 1.6; 
}

.contactform-social_icons {
  margin-top: 20px;
  text-align:start;
}

.contactform-social_icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 24px;
  color: #00B98E;
  transition: color 0.3s;
}

.contactform-social_icon:hover {
  color: #008F72;
}

/* Font Awesome Icons */
.contactform-info_single i.fas {
  margin-right: 10px;
}

.contactform-social_icons a {
  text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contactform-col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .contactform-contact_form_inner,
  .contactform-contact_info_sec {
      padding: 30px;
  }

  .contactform-social_icons {
      text-align: center;
  }

  .contactform-social_icons li {
      display: inline-block;
      margin-right: 15px;
  }
}
