.elementor-2924 .elementor-element.elementor-element-d3e2795{--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;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.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-2924 .elementor-element.elementor-element-9575639{text-align:center;}.elementor-2924 .elementor-element.elementor-element-9575639 .elementor-heading-title{font-family:"Noto Nastaliq Urdu", Sans-serif;font-size:35px;font-weight:600;color:#000000;}/* Start custom CSS *//* Form Container */
.wpcf7 {
    background-color: #ffffff; /* White background */
    padding: 40px;
    border-radius: 15px; /* Rounded corners for a modern look */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Softer, larger shadow for depth */
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    gap: 20px; /* Consistent spacing between elements */
    align-items: center; /* Center form fields horizontally */
    transition: box-shadow 0.3s ease-in-out;
}

/* Title of the Form */
.wpcf7-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase; /* Adding a bit of emphasis */
    transition: color 0.3s ease;
}

/* Add padding to form fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 input[type="file"] {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-sizing: border-box; /* Ensures padding and borders are included in width */
}

/* Focus effect on input fields */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus,
.wpcf7 input[type="file"]:focus {
    border-color: #00bcd4; /* Sky blue border on focus */
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.3); /* Adding subtle shadow on focus */
    outline: none;
}

/* Textarea style (for story) */
.wpcf7 textarea {
    height: 200px;
    resize: vertical;
}

/* File upload input */
.wpcf7 input[type="file"] {
    background-color: #fff;
    color: #00bcd4;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #00bcd4;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.wpcf7 input[type="file"]:hover {
    background-color: #00bcd4;
    color: white;
    transform: scale(1.05); /* Slight scale-up effect */
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background-color: #00bcd4;
    color: white;
    padding: 16px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.2s ease;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0, 188, 212, 0.2);
}

/* Hover effect on Submit Button */
.wpcf7 input[type="submit"]:hover {
    background-color: #0097a7;
    transform: translateY(-2px); /* Subtle upward movement */
    box-shadow: 0 6px 15px rgba(0, 188, 212, 0.3); /* Darker shadow on hover */
}

/* Hover effect on Form Container */
.wpcf7:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow when hovering */
}

/* Responsive Layout */
@media screen and (max-width: 767px) {
    .wpcf7 {
        padding: 20px;
        margin: 10px auto; /* Center the form on mobile */
    }

    .wpcf7-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea,
    .wpcf7 input[type="file"] {
        font-size: 14px;
        padding: 12px;
    }

    .wpcf7 input[type="submit"] {
        font-size: 16px;
        padding: 14px 25px;
    }
}

.page .entry-title {
    display: none;
}

.wpcf7 p span{
    padding-top:10px;
}

.contact-us-form-wpcf7 form{
    direction: rtl;
}/* End custom CSS */