/* 
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 */

.brand-img {
    background: #fff;
}

.custom-complain-form input[type=date], .custom-complain-form input[type=email], .custom-complain-form input[type=number], .custom-complain-form input[type=password], .custom-complain-form input[type=search], .custom-complain-form input[type=tel], .custom-complain-form input[type=text], .custom-complain-form input[type=url], .custom-complain-form select, .custom-complain-form textarea {
    border: 1px solid #66666633;
}

.custom-complain-form textarea {
    height: 70px !important;
    margin: 0px !important;
}

input[type=date]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, select:focus, textarea:focus, input[type=date]:focus-visible, input[type=email]:focus-visible, input[type=number]:focus-visible, input[type=password]:focus-visible, input[type=search]:focus-visible, input[type=tel]:focus-visible, input[type=text]:focus-visible, input[type=url]:focus-visible, select:focus-visible, textarea:focus-visible {
    border: 1px solid #66666633 !important;
    outline: none !important;
}

.custom-complain-form input,
.custom-complain-form textarea,
.custom-complain-form select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-complain-form input:focus,
.custom-complain-form textarea:focus,
.custom-complain-form select:focus {
    border-color: #999;
    outline: none;
}

.custom-complain-form .wpcf7-submit {
    background-color: #003084;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.custom-complain-form .wpcf7-submit:hover {
    background-color: #003084;
}

/* File upload button style */
.custom-complain-form .file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #003084;
    border-radius: 5px;
    background-color: #fff;
    color: #003084;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 14px;
}

.custom-complain-form .file-upload svg {
    margin-right: 8px;
}

.wpcf7-response-output {
    margin: 0px !important;
}

.form-img .elementor-widget-image, .form-img .elementor-widget-image img {
    min-height: 100% !important;
    object-fit: cover !important;
}

.custom-cf7-form label {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    color: #333;
}

.custom-cf7-form input,
.custom-cf7-form select,
.custom-cf7-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #f9f9f9;
    transition: all 0.2s;
}

.custom-cf7-form input:focus,
.custom-cf7-form select:focus,
.custom-cf7-form textarea:focus {
    border-color: #003084;
    background: #fff;
    outline: none;
}

.custom-cf7-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f9f9f9 url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px;
}

.custom-cf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.custom-cf7-form input.wpcf7-submit,
.custom-cf7-form [type="submit"] {
    background: #003084;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.custom-cf7-form input.wpcf7-submit:hover,
.custom-cf7-form [type="submit"]:hover {
    background: #003084;
}

/* Modal Background */

.ind-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

/* Modal Box */

.ind-modal-content {
    background: #fff;
    width: 500px;
    top: 50%;
    transform: translate(0, -50%);
    max-width: 95%;
    padding: 30px;
    max-height: 85vh;
    overflow: auto;
    border-radius: 8px;
    position: relative;
    animation: indModal .3s ease;
    margin: auto;
    height: auto;
}

/* Animation */

@keyframes indModal {
    from {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Close Button */

.ind-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Form Style */

.ind-modal input,
.ind-modal select {
    width: 100%;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 10px;
}

.ind-modal button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.ind-modal button:hover {
    background: #005f8d;
}

.ind-modal input::placeholder,
.ind-modal textarea::placeholder {
    color: #999;
    font-size: 12px !important;
}

.ind-form{
display:flex;
flex-wrap:wrap;
gap:16px;
}

/* FORM FIELD */

.ind-form .form-group{
width:calc(50% - 8px);
display:flex;
flex-direction:column;
}

/* FULL WIDTH BUTTON */

.ind-form button{
width:100%;
padding:12px;
background:#0073aa;
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
}

/* INPUT UI */

.ind-form input,
.ind-form select{
height:44px;
padding:0 12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

/* ERROR TEXT */

.error{
color:#e53935;
font-size:12px;
margin-top:4px;
min-height:14px;
}

/* MOBILE */
input.error-border,
select.error-border{
border-color:#e53935;
}
@media(max-width:768px){

.ind-form .form-group{
width:100%;
}

}
.upload-group input[type="file"]{
display:none;
}

/* upload box */

.upload-box{
display:flex;
align-items:center;
gap:10px;
height:44px;
padding:0 14px;
border:1px solid #dcdcdc;
border-radius:6px;
background:#f7f7f7;
cursor:pointer;
font-size:14px;
color:#333;
transition:all .2s;
}

/* hover */

.upload-box:hover{
background:#efefef;
}

/* icon */

.upload-icon{
font-size:16px;
}

/* text */

.upload-text{
font-weight:500;
}
.brand-card {
    padding: 20px;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
}
.brand-card .brand-img img{
    height: 80px;
    height: auto;
    text-align: center;
    margin: auto;
    display: block;
}
.brand-card .brand-title{
    font-size: 26px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 20px;
}
.brand-card .brand-mobile, .brand-card .brand-address{
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}
.brand-card .brand-website{
    display: block;
    text-align: center;
    margin: auto;
}

.cc-map, .cc-map .elementor-shortcode, .cc-map .map_wrapper, .cc-map .map_box, .cc-map .map_wrapper .map_aspect_ratio{
    height: 100%;
}