.elementor-1003 .elementor-element.elementor-element-625995d{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1003 .elementor-element.elementor-element-36458d8{text-align:center;}.elementor-1003 .elementor-element.elementor-element-36458d8 .elementor-heading-title{color:#0081B7;}/* Start custom CSS for shortcode, class: .elementor-element-ca84caf *//* General Form Styling */
.wpcf7 {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Labels Styling */
.wpcf7-form label {
  font-size: 1.2rem;
  color: #333;
  display: block;
  margin-bottom: 10px;
  position: relative; /* Position for icons */
  padding-left: 30px; /* Space for icons */
}

/* Add Icons with CSS */
.wpcf7-form label::before {
  content: '';
  font-family: "Font Awesome 5 Free"; /* Font Awesome font */
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #28a745;
}

/* Icons for Specific Fields */
.wpcf7-form label[for*="your-name"]::before {
  content: '\f007'; /* User icon */
}

.wpcf7-form label[for*="your-email"]::before {
  content: '\f0e0'; /* Envelope icon */
}

.wpcf7-form label[for*="your-subject"]::before {
  content: '\f02d'; /* Tag icon */
}

.wpcf7-form label[for*="your-message"]::before {
  content: '\f075'; /* Comment icon */
}

/* Input and Textarea Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin-top: 5px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: #28a745;
  outline: none;
}

/* Submit Button Styling */
.wpcf7-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.2rem;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpcf7-submit:hover {
  background-color: #218838;
}

/* Error and Success Messages */
.wpcf7-response-output {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  font-size: 1rem;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Spinner Styling */
.wpcf7-spinner {
  margin-left: 10px;
  display: inline-block;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .wpcf7 {
    padding: 15px;
  }

  .wpcf7-submit {
    font-size: 1rem;
  }
}/* End custom CSS */