    /* ================= NAVBAR ================= */

    /* Start Index Css */
    :root {
        --shape-mask: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzMyOF82NikiPgo8cGF0aCBkPSJNMy41Nzc0NmUtMDcgMEwwIDMwTDMwIDMwQzEzLjQzMjUgMzAgMS42MDE4MWUtMDcgMTYuNTY3NSAzLjU3NzQ2ZS0wNyAwWiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zMjhfNjYiPgo8cmVjdCB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDMwKSByb3RhdGUoLTkwKSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
        --shape-mask-02: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMzBMMzAgMzBMMzAgMEMzMCAxNi41Njc1IDE2LjU2NzUgMzAgMCAzMFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=)
    }

    .bt_bb_card_icon_arrow {
        display: flex;
        width: 4.7em;
        height: 100%;
        align-items: end;
        justify-content: flex-end;
        position: relative;
        margin-left: auto;
        padding: 0.5rem 1rem 0 0;
        border-top-left-radius: 34px;
        position: relative;
        background: #ffffff;
        margin-top: -52px;
        z-index: 2;
    }

    .bt_bb_card_icon_arrow:before {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 0;
        left: -30px;
        -webkit-mask-image: var(--shape-mask-02);
        background: white;
        transition: all 300ms ease;
    }

    .bt_bb_card_icon_arrow:after {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        top: -30px;
        right: 0;
        -webkit-mask-image: var(--shape-mask);
        background: white;
        transform: rotate(-90deg);
        transition: all 300ms ease;
    }

    .bt_bb_card_icon_arrow .icon-link {
    position: relative;
    width: 44px;
    height: 44px;
    place-content: center;
    text-align: center;
    background-color: #ff6d00;
    border-radius: 50%;
}
.bt_bb_card_icon_arrow .icon-link i{
        font-size: 25px;
    color: #ffffff;
}

    .branding-logo-text {
        background: #ffffff;
        margin-right: 2em;
        position: relative;
        border-bottom-right-radius: 40px;
    }

    .branding-logo-text:before {
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        background: #ffffff;
        position: absolute;
        bottom: -40px;
        left: -10px;
        -webkit-mask-image: var(--shape-mask);
        transition: all 300ms ease;
        mask-repeat: no-repeat;
        transform: rotate(90deg);
    }

    .branding-logo-text:after {
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        background: #ffffff;
        position: absolute;
        top: 0;
        right: -30px;
        -webkit-mask-image: var(--shape-mask);
        transition: all 300ms ease;
        transform: rotate(90deg);
        -webkit-mask-repeat: no-repeat;
    }


    .btn-warning {
        color: white;
        background-color: #ff6d00;
        border-color: #ff6d00;
    }

    .btn-warning:hover {
        color: white;
        background-color: #0080cc;
        border-color: #0080cc;
    }

    .text-warning {
        color: #ff6d00 !important;
    }

    #services .card {
        border: unset;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Josefin Sans", sans-serif;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #333333;
        font-weight: 500;
    }

    @media (min-width: 992px) {
        .navbar .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: 0.3s ease;
        }

        .navbar .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }

    .custom-btn {
        background-color: #ff7f00;
        color: #fff;
        border: 1px solid #ff7f00;
        padding: 10px 20px;
        border-radius: 50px;
        transition: 0.3s;
    }

    .custom-btn:hover {
        background: #fff;
        color: #ff7f00;
    }

    /* .navbar-light{
          color: #43934a ;
        } */

    /* ================= HERO ================= */
    .text-decor {
        font-size: 200px;
        color: #43934a;
        text-align: center;
        font-weight: 700;
        line-height: 1;
    }

    .image-center {
        display: flex;
        justify-content: center;
        margin-top: -60px;
    }

    .image-center img {
        width: 70%;
    }



    /* ================= STATS SECTION ================= */
    .stats-section {
        padding: 90px 0;
        /* background: #faf8f4; */
    }

    .stats-wrapper {
        max-width: 1200px;
        margin: auto;
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 50px;
        flex: 1;
    }

    .feature {
        display: flex;
        gap: 15px;
    }

    .check {
        width: 26px;
        height: 26px;
        background: #3e8e41;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .feature h4 {
        margin: 0 0 5px;
        /* font-size: 18px; */
        font-weight: 600;
    }

    .feature p {
        /* margin: 0;
            font-size: 14px; */
        color: #555;
        line-height: 1.6;
    }

    .rating-card {
        background: #fff;
        border-radius: 24px;
        padding: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .rating-content h1 {
        font-size: 72px;
        color: #3e8e41;
        margin: 0;
    }

    .rating-content h3 {
        font-size: 26px;
        margin: 10px 0;
        font-weight: 600;
    }

    .rating-content p {
        font-size: 14px;
        color: #666;
    }

    .rating-card img {
        /* max-width: 170px; */

    }

    @media (max-width: 992px) {
        .text-decor {
            font-size: 100px;
        }

        .stats-wrapper {
            flex-direction: column;
        }

        .features {
            grid-template-columns: 1fr;
        }

        .image-center img {
            width: 90%;
        }
    }

    .estimate-section h2 {
        font-size: 36px;
        font-weight: 700;
    }

    .bg-orange {
        background-color: #ff7f00 !important;
    }

    #totalPrice {
        font-weight: bold;
        font-size: 20px;
    }

    .estimate-section .form-range {
        accent-color: #ff7f00;
    }

    .estimate-section img {
        max-width: 100%;
    }

    header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    header {
        background-color: #ffffffd1;
        background-color: white;
        backdrop-filter: blur(2px);
    }

    @media (min-width:768px) {
        .carousel-item {
            height: 85vh;
        }

        .w-md-50 {
            width: 50%;
        }
    }

    @media (max-width:768px) {
        .carousel-item {
            height: 60vh;
        }

        #enq-home {
            padding: 0 4%;
            margin-top: -40%;
        }
    }


    .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 100%;
    }

    .carousel-item img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .carousel-caption {
        left: unset;
        right: unset;
        width: 100%;
        height: 100%;
        place-content: center;
    }

    #sliderHome {
        position: relative;
    }

    @media (min-width:900px) {
        .carousel-caption {
            text-align: left;
        }

        #enq-home {
            position: absolute;
            top: 0;
            right: 8.55%;
            width: 30%;
            place-content: center;
            height: 100%;
        }

        #enq-home .card {
            background-color: #ffffffad;
            backdrop-filter: blur(2px);
        }
    }

    @media (max-width:768px) {
        .w-sm-100{width: 100%;}
    }

    .bg-color-slide {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #0000004a;
    }

    .radius-10 {
        border-radius: 10px;
    }

    .radius-20 {
        border-radius: 20px;
    }

    .radius-30 {
        border-radius: 30px;
    }



    .bg-color-2 {
        background-color: #ecf4fd;
    }






    /* ------- #services------- */
    /* ODD ITEMS */
    #services .items:nth-child(odd) .card-body {
        background-color: #00000052;
        color: #fff;
    }

    #services .items:nth-child(odd) .card {
        height: 380px;
    }

    /* EVEN ITEMS */
    #services .items:nth-child(even) .card-body {
        background-color: #ecf4fd;
        color: #000;
    }

    #services .items:nth-child(even) .card {
        height: 270px;
    }

    #services .items {
        padding: 10px;
    }

    #services .card img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #services .card-body p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #services .card-body img {
        margin-bottom: 20px;
    }

    #services .card {
        overflow: hidden;
    }

    #services .card-body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        place-content: end;
        padding-right: 20%;
    }



    /* --------- #services-2 --------- */
    #services-2 .items:nth-child(odd) .card-body {
        background-color: #00000052;
        color: #fff;
    }

    #services-2 .items:nth-child(odd) .card {
        height: 300px;
    }

    /* EVEN ITEMS */
    #services-2 .items:nth-child(even) .card-body {
        background-color: #0080cc;
        color: #ffffff;
    }

    #services-2 .items:nth-child(even) .card {
        height: 240px;
    }

    #services-2 .items {
        padding: 10px;
    }

    #services-2 .card img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #services-2 .card-body p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #services-2 .card-body img {
        margin-bottom: 20px;
    }

    #services-2 .card {
        overflow: hidden;
    }

    #services-2 .card-body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        place-content: end;
        padding-right: 20%;
    }


    /* -------- #services-3 ----------- */
    #services-3 .items .card-body {
        background-color: #0080ccde;
        color: #ffffff;
    }

    #services-3 .items .card {
        height: 240px;
    }

    #services-3 .items {
        padding: 10px;
    }

    #services-3 .card img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #services-3 .card-body p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #services-3 .card-body img {
        margin-bottom: 20px;
    }

    #services-3 .card {
        overflow: hidden;
    }

    #services-3 .card-body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        place-content: end;
        padding-right: 20%;
    }

    /* .shape-box {
    width: 400px;
    height: 400px;
    background: #000;
    border-bottom-right-radius: 100%;
} */

       /* -------- #contact ----------- */
    .services_card_icon_arrow:before {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 0;
        left: -30px;
        -webkit-mask-image: var(--shape-mask-02);
        background: #ecf4fd;
        transition: all 300ms ease;
    }

    .services_card_icon_arrow:after {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        top: -30px;
        right: 0;
        -webkit-mask-image: var(--shape-mask);
        background: #ecf4fd;
        transform: rotate(-90deg);
        transition: all 300ms ease;
    }

    .services_card_icon_arrow {
        justify-content: flex-end;
        position: absolute;
        bottom: 0px;
        right: 0px;
        margin-left: auto;
        padding: 8px 8px;
        border-top-left-radius: 34px;
        position: absolute;
        background: #ecf4fd;
        z-index: 2;
    }

    #services-4 .items .card-body {
            background-color: #0080cc;
        color: #ffffff;
    }

    #services-4 .items .card {
        /* height: 200px; */
    }

    #services-4 .items {
            position: relative;
    }

    #services-4 .card img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    #services-4 .card-body p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    #services-4 .card-body img {
        margin-bottom: 20px;
    }
    #services-4 .card-body h4{    margin: 0;}
    #services-4 .card {
        overflow: hidden;
        border:none;
        background-color: #0080cc;
    }

    #services-4 .card-body {
        /* position: absolute; */
        top: 0;
        left: 0;
        width: 100%;
        /* height: 100%; */
       padding-right: 24%;
    place-content: center;
    }
#services-4 .icon-link{
    position: relative;
    width: 44px;
    height: 44px;
    place-content: center;
    text-align: center;
    background-color: #ff6d00;
    border-radius: 50%;
}
#services-4 .icon-link i{font-size: 25px;color: #ffffff;}

#services-4 .items .icon-link{transition: 0.5s all;}
#services-4 .items:hover  .icon-link{
    rotate: 45deg;
}

#services-4 .items .items-img{overflow: hidden;height: 200px;}
#services-4 .items .items-img .zoom-in{transition: 0.5s all;}
#services-4 .items:hover .items-img .zoom-in{
   transform: scale(1.2);
}



    /* -------- #contact ----------- */
    .contact_card_icon_arrow:before {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 0;
        left: -30px;
        -webkit-mask-image: var(--shape-mask-02);
        background: white;
        transition: all 300ms ease;
    }

    .contact_card_icon_arrow:after {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        top: -30px;
        right: 0;
        -webkit-mask-image: var(--shape-mask);
        background: white;
        transform: rotate(-90deg);
        transition: all 300ms ease;
    }

    .contact_card_icon_arrow {
        justify-content: flex-end;
        position: absolute;
        bottom: 0px;
        right: 0px;
        margin-left: auto;
        padding: 8px 8px;
        border-top-left-radius: 34px;
        position: absolute;
        background: #ffffff;
        z-index: 2;
    }

    #contact .items .card-body {
        background-color: #0080cc;
        color: #ffffff;
        padding-right: 25%;
    }

    #contact .items {
        padding: 10px;
    }

    #contact .card {
        overflow: hidden;
    }

    #contact .items a {
        color: white;
    }







    @media (min-width:768px) {
        .row-col-3 {
            column-count: 3;
        }
    }



    .bg-color-1 {
        background-color: #0080cc;
    }

    #choose .card {
        border-radius: 30px;
        padding: 20px;
        /* background-color: #ffffff; */
        /* border-color: #000000; */
        height: 100%;
        border: 2px solid #045485;
    }

    #choose .card h4 {
        margin-bottom: 0;
    }

    #choose .card .icon,
    #choose .card .icon-name {
        margin-top: auto;
        margin-bottom: auto;
    }

    #choose .card .icon {
        margin-bottom: 10px;
    }

    @media (min-width:768px) {
        .img-back-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
        }
    }

        @media (min-width:768px) {
        .img-back-3 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 34%;
        }
    }

    #review-section .card {
        border: unset;
        border-radius: 30px;
        background-color: #ffffffe0;
    }

    #review-section {
        position: relative;
    }

    .img-back-1 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30%;
    }

    /* End Of Index Page  */


    .ul-icon-1 {
        list-style-image: url(..//svg/check.svg);
        list-style-position: inside;
    }


@media (min-width:768px) {
     #page-hero {
        position: relative;
        height: 40vh;
    }
}

@media (max-width:768px) {
     #page-hero {
        position: relative;
        height: 30vh;
    }
}
   

    #page-hero .hero-content,
    #page-hero .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        place-content: center;
        text-align: center;
    }

    #page-hero .hero-content {
        place-content: center;
        text-align: center;
        z-index: 1;
        color: white;
    }

    #page-hero .hero-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #012c45b8;
        z-index: -1;
    }

    #page-hero .hero-img img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

        .bt_certified_cleaners {
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: white;
        border-top-left-radius: 30px;
        padding-left: 14px;
        padding-top: 14px;
    }

    .bt_certified_cleaners:before {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        bottom: 0;
        left: -30px;
        -webkit-mask-image: var(--shape-mask-02);
        background: #ffffff;
        transition: all 300ms ease;
    }

    .bt_certified_cleaners:after {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        position: absolute;
        top: -30px;
        right: 0;
        -webkit-mask-image: var(--shape-mask);
        background: #ffffff;
        transform: rotate(-90deg);
        transition: all 300ms ease;
    }


    .social-links,
.social-links ul {
    display: flex;
    gap: 10px;
}

@media (min-width: 768px) {

    .social-links,
    .social-links ul {
        /* flex-direction: column; */
    }
}

@media (min-width: 768px) {
    .social-links {
        bottom: 1%;
        right: 14px;
    }
}

@media (max-width: 768px) {
    .social-links {
        width: 100%;
        justify-content: space-between;
        right: 0;
        bottom: 0;
        padding: 10px;
        /* background-color: #ffffff; */
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .social-links ul {
        width: 100%;
    }
}

.social-links {
    position: fixed;
    z-index: 10;
}

.footer-bg {
    position: relative;
    z-index: 1;
    background-image: url(../images/footer-bg.jpg);
    background-position: center;
    background-size: cover;
}

.footer-bg::after {
    position: absolute;
    content: '';
    background-color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

footer h5 {
    color: white;
}

footer ul li {
    padding-bottom: 6px;
}

.company-teg p,
.company-teg a {
    color: white !important;
}

footer li,
footer a,
footer p,
footer span,
footer i {
    color: #ffffffad;
}



.newsletter-one {
    padding: 46px 0px;
    position: relative;
    overflow: hidden;
    background-color: #1947cd;
}

.newsletter-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.newsletter-one .container {
    position: relative;
    z-index: 1;
}

.newsletter-one .container::before {
    content: "";
    width: 10000px;
    height: 200%;
    position: absolute;
    top: 50%;
    left: -9867px;
    transform: translateY(-50%);
    background-color: var(--tidytouch-primary, #FFB400);
    clip-path: polygon(100% 0%, 99% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
    z-index: -1;
}

a {
    text-decoration: none;
}


                    .clients-modern {
            background: #f4f6f8;
        }
body{font-family: "Josefin Sans", sans-serif;}
        .client-item {
            background: #ffffff;
            padding: 28px 25px;
            border-radius: 12px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 18px;
            border-left: 6px solid #ff6d00;
            transition: all 0.35s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .client-item.blue {
            border-color: #0080cc;
        }

        .client-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #ff6d00;
            flex-shrink: 0;
        }

        .client-item.blue .client-icon {
            color: #0080cc;
        }

        .client-item h5 {
            margin: 0;
            font-weight: 600;
            font-size: 18px;
            color: #222;
        }

        .client-item span {
            font-size: 14px;
            color: #666;
        }

        .client-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        }

        .dropdown-item:focus, .dropdown-item:hover {
    color: #ffffff;
    background-color: #0080cc;
}
@media (min-width:768px) {
    .dropdown-menu{padding: 0;}
}

@media (max-width:768px) {
    .heading{
        text-align:center;
    }
}

footer a:hover {
    color: #ff6d00;
}

.pricing{text-align: center;}
.pricing .card{
        color: #ffffff;
    background-color: #0080cc;
    border-radius: 30px;
}
.pricing .card ul{list-style: none;}

#detalis-1 h3{text-align: center; color: #ff6d00;} 
#detalis-1 h4{color: #0080cc;} 

/* slider image zoom */
.image-zoom {
  -webkit-animation: image-zoom 15s ease-out both;
          animation: image-zoom 15s ease-out both;
             animation-iteration-count: infinite;
}

/** The Keyframes
--------------------------------------**/
@-webkit-keyframes image-zoom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes image-zoom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
