﻿/* ADD THE NAVIGATION FOR CALL NOW BUTTON STYLE */

.call-now {
/*    text-align: center;*/
    margin-top: 50px;
}

    .call-now img {
        display: flex;
        justify-self: anchor-center;
        margin-right: 65px;
        width: 20%;
    }

    .call-now .number {
        color: #ff9249;
        font-size: 35px;
        margin-top: 5px;
    }
        @media (max-width: 992px) {
            .call-now {
                display: none;
            }
        }

/* ADD THE FOOTER UP CONTECT FOR 2 IMAGES AND FORM STYLE  */
.contact-section {
    padding: 60px 0;
    border: 2px solid #ccc;
    border-radius: 10px;
    margin: 40px auto;
}

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

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
}

.form-group {
    position: relative;
}

.contact-form .form-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff8000;
}

.contact-form .form-control {
    padding-left: 35px;
    height: 50px;
}

.btn-orange {
    background-color: #ff8000;
    color: #fff;
    border: none;
}

    .btn-orange:hover {
        background-color: #e67300;
    }

.btn-outline-orange {
    border: 1px solid #ff8000;
    color: #ff8000;
}

    .btn-outline-orange:hover {
        background-color: #ff8000;
        color: white;
    }

.carousel-inner img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.equal-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equal-height-container > div {
    display: flex;
}

    .equal-height-container > div > div {
        flex: none;
        height: 100%;
    }

/* Responsive Image Height Fix */
@media (max-width: 767.98px) {
    .carousel-inner img {
        height: auto;
    }

    .call-now {
        display: none;
    }
}