/* /// for all buttons // */
/* GLOBAL WEBSITE BUTTON STYLE */
.web-btns {
  display: inline-block;
  padding: 12px 28px;
  background-color: #004fa9;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 79, 169, 0.2);
}

/* Hover Effect */
.web-btns:hover {
  background-color: #003f87;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 79, 169, 0.3);
}

/* Optional: Full Width Variant */
.web-btns.full {
  width: 100%;
  text-align: center;
}

.line {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  gap: 60px;
  justify-content: center;
}

.line:before,
.line:after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #333333;
  opacity: 0.3;
}

.contact-details::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 200px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #90909054;
}

/* Contact Page Form Css */

.contact-form-wrapper {
  border-radius: 10px;
}

.form-row {
  width: 100%;
  display: flex;
  gap: 10px;
}

.form-row-full {
  width: 100%;
}

.form-group label {
  margin-bottom: 6px;
  color: #000;
}

.form-group label span {
  color: #ff0000 !important;
}

.form-group p {
  margin-bottom: 0 !important;
}

.form-group {
  margin-bottom: 15px !important;
}

.form-group select,
.form-group textarea {
  width: 100%;
}

.wpcf7 textarea {
  height: 120px !important;
  resize: vertical;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #ccc;
  background: #fff;
  outline: none;
}

input[type="submit"] {
  background-color: #004fa9;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  border-radius: 8px;
}

.contact-form-wrapper input[type="submit"]:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  .contact-form-wrapper input[type="text"],
  .contact-form-wrapper input[type="tel"],
  .contact-form-wrapper input[type="email"],
  .contact-form-wrapper textarea {
    width: 95%;
  }
  .form-row {
    width: 100%;
    display: block;
  }

  .contact-details::after {
    display: none;
  }
}

/* Contact Page Form Css */

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #fff;
}
