/* Contact us Section */
.contact-us-section {
    padding: 2rem 0;
}

.contact-title {
    font-weight: 500;
    text-transform: uppercase;
}

.contact-heading {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card {
    border: 1px solid transparent;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-paragraph {
    font-weight: bold;
    color: #b50000;
}

.contact-icon {
    width: 90px;
}

.contact-card p {
    margin-bottom: 0.75rem;
}

.btn-arrow {
    margin-top: auto; 
}

/* Colored box Instant help section */
.instant-help-section {
    background-color: #085aac;
    color: #fff;
    padding: 2rem 0;
}

.instant-help-title {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 2rem 0;
}

.contact-form-box {
    background-color: #EBF5FF;
    border-radius: 12px;
}

.contact-form-title {
    font-weight: 600;
    font-size: 2rem;
}

.contact-form-paragraph {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form-image {
    max-width: 95%;
}

.custom-input {
    padding: 8px 10px !important;
    border-radius: 6px !important;
}

.custom-input:focus {
    border-color: #085aac;
    box-shadow: none !important;
}

/* Submit Button */
.btn-form {
    background-color: #085aac;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.btn-form:hover {
    background-color: #085aac !important;
    color: white !important;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #ced4da !important; 
    background-image: none !important;
    box-shadow: none !important;
}

.custom-input:valid {
    border-color: #ced4da !important;
}

/* Mobile */
@media (max-width: 767px) {
    .contact-form-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Address with google map section */
.address-map-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.address-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.address-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: 1px solid #ccc;
    display: block;
}

.address-map-section.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 767px) {
    .address-title {
        text-align: center;
    }

    .address-text {
        text-align: center;
        font-size: 1.2rem;
    }
}

