/* Contact page 2025 */

.bk_color_gradient_navy {
    background: linear-gradient(90deg, #10365C 79.33%, #F0F5FC 79.34%);
    background: linear-gradient(90deg, color(display-p3 0.1062 0.2098 0.3503) 79.33%, color(display-p3 0.9451 0.9608 0.9843) 79.34%);
}

.bk_shadow {
    background: #F9F9F9;
    background: color(display-p3 0.9765 0.9765 0.9765);

    /* M3/Elevation Light/2 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.30), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 2px 0 color(display-p3 0 0 0 / 0.30), 0 2px 6px 2px color(display-p3 0 0 0 / 0.15);
}

.form_background {

    padding-top: 50px;
    padding-bottom: 100px;
    height: 100vh;
    min-height: 800px;
}

.form_padding {
    margin-top: 50px;
    margin-left: 20%;
    margin-right: 8%;
}

/* Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 500px;
    max-height: 800px;
}

.form-inner-padding {
    padding: 50px;
}

/* Style for input fields, select, and textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    /* Full width */
    padding: 10px;
    /* Add padding */
    margin-bottom: 15px;
    /* Add spacing between fields */
    background-color: #fff;
    /* White background */
    border: 1.5px solid #d3d3d3;
    /* Light gray border */
    border-radius: 1px;
    /* Slightly rounded corners */
    font-size: 16px;
    /* Font size */
    color: #333;
    /* Text color */
    box-sizing: border-box;
    /* Include padding and border in width */
}

/* Hover effect for input fields */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: #aaaaaa;
    /* Blue border on focus */
    outline: none;
    /* Remove default outline */
}

/* Focus effect for input fields */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border: 1.5px solid #007bff;
    /* Blue border on focus */
    outline: none;
    /* Remove default outline */
}

.contact-form #message {
    min-width: 100%;
    max-width: 100%;
    /* lock horizontal resizing */

    min-height: 100px;
    max-height: 180px;
    /* prevent going too tall */

    resize: vertical;
    /* allow only up/down resize */
}

/* Style for the submit button */
.submit-button {
    background-color: #3172C2;
    /* Blue background */
    color: #fff;
    /* White text */
    padding: 10px 20px;
    /* Padding */
    border: none;
    /* Remove border */
    border-radius: 1px;
    /* Rounded corners */
    font-size: 16px;
    /* Font size */
    cursor: pointer;
    /* Pointer cursor */
    transition: background-color 0.3s ease;
    /* Smooth hover effect */
}

/* Hover effect for the submit button */
.submit-button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

/* Form image */

.form_image_margin {
    margin-right: 15%;
}

/* Pickup Location */
.warehouse_section {
    padding-top: 10%
        /* background-color: tomato; */
}

.address-button {
    display: inline-block;
    padding: 10px 30px 10px 15px;
    margin: 5px 0;
    /* background-color: #f0f0f0; */
    color: #333;
    border-bottom: 1px solid #ebebeb;
    /* border-radius: 0px; */
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    position: relative;
    /* padding-right: 20px; Add space for the arrow */
    cursor: pointer;
}

.address-button::after {
    content: '→';
    /* Unicode arrow */
    position: absolute;
    right: 10px;
    color: #333;
    /* Arrow color */
    transition: color 0.3s;
}


.address-button:hover {
    background-color: #f5f5f5;
}

/* .address-button:hover::after {
    color: #fff; Change arrow color on hover
} */

.address-button.active {
    background-color: #fff;
    color: #0056b3;
    border-bottom: 3px solid #0056b3;
}

.address-button.active::after {
    color: #0056b3;
    /*Change arrow color on hover */
}

/* call & email button */

.action-button {
    display: inline-block;
    padding: 10px 15px 10px 15px;
    margin: 5px 0;
    /* background-color: #f0f0f0; */
    color: #072953;
    /* border-bottom: 1px solid #ebebeb; */
    /* border-radius: 0px; */
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    position: relative;
    /* padding-right: 20px; Add space for the arrow */
    cursor: pointer;
}

.action-button:hover {
    background: rgba(203, 216, 229, 0.52);
    background: color(display-p3 0.8046 0.8445 0.8936 / 0.52);
}

.morecontentonright {
    text-align: left; 
    padding-left: 50px; 
    padding-top: 10px;
}


/* Social icons */

.padding100-tb {
    padding-top: 100px;

}

.padding100-tb.footer_pad_bottom {
    padding-bottom: 100px;

}

.Center-Header-textalign-responsive {
    text-align: Center;
}

.social-icon img {
    transition: 0.6s ease;
}

/* Hover replacement image */
.social-icon.ig:hover img {
    content: url("../icon/Icon_ig_h.svg");
}

.social-icon.in:hover img {
    content: url("../icon/Icon_in_h.png");
}

.social-icon.yt:hover img {
    content: url("../icon/Icon_yt_h.svg");
}

/* Screen size 1512px */
@media (max-width: 1512px) {

    .form_background {
        padding-top: 50px;
        padding-bottom: 100px;
        height: 100vh;
        min-height: 900px;
    }
}

/* IPAD Screen size 820px */

@media (max-width: 820px) {
    .bk_color_gradient_navy {
        background: linear-gradient(180deg, #10365C 60%, #F0F5FC 39%);
        background: linear-gradient(180deg, color(display-p3 0.1062 0.2098 0.3503) 60%, color(display-p3 0.9451 0.9608 0.9843) 39%);
    }

    .form_background {
        padding-top: 50px;
        padding-bottom: 30px;
        height: 80vh;
        min-height: 800px;
    }

    .form_background.responsive_contact_right {
        padding-top: 0px;
        height: 60vh;
        margin-bottom: 10%;
        /* min-height: 0px; */
    }

    .form_padding {
        margin-top: 30px;
        margin-left: 10%;
        margin-right: 10%;
    }

    /* Form image */

    .form_image_margin {
        margin-right: 10%;
        margin-left: 10%;
    }

    .container-contact-responsive {
        padding-left: 10%;
        padding-right: 10%;
        /* background-color: cadetblue; */
    }

    .warehouse_section {
        padding-left: 5%;
        padding-right: 5%;
        /* background-color: tomato; */
    }

    .padding100-tb {
        padding-top: 00px;
        /* background-color: tomato; */
    }

    .padding100-tb.footer_pad_bottom {
        padding-bottom: 50px;
        padding-top: 50px;

    }

}

/* PHONE Screen size 440px */
@media (max-width: 440px) {

    .form_background {
        padding-top: 10px;
        padding-bottom: 0px;
        height: 600px;
        min-height: 800px;
    }

    .form_padding {
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 20px;
        /* background-color: turquoise; */
    }

    .form_background.responsive_contact_right {
        padding-top: 0px;
        height: 650px;
        margin-bottom: 15%;
        min-height: 100px;
        /* background-color: tomato; */
    }

    .form-inner-padding {
        padding: 20px;
    }

    .morecontentonright {
        display: flex;
        text-align: left; 
        padding-left: 50px; 
        padding-top: 10px;
        
    }

}