/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Contact Form Main Box */
/* Contact Form Style */

.contact-form-box{
    padding:40px;
}

/* Labels */
.contact-form-box label{
    font-size:18px;
    font-weight:600;
    color:#111;
    margin-bottom:10px;
    display:block;
}

/* Input & Textarea */
.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #e5e5e5;
    border-radius:15px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
    font-size:16px;
    margin-top:8px;
    outline:none;
}

/* Focus Effect */
.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:#ff7a00;
    box-shadow:0 4px 15px rgba(255,122,0,0.25);
}

/* Textarea */
.contact-form-box textarea{
    height:180px;
    resize:none;
}

/* Two Column */
.contact-row{
    display:flex;
    gap:20px;
}

.contact-col{
    width:50%;
}

/* Orange Button */
.contact-form-box .wpcf7-submit{
    background:#ff7a00;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:15px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 4px 12px rgba(255,122,0,0.3);
}

/* Hover */
.contact-form-box .wpcf7-submit:hover{
    background:#e56d00;
}

/* Mobile Responsive */
@media(max-width:767px){

    .contact-row{
        flex-direction:column;
    }

    .contact-col{
        width:100%;
    }

    .contact-form-box{
        padding:20px;
    }

}
.contact-form-box p{
    margin:0;
}

.contact-form-box br{
    display:none;
}

.read-more-btn a{
    display:inline-block;
    background:#fff;
    color:#000;
    padding:10px 22px;
    border-radius:10px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
    margin-top:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.12);
}

/* Hover Effect */
.read-more-btn a:hover{
    background:#000;
    color:#fff;
}