/********** Template CSS **********/
:root {
    --primary: #FFE468;
    --secondary: #8CC641;
    --light: #F2F2F2;
    --dark: #272630;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}



/* .bg-hero-detail {
    background: url(img/bg-h);
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-hero-detail {
        background-size: cover;
    }
} */

.hero-projects {
    position: relative;
    background: url('/img/bg-hero-project.png') center/cover no-repeat;
    min-height: 70vh;
}

.hero-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(44, 43, 43, 0.65),
            rgba(41, 40, 40, 0.65));
}

.hero-projects .content {
    position: relative;
    z-index: 2;
}

.bg-hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url('/img/bg-hero-contact.png') center center / cover no-repeat;
}

.hero-about .content {
    position: relative;
    z-index: 2;
}

.form-error {
    color: #fff;
    /* white text */
    background-color: #e74c3c;
    /* red-ish background */
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 14px;
}

.bg-hero {

    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

.about-start,
.about-end {

    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}





.service-wall,
.contact-wall {
    background: url(../img/exterior-painting-service.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}


.service-wall:hover,
.contact-wall:hover {
    background: url(../img/exterior-painting-service.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-wall .service-icon,
.contact-wall .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-wall .service-icon div,
.contact-wall .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.service-item .service-icon i,
.contact-wall .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-wall:hover .service-icon div,
.contact-wall:hover .contact-icon div {
    background: var(--secondary);
}

.service-wall:hover .service-icon i,
.contact-wall:hover .contact-icon i {
    color: var(--primary);
}

.service-wall a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-wall:hover a.btn {
    bottom: 0;
    opacity: 1;
}


.service-roof,
.contact-roof {
    background: url(../img/roof.png) top center no-repeat;
    background-size: cover;
    transition: .5s;
}


.service-roof:hover,
.contact-roof:hover {
    background: url(../img/roof.png) bottom center no-repeat;
    background-size: cover;
}

.service-roof .service-icon,
.contact-roof .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-roof .service-icon div,
.contact-roof .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.service-roof .service-icon i,
.contact-roof .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-roof:hover .service-icon div,
.contact-roof:hover .contact-icon div {
    background: var(--secondary);
}

.service-roof:hover .service-icon i,
.contact-roof:hover .contact-icon i {
    color: var(--primary);
}

.service-roof a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-roof:hover a.btn {
    bottom: 0;
    opacity: 1;
}



.service-prepration,
.contact-prepration {
    background: url(../img/surface-preparation.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}


.service-prepration:hover,
.contact-prepration:hover {
    background: url(../img/surface-preparation.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-prepration .service-icon,
.contact-prepration .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-prepration .service-icon div,
.contact-prepration .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.service-prepration .service-icon i,
.contact-prepration .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-prepration:hover .service-icon div,
.contact-prepration:hover .contact-icon div {
    background: var(--secondary);
}

.service-prepration:hover .service-icon i,
.contact-prepration:hover .contact-icon i {
    color: var(--primary);
}

.service-prepration a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-prepration:hover a.btn {
    bottom: 0;
    opacity: 1;
}

/* //reguler painting// */
.service-reguler,
.contact-reguler {
    background: url(../img/reguler-painting.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}


.service-reguler:hover,
.contact-reguler:hover {
    background: url(../img/reguler-painting.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-reguler .service-icon,
.contact-reguler .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-reguler .service-icon div,
.contact-reguler .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.service-reguler .service-icon i,
.contact-reguler .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-reguler:hover .service-icon div,
.contact-reguler:hover .contact-icon div {
    background: var(--secondary);
}

.service-reguler:hover .service-icon i,
.contact-reguler:hover .contact-icon i {
    color: var(--primary);
}

.service-reguler a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-reguler:hover a.btn {
    bottom: 0;
    opacity: 1;
}

.service-coating,
.contact-coating {
    background: url(../img/fence-painting-melbourne-residential.png) top center no-repeat;
    background-size: cover;
    transition: .5s;
}


.service-coating:hover,
.contact-coating:hover {
    background: url(../img/fence-painting-melbourne-residential.png) bottom center no-repeat;
    background-size: cover;
}

.service-coating .service-icon,
.contact-coating .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-coating .service-icon div,
.contact-coating .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.service-coating .service-icon i,
.contact-coating .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-coating:hover .service-icon div,
.contact-coating:hover .contact-icon div {
    background: var(--secondary);
}

.service-coating:hover .service-icon i,
.contact-coating:hover .contact-icon i {
    color: var(--primary);
}

.service-coating a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-coating:hover a.btn {
    bottom: 0;
    opacity: 1;
}

.bg-quote {

    background-size: contain;
}

.blog-img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-wall {
    position: relative;
    margin-bottom: 45px;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/team.jpg) bottom center no-repeat;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 100%;
    bottom: 0;
}

.team-social {
    position: absolute;
    transition: .1s;
    transition-delay: .0s;
    opacity: 0;
}

.team-wall:hover .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.bg-testimonial {

    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}



#floatingCallBar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 400px;
    z-index: 1050;
}

#floatingCallBar .shadow {
    backdrop-filter: blur(10px);
    /* optional glass effect */
    background-color: rgba(255, 255, 255, 0.9);
    /* semi-transparent */
}

.bg-call-to-action {

    background-size: contain;
}

.bg-footer {
    background: url(../img/footer.jpg) center center no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {

    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}


/* Styles for the modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 800%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}


/* Styles for the modal content */
.modal-content {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Styles for the close button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}