.elementor-410 .elementor-element.elementor-element-d6a8af8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-410 .elementor-element.elementor-element-2e89af5{text-align:center;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-410 .elementor-element.elementor-element-9424d9d{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -30px) 0px;text-align:center;}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-410 .elementor-element.elementor-element-cdba764 .elementor-icon-list-icon i{transition:color 0.3s;}.elementor-410 .elementor-element.elementor-element-cdba764 .elementor-icon-list-icon svg{transition:fill 0.3s;}.elementor-410 .elementor-element.elementor-element-cdba764{--e-icon-list-icon-size:22px;--e-icon-list-icon-align:center;--e-icon-list-icon-margin:0 calc(var(--e-icon-list-icon-size, 1em) * 0.125);--icon-vertical-align:center;--icon-vertical-offset:0px;}.elementor-410 .elementor-element.elementor-element-cdba764 .elementor-icon-list-text{transition:color 0.3s;}/* Start custom CSS for shortcode, class: .elementor-element-1aca373 *//* Style for the form container */
.wpcf7 {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    animation: fadeIn 1s ease-out;
}

.wpcf7 form h5 {
    text-align: center;
    margin-bottom: 40px;
}

.wpcf7 form h6 {

    margin: 3px;
}

/* Label styling */
.wpcf7 label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
    margin-bottom: -20px;
}


/* Input and Textarea Fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.wpcf7 textarea {
    max-height: 50px; 
    resize: vertical;
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

/* Input field focus effect */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: #D71684;
    box-shadow: 0 0 10px rgba(215, 22, 132, 0.5);
    transform: scale(1.02);
}

/* Submit button styling */
.wpcf7 input[type="submit"] {
    background-color: #D71684;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    width: 100%;
    margin-top: 20px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #B1136A;
    transform: scale(1.05);
}

/* Animation for form appearance */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styling for textareas */
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .wpcf7 {
        padding: 20px;
        max-width: 90%;
    }

    .wpcf7 input[type="submit"] {
        padding: 12px 20px;
    }
}/* End custom CSS */