@media screen and (orientation: landscape) {
    .carousel img {
        height: 100vh;
    }
}

.chat-icon {
    position: fixed;
    display: inline-block;
    left: 30px;
    bottom: 90px;
    z-index: 99;
}

.chat-icon .chat-toggler {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    border-radius: 5px;
    background: #25D366;
    /* WhatsApp Green */
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chat-icon .chat-toggler::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: rgba(37, 211, 102, 0.2);
    border-radius: 5px;
    z-index: -1;
}

.chat-icon .chat-toggler:hover {
    color: #fff;
    transform: translateY(-3px);
    background: #1ebe5d;
}

.chat-icon .chat-toggler i {
    line-height: 45px;
}

.hero-content h1 {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.hero-content p {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease .3s;
}

.banner-one__thm-and-other-btn-box {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease .6s;
}

/* Active Slide Animation */

.carousel-item.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .banner-one__thm-and-other-btn-box {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}


/* .hero-slide{
    position: relative;
}

.hero-content{
    position: absolute;
    left: 0;
    bottom: 110px;
    z-index: 2;
} */
.hero-content {
    position: absolute;
    /* left: 60px; */
    bottom: 140px;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.55;
    color: #fff;
    font-weight: 400;
    /* padding-bottom: 20px; */
    margin-bottom: 25px;
}

.email-text a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.email-text i {
    margin-right: 8px;
    color: #fff;
}

.banner-one {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-one__shape-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.carousel-item {
    min-height: 250px;
}

.carousel-item .banner-one {
    min-height: 250px;
}

.carousel-fade .carousel-item {
    transition: opacity .8s ease-in-out;
}


/* Previous & Next Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Bottom Dots */
.carousel-indicators {
    bottom: 25px;
}

/* .carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 6px;
    background:#fff;
    opacity:.5;
} */

.section-title h1 {
    color: white;
}

.three-img {
    height: 400px;
}

.about-three__right p {
    font-size: 15px;
}

.view-all-service {
    text-align: center;
}

.footer {
    background: #fff;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

.footer .container {
    width: 90%;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 70px 0;
}

.footer-box {
    border-right: 1px solid #e7e7e7;
    padding-right: 35px;
    padding-bottom: 10px;
}

.footer-box:last-child {
    border-right: none;
}

.footer-logo {
    width: 220px;
    margin-bottom: 25px;
}

.footer-box p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

.footer-box h3 {
    color: #0d5b46;
    font-size: 22px;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
}

.footer-box h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #ff9f1a;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.footer-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 18px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #ff9f1a;
    padding-left: 8px;
}

.footer-box ul li a::before {
    content: "›";
    color: #ff9f1a;
    margin-right: 12px;
    font-weight: bold;
}

.social-links {
    margin-top: 30px;
    margin-bottom: 10px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #0d5b46;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover {
    background: #ff9f1a;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 16px;
    color: #444;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: #0d5b46;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    border-radius: 6px;
}

.footer-middle {
    border-top: 3px solid #ff9f1a;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding: 22px 0;
}

.middle-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.left-text,
.right-text {
    color: #666;
    font-size: 17px;
}

.left-text span {
    margin-right: 15px;
}

.leaf {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #ff9f1a;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    top: -35px;
    border: 5px solid #fff;
}

.copyright {
    background: #0d5b46;
    color: #fff;
    padding: 5px 0;
}

.copyright p {
    font-size: 15px;
}

.copyright-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

.copyright a:hover {
    color: #ff9f1a;
}

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-box {
        border-right: none;
    }

}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .middle-flex,
    .copyright-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .leaf {
        display: none;
    }

}

@media (min-width: 1200px) and (max-width: 1320.98px) {
    .services-two__single {
        width: 255px;
        height: 444px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .services-two__single {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-two__right .testimonial-two__img-1 {
        right: -280px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-two__right .testimonial-two__img-1 {
        right: -190px;
    }
}

@media screen and (max-width: 768px) {

    .hero-slide {
        position: relative;
        height: 650px;
    }

    .hero-content {
        position: absolute !important;
        left: 15px !important;
        bottom: 80px !important;
        max-width: 650px !important;
        z-index: 10;
    }

    .about-three__img img {
        width: 361px;
        right: 0px;
    }

    .about-three__btn-and-author-box {

        margin-top: 15px;
    }

    .services-two .section-title {
        padding-bottom: -10px;
    }
}

/* Hide by default */
.chat {
    display: none;
    position: fixed;
    /* display: inline-block; */
    left: 30px;
    bottom: 40px;
    z-index: 99;

}

.chat a {
    color: white;
}

.chat button {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 47px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    background: #ff9f1a;
    z-index: 2;
    border: none;
}

.chat button:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: rgba(var(--cleanon-base-rgb), .20);
    border-radius: 5px;
    z-index: -1;
}

@media (max-width: 767px) {
    .chat {
        display: block;
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 9999;
    }
}

.services-two__content {
    position: relative;
}

.services-two__icon-3 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: all 0.3s ease;
}

.services-two__content:hover .services-two__icon-3 {
    animation: softShake 0.6s ease-in-out;
}

@keyframes softShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-4deg);
    }

    40% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-2deg);
    }

    80% {
        transform: rotate(2deg);
    }
}

/* .text-left h2{
    color:#fdfdfd
}
.testimonial-two__left p{
    color:#ececec
} */
.three-img p {
    padding-top: 10px;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

/* Main Image */

.main-img {
    width: 400px;
    height: 490px;
    overflow: hidden;
    border-radius: 12px;

}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Small Image */

.small-img {
    position: absolute;
    left: 250px;
    bottom: 120px;
    width: 300px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience */

.experience-box {
    position: absolute;
    left: 0;
    bottom: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.experience-box h2 {
    font-size: 70px;
    color: #008c45;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.experience-box span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.experience-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Dot Pattern */

.dot-pattern {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(#d6d6d6 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: -1;
}

/* Hover */

.main-img img,
.small-img img {
    transition: .5s;
}

.main-img:hover img,
.small-img:hover img {
    transform: scale(1.08);
}

.works-img {
    margin: 100px
}


@media (min-width: 1200px) and (max-width: 1319px) {
    .about-five {
        margin: 0px 0 20px;
        padding: 80px 0 80px;
    }

    .about-three__point-and-review-box {
        padding: 10px 15px 10px;
    }

    .two-im {
        margin-left: 0px;
    }

    .contact-info {
        padding: 80px 0 80px;
    }

    .contact-page {

        padding: 0px 0 10px;

    }

    .main-img {
        width: 370px;
    }

    .small-img {

        left: 200px;
        bottom: 110px;
        width: 300px;
        height: 340px;

    }
}

@media only screen and (max-width: 767px) {
    .contact-info .blocky {
        margin: 20px -4px;
    }

    .about-five {
        margin: 440px 0px 0px;
    }

    .main-img {
        width: 240px;
        height: 440px
    }

    .small-img {

        left: 143px;
        bottom: 0px;
        width: 200px;
        height: 317px;
        height: 340px;
    }

    .about-five__img-2 {
        display: none;
    }

    .about-five__img-box {
        padding: 20px;
    }

    .map-im {
        display: flex;
        flex-direction: column-reverse;
    }
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all .4s ease;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    /* Optional */
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

/* Dark overlay */
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: .4s ease;
    z-index: 1;
}

/* Optional "+" icon */
/* .gallery-item::after{
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
    z-index: 2;
} */

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: inherit;
    color: #F58720;
}