/* Importing Poppins Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Apply Poppins font to all text within the form */
.wpcf7-form, 
.wpcf7-form input, 
.wpcf7-form textarea, 
.wpcf7-form label, 
.wpcf7-form .wpcf7-submit {
    font-family: 'Poppins', sans-serif !important;
}

/* Styling the text inputs and textarea */
.wpcf7-form input,
.wpcf7-form textarea {
    border-radius: 10px;
    padding: 6px; /* Further reduced padding */
    font-size: 16px !important; /* Force font size */
    width: 100%;
}

/* Apply color and adjust font size and padding for the labels (text like "Your Name", "Your Email") */
.wpcf7-form label {
    font-weight: 500;
    font-size: 22px !important; /* Larger font size with !important */
    padding-bottom: 2px !important; /* Much smaller padding between label and input */
    margin-bottom: 2px !important; /* Reduced margin between label and input */
    display: block; /* Ensure labels appear on a new line */
}

/* Specific colors for the text labels */
.wpcf7-form label[for="your-name"] {
    color: #003F88 !important; /* Color for "Your Name" and "Your Email" labels */
}

.wpcf7-form label[for="your-subject"],
.wpcf7-form label[for="your-message"] {
    color: #FFFFFF !important; /* Color for "Subject" and "Message" labels */
}

/* No color change for the input fields (name, email, subject, message) */
.wpcf7-form input[name="your-name"], 
.wpcf7-form input[name="your-email"], 
.wpcf7-form input[name="your-subject"],
.wpcf7-form textarea[name="your-message"] {
    background-color: #fff; /* White background color for input fields */
    color: #333; /* Default text color inside the inputs */
}

/* Submit Button Styling */
.wpcf7-submit {
    background-color: #4682B4; /* Default background color */
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px !important; /* Force font size */
    transition: background-color 0.3s ease;
}

/* Submit Button Hover Effect */
.wpcf7-submit:hover {
    background-color: #87CEFA !important; /* Light Blue color on hover */
}

/* Submit Button Focus (Optional) */
.wpcf7-submit:focus {
    outline: none;
    box-shadow: 0 0 5px #87
			
			
.ct-icon path {
  fill: #003F88;
}
