/* Default styles for larger screens */

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #fcfbf4;
    border-radius: 15px;
    border: 1px solid #ecd5b6;
}

.contact_field {
    padding: 60px 340px 90px 100px;
    /* For larger screens */
}


.contact_field h3 {
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: -20px;
}

.contact_field p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
    height: 50px;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #82074a;
}

.contact_field .form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    /* background-color: #82074a; */
    background: linear-gradient(to right, #ecd5b6, #fcfbf4);
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
    color: #82074a;
}

.contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
    color: #82074a;
    font-weight: 700;
}

.info_single {
    margin: 30px 0px;
}

.info_single i {
    margin-right: 15px;
}

.info_single span {
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to right, #ecd5b6, #fcfbf4);
    border: none;
    color: #82074a;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;
    transition: background 0.5s ease, color 0.5s ease;
    /* Smooth transition */
}

button.contact_form_submit:hover {
    color: #82074a;
    background: linear-gradient(to right, #fcfbf4, #ecd5b6);
}


.map_sec {
    padding: 50px 0px;
}

.map_inner h4,
.map_inner p {
    color: #000;
    text-align: center;
}

.map_inner p {
    font-size: 13px;
}

.map_bind {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive Styles */

/* Tablets and small screens */
@media (max-width: 1024px) {
    .contact_field {
        padding: 50px 150px 70px 50px;
        /* Reduce padding for smaller screens */
    }

    .contact_info_sec {
        height: 300px;
        width: 300px;
        /* Adjust the size of the contact info box */
        padding: 30px;
    }

    .contact_field h3 {
        font-size: 35px;
        /* Smaller font for headings */
    }

    .contact_field .form-control::placeholder {
        font-size: 12px;
    }

    button.contact_form_submit {
        font-size: 13px;
        /* Smaller button text */
    }
}

/* Large Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
    .contact_field {
        padding: 40px 40px 50px 40px;
        /* Even smaller padding */
    }

    .contact_info_sec {
        position: static;
        margin-top: 30px;
        height: auto;
        width: 100%;
        border-radius: 15px;
        /* Full-width on mobile */
        padding: 20px;
    }

    .contact_field h3 {
        font-size: 30px;
        margin-top: 0px;

    }

    .contact_field .form-control {
        height: 45px;
        /* Adjust input height */
    }

    button.contact_form_submit {
        padding: 8px 10px;
        font-size: 12px;
    }

    .info_single span {
        font-size: 13px;
    }

    .map_inner h4,
    .map_inner p {
        font-size: 12px;
        /* Smaller text for map section */
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .contact_field {
        padding: 30px 20px 40px 20px;
        /* Reduce padding further */
    }

    .contact_info_sec {
        padding: 15px;
        border-radius: 10px;
    }

    .contact_field h3 {
        font-size: 25px;
    }

    .contact_field .form-control {
        height: 40px;
    }

    button.contact_form_submit {
        font-size: 11px;
    }

    .map_inner h4,
    .map_inner p {
        font-size: 11px;
    }
}

.res-padding {
    padding: 50px 50px 0px 50px;
}