/*
*Theme Name : ThemeName
*Description : ThemeName Theme
*/



/* Required Information heading */
.required-info {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.required-info span {
    color: #e53935;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Form box spacing */
.form-box {
    margin-bottom: 20px;
}

/* Input fields styling */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px 15px;
    font-size: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

/* Placeholder color */
.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #9e9e9e;
}

/* Focus effect */
.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #4aa3a1;
}

/* Textarea height */
.form-box textarea {
    min-height: 100px;
    resize: vertical;
}

/* File upload */
.form-box input[type="file"] {
    padding: 10px 5px;
    border: none;
}

/* Required asterisk from CF7 */
.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 5px;
}

/* Submit button */
.contact-form input[type="submit"] {
    background: #4aa3a1;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background: #3b8f8d;
}

/* Align submit like image */
.contact-form {
    margin-top: 10px;
}

/* Mobile spacing fix */
@media (max-width: 767px) {
    .form-box {
        margin-bottom: 15px;
    }
}


/* New Form */

/* Required Information */
.required-info {
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.required-info span {
    color: #e53935;
    font-size: 14px;
    font-weight: 600;
}

/* Labels */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 6px;
	  color:#000 !important;
}

.wpcf7-form label span {
    color: #e53935;
}

/* Inputs */
.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.form-box textarea {
    min-height:100px;
}

/* Radio buttons */
.contact-radio {
    display: flex;
    gap: 30px;
    margin: 10px 0 20px;
}

.contact-radio label {
    font-weight: 500;
    text-transform: none;
}

/* Focus */
.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    outline: none;
    border-color: #4aa3a1;
}

/* Submit button */
.contact-form input[type="submit"] {
    background: #0a9b5f;
    color: #fff;
    padding: 14px 50px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 2px;
}

.contact-form input[type="submit"]:hover {
    background: #078451;
}

/* Captcha spacing */
.captcha-row {
    margin: 20px 0;
}

/* referral */
.referral-extra {
    display: none;
}
.contact-form {
    margin: 0 auto 10px;
    text-align: center;
}

.captcha-image {
    border: 1px solid;
    padding: 8px;
    display: block;
    text-align: center;
    width: max-content;
    margin: 0 auto;
    background: #fff;
}
.home_form form.wpcf7-form{
	background:transparent;
    padding: 0;
    border-radius: 0;
}
 form.wpcf7-form .form-box input[type="file"] {
    border: 1px solid #ddd;
    border-radius: 3px;
	 padding: 14px;
}
form.wpcf7-form {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
}
form.wpcf7-form .contact-preference span.wpcf7-form-control.wpcf7-radio {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
form.wpcf7-form .contact-preference span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    background: #fff;
    display: block;
    width: 100%;
    padding: 14px;
    margin: 0;
	border: 1px solid #ddd;
}
form.wpcf7-form .contact-preference span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: normal;
}
form.wpcf7-form .contact-preference span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item label span{
	color:#000;
}