@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #00c2ff;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #f5f6f7;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.leap-frog {
    --uib-size: 80px;
    --uib-speed: 2s;
    --uib-color: rgb(0, 194, 255);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: var(--uib-size);
}
.leap-frog__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}
.leap-frog__dot::before {
    content: "";
    display: block;
    height: calc(var(--uib-size) * 0.22);
    width: calc(var(--uib-size) * 0.22);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
}
.leap-frog__dot:nth-child(1) {
    animation: leapFrog var(--uib-speed) ease infinite;
}
.leap-frog__dot:nth-child(2) {
    transform: translateX(calc(var(--uib-size) * 0.4));
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -1.5)
        infinite;
}
.leap-frog__dot:nth-child(3) {
    transform: translateX(calc(var(--uib-size) * 0.8)) rotate(0deg);
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -3)
        infinite;
}
@keyframes leapFrog {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    33.333% {
        transform: translateX(0) rotate(180deg);
    }
    66.666% {
        transform: translateX(calc(var(--uib-size) * -0.4)) rotate(180deg);
    }
    99.999% {
        transform: translateX(calc(var(--uib-size) * -0.8)) rotate(180deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}
/*-----------------------[ 3.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*-----------------------[ 4.Button CSS ]------------------------*/
.btn-quote {
    color: var(--5, #fff);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    background: #00c2ff;
    border-radius: 30px;
    padding: 16px 23px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}
.btn-quote::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.btn-quote:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}
/*-----------------------[ 5.Main Header CSS ]------------------------*/
.header {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0 auto;
    width: calc(100% - 60px);
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-logo {
    display: none;
}
.dsad {
    display: none;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.menu {
    list-style: none;
    display: flex;

    gap: 60px;
}
.menu li {
    position: relative;
}
.menu li span {
    width: 8px;
    height: 8px;
    background: #00c2ff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -35px;
}
.menu li a {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    text-wrap: nowrap;
    top: 100%;
}

.active img {
    margin-left: 0.5rem;
}

.dropdown a img {
    margin-left: 0.5rem;
}
.menu li:hover > a {
    color: #00c2ff;
    filter: brightness(0) saturate(100%) invert(67%) sepia(37%) saturate(7498%)
        hue-rotate(162deg) brightness(108%) contrast(103%);
}
.menu > li > a.active {
    filter: brightness(0) saturate(100%) invert(67%) sepia(37%) saturate(7498%)
        hue-rotate(162deg) brightness(108%) contrast(103%);
}
.submenu li a.active {
    color: #00c2ff !important;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    /* margin-top: 10px; */
    background: white;
    padding: 10px 0;
    border-radius: 0 0 15px 15px;
    border-top: 2px solid #00c2ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 150px;
}

.submenu li a {
    font-size: 16px;
}
/* .dropdown:hover .submenu {
  display: block;
} */
.submenu li {
    padding: 8px 20px;
}
.submenu li a:hover {
    color: #00c2ff;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.call {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 6px 30px 6px 6px;
    border-radius: 40px;
    gap: 10px;
    width: max-content;
    text-wrap: nowrap;
}
.call .headphone-main {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.need-help-main p {
    color: var(--5, #fff);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.need-help-main a {
    color: var(--5, #fff);
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
}
/* Hamburger */
.hamburger {
    display: none;
}
.hamburger .close-icon {
    display: none;
}
.nav.open ~ .header-container .hamburger .menu-icon {
    display: none;
}
.nav.open ~ .header-container .hamburger .close-icon {
    display: inline;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: 0.3s ease;
}
.overlay.active {
    display: block;
    opacity: 1;
}
/*-----------------------[ 6.1.Hero Section Slider CSS ]------------------------*/
.hero-slider {
    width: 100%;
    height: 400px;
}
.main-swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(1px);
    z-index: 1;
}
#hero-slider-img1 {
    background-image: url("../images/home/main-slider-img1.jpg");
}
#hero-slider-img2 {
    background-image: url("../images/home/bg-2.jpeg");
    background-size: 100%;
    background-position: bottom;
}
#hero-slider-img3 {
    background-image: url("../images/home/bg-1.jpeg");
}
.clearfix-space {
    margin-top: 100px;
}
.slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.needs-text {
    color: var(--5, #fff);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.lets-us-do {
    color: var(--5, #fff);
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
}
.residents {
    color: var(--5, #fff);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
    padding-left: 20px;
    margin-bottom: 28px;
    border-left: 10px solid #00c2ff;
}
.home-img-clening {
    position: absolute;
    top: 40px;
    max-width: 720px;
}
.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cutomer-img-main-text {
    display: flex;
    align-items: center;
    gap: 95px;
    border-radius: 40px;
    background: linear-gradient(
        90deg,
        rgba(0, 194, 255, 0.3) 0%,
        rgba(0, 194, 255, 0.15) 100%
    );
    backdrop-filter: blur(6px);
    padding: 8px 30px 8px 8px;
    position: absolute;
    bottom: -16px;
    left: -100px;
}
.cutomer-img-main {
    position: relative;
}
.cutomer-img-main img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.cutomers-text-main h2 {
    color: var(--5, #fff);
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
}
.cutomers-text-main p::before {
    content: url(../images/svg/white-star.svg);
}
.cutomers-text-main p {
    color: var(--5, #fff);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cutome2 {
    position: absolute;
    left: 40px;
    top: 0;
}
.cutome3 {
    position: absolute;
    left: 80px;
    top: 0;
}
.animate-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.swiper-slide-active .animate-slide {
    opacity: 1;
    transform: translateY(0);
}
/*-----------------------[ 6.2.Hero Section Solid CSS ]------------------------*/
.main-swiper-solid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #003a4c;
    backdrop-filter: blur(4px);
    z-index: 1;
}
.bubble_area {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}
.bubble_area div[class^="bubbles-"] {
    height: 1px;
    width: 1px;
    position: absolute;
    background: url(../images/home/bubble_1.png) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}
.bubbles-1 {
    bottom: -5px;
    left: 68%;
    -webkit-animation: animate 10s infinite ease-in -6.57s;
    animation: animate 10s infinite ease-in -6.57s;
}
.bubbles-2 {
    bottom: -71px;
    left: 97%;
    -webkit-animation: animate 10s infinite ease-in -5.07s;
    animation: animate 10s infinite ease-in -5.07s;
}
.bubbles-3 {
    bottom: -71px;
    left: 43%;
    -webkit-animation: animate 10s infinite ease-in -6.73s;
    animation: animate 10s infinite ease-in -6.73s;
}
.bubbles-4 {
    bottom: -30px;
    left: 82%;
    -webkit-animation: animate 10s infinite ease-in -4.04s;
    animation: animate 10s infinite ease-in -4.04s;
}
.bubbles-5 {
    bottom: -73.4px;
    left: 29%;
    -webkit-animation: animate 10s infinite ease-in -3.11s;
    animation: animate 10s infinite ease-in -3.11s;
}
.bubbles-6 {
    bottom: -71px;
    left: 41%;
    -webkit-animation: animate 10s infinite ease-in -5.95s;
    animation: animate 10s infinite ease-in -5.95s;
}
.bubbles-7 {
    bottom: -79.4px;
    left: 14%;
    -webkit-animation: animate 10s infinite ease-in -3.68s;
    animation: animate 10s infinite ease-in -3.68s;
}
.bubbles-8 {
    bottom: -115.4px;
    left: 90%;
    -webkit-animation: animate 10s infinite ease-in -3.89s;
    animation: animate 10s infinite ease-in -3.89s;
}
.bubbles-9 {
    bottom: -44.6px;
    left: 33%;
    -webkit-animation: animate 10s infinite ease-in -1.09s;
    animation: animate 10s infinite ease-in -1.09s;
}
.bubbles-10 {
    bottom: -30px;
    left: 59%;
    -webkit-animation: animate 7s infinite ease-in -0.96s;
    animation: animate 7s infinite ease-in -0.96s;
}
@keyframes animate {
    0% {
        transform: translate3d(-80%, 0, 0) rotate(70deg);
        width: 35px;
        height: 35px;
    }
    100% {
        transform: translate3d(-80%, -800px, 0) rotate(360deg);
        width: 75px;
        height: 75px;
    }
}
/*-----------------------[ 6.3.Hero Section Video CSS ]------------------------*/
.main-swiper-video-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}
.video-swiper-row {
    justify-content: center;
    text-align: center;
}
.video-swiper-row .residents {
    padding-left: 0;
    border: none;
}
.video-swiper-row .cutomer-img-main-text {
    position: unset;
    width: fit-content;
    margin: 30px auto 0 auto;
}
/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
    padding: 80px 0;
}
.cap-text {
    color: var(--16, #00c2ff);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.sec-text {
    color: var(--3, #000);
    font-size: 25px;
    font-weight: 800 !important;
    line-height: 40px;
    padding-bottom: 14px;
}
.sec-sub-text {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}
.about-grid-box-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f5f6f7;
}
.about-box-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.about-svg-main {
    width: 100%;
    max-width: 64px;
    height: 64px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.about-box-main:hover .about-svg-main {
    background: #00c2ff;
}
.about-svg-main img {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.about-box-main:hover .about-svg-main img {
    transform: rotateY(180deg);
}
.expeStaff {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 10px;
}
.fessional {
    color: var(--4, #222);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.about-sec-main {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}
.about-sec-main .call {
    background: transparent;
    border: 2px solid #00c2ff;
}
.about-sec-main .call .headphone-main {
    background: #00c2ff;
}
.about-sec-main .call .headphone-main img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%)
        hue-rotate(85deg) brightness(112%) contrast(101%);
}
.about-sec-main .call .need-help-main p,
.about-sec-main .call .need-help-main a {
    color: #000;
}
.about-sec-main .call .need-help-main a:hover {
    color: #00c2ff;
}
.sub-img-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.subtract-img {
    max-width: 100%;
    position: absolute;
}
.about-img1 {
    max-width: 100%;
}
.about-img2 {
    position: absolute;
    top: -60px;
    left: 130px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    animation: mover 2s infinite alternate;
}
.about-img3 {
    position: absolute;
    bottom: -75px;
    right: 100px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    animation: mover 2s infinite alternate;
    max-width: 190px;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
    background-image: url("../images/services/blue-brushstrokes.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}
.section-main-text-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.section-main-text-flex .ornare {
    max-width: 630px;
}
.copyrights-main p:last-child a {
    text-transform: uppercase;
    margin-left: 8px;
    margin-right: 4px;
}
.services-slider {
    margin-right: -470px;
    margin-top: 50px;
}
.cleaning-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}
.cleaning-card-img-main {
    overflow: hidden;
    height: 327px;
}
.cleaning-card-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.7s ease;
}
.cleaning-card:hover .cleaning-card-img-main img {
    transform: scale(1.1);
}
.services-svg-main {
    width: 120px;
    overflow: hidden;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    margin-top: -65px;
    position: relative;
    animation: animate-pulse 3s linear infinite;
}
.services-svg-main img {
    object-fit: cover;
}
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4),
            0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0),
            0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}
.services-svg-main img {
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}
.cleaning-card:hover .services-svg-main img {
    transform: rotateY(180deg);
}
.card-containe {
    padding: 10px 40px 0px 40px;
    border-bottom: 2px solid #f5f6f7;
    flex-grow: 1;
}
.services-name {
    color: var(--3, #000);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 10px;
}
.services-card-sub-text {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.card-learn-more {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--16, #00c2ff);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
}
.cleaning-card:hover .card-learn-more {
    color: #fff;
    border-radius: 0 0 20px 20px;
}
.cleaning-card:hover .card-learn-more::after {
    top: auto;
    height: 100%;
    bottom: 0;
}
.card-learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #00c2ff;
    z-index: -1;
    transition: inherit;
}
.card-learn-more img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(1569%)
        hue-rotate(154deg) brightness(100%) contrast(101%);
}
.cleaning-card:hover .card-learn-more img {
    filter: none;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
}
.check-box-main-sub {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}
.check-box-main-sub h2 {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 5px;
}
.check-box-main-sub p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.sec-video2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video2 {
    width: 360px;
    height: 100%;
    object-fit: cover;
    border-radius: 180px;
}
.sadas {
    width: 360px;
    height: 100%;
    border: 2px solid #00c2ff;
    border-radius: 180px;
    position: absolute;
    left: 130px;
    top: 10px;
    z-index: -1;
    overflow: hidden;
}
.why-choose-img3 {
    position: absolute;
    right: 0;
    bottom: 50px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    animation: mover 1s infinite alternate;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    background-image: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        url("../images/home/calculator-sec-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
.cost-cal {
    text-align: center;
}
.fami-cal {
    text-align: center;
    max-width: 630px;
    margin: 0 auto;
    color: #ffffff;
}
.calculator-box-main {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    margin-top: 100px;
    margin-bottom: -200px;
}
.calcult-from-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.input-label-text {
    color: var(--3, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.calcult-from-grid input,
.your-message-input input {
    border-radius: 10px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
    padding: 12px 15px;
    width: 100%;
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.calcult-from-grid input:focus,
.your-message-input input:focus {
    outline: 2px solid #00c2ff;
}
.input-main {
    border-radius: 10px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
    padding: 12px 15px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.formDropDown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.formDropDown-ul-list {
    display: none;
    margin-top: -1px;
    background: #ffffff;
    padding-left: 0;
    position: absolute;
    top: 15px;
    width: 100%;
    z-index: 5;
    border: 1px solid #00c2ff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.formDropDown-ul-list a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.formDropDown-ul-list li {
    padding: 10px 12px;
}
.formDropDown-ul-list li:hover {
    background: #00c2ff;
}
.formDropDown-ul-list li:hover a {
    color: #fff;
}
.arrow-icon-form {
    transition: transform 0.3s ease-in-out;
}
.arrow-icon-form.up {
    transform: rotate(180deg);
}
.get-cost-estimate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.send-info {
    max-width: 300px;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    background: var(--12, #f5f6f7);
    padding: 100px 0 100px;
}
.how-to-work-bg {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
}
.mazing {
    max-width: 630px;
    color: #000;
    margin: 0 auto;
    text-align: center;
}
.scetur {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.how-work-step-box {
    display: grid;
    grid-template-columns: 300px auto 300px auto 300px;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}
.how-work-step-box .how-work-step-box-sub {
    text-align: center;
}
.how-to-work-circle {
    text-align: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.how-to-work-circle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #00c2ff;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.how-work-step-box-sub:hover .how-to-work-circle::after {
    height: 100%;
    top: auto;
    bottom: 0;
}
.how-to-work-circle img {
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.how-work-step-box-sub:hover .how-to-work-circle img {
    transform: rotateY(180deg);
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%)
        hue-rotate(85deg) brightness(112%) contrast(101%);
}
.how-work-step-box .how-work-step-box-sub h3 {
    color: var(--3, #000);
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 10px;
}
/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
}
.projectSlider {
    margin-top: 60px;
}
.single-img {
    position: relative;
}
.home-project-img {
    width: 100%;
}
.img-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 194, 255, 0.85);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.6s ease;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.single-img:hover .img-overlay {
    bottom: 0;
    height: 100%;
}
.img-overlay h3 {
    color: var(--5, #fff);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 20px;
}
.img-overlay p {
    color: var(--5, #fff);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.view-project-btn {
    background: #ffffff;
    color: #00c2ff;
}
.view-project-btn:hover {
    color: #fff !important;
}
.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(2814%)
        hue-rotate(162deg) brightness(106%) contrast(105%);
}
.view-project-btn:hover.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%)
        hue-rotate(85deg) brightness(112%) contrast(101%) !important;
}
.project-button-next,
.project-button-prev {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(4px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.project-button-next:hover,
.project-button-prev:hover {
    background: #00c2ff;
}
.project-button-next.swiper-button-next,
.project-button-prev.swiper-button-prev {
    color: #ffffff;
}
.project-button-next.swiper-button-next:after,
.project-button-prev.swiper-button-prev:after {
    font-size: 20px;
}
/*-----------------------[ 13.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 70px 0;
}
.team-circle-main {
    border: 2px solid #00c2ff;
    padding: 5px;
    border-radius: 50%;
    position: relative;
    max-width: 127px;
    height: 128px;
    width: 100%;
}
.inner-team-circle {
    width: 100%;
    height: 115px;
    border-radius: 50%;
    background: var(--12, #f5f6f7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.team-circle-link:hover .inner-team-circle {
    background: #000;
}
.share-icon-main {
    width: 100%;
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #00c2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -4px;
    bottom: 23px;
    cursor: pointer;
    z-index: 2;
}
.share-icon-main img {
    max-width: 30px;
}
.team-circle-link h3 {
    color: var(--3, #000);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.team-circle-link:hover h3 {
    color: #00c2ff;
}
.team-circle-link p {
    color: var(--4, #222);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    max-width: 300px;
    line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.team-circle-link:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.social-icons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3px;
}
.social-icons li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00c2ff;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.social-icons li:hover {
    background: #fff;
    border: 2px solid #00c2ff;
}
.social-icons li:hover img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(39%) saturate(7500%)
        hue-rotate(155deg) brightness(99%) contrast(105%);
}
.share-icon-main:hover .social-icons {
    pointer-events: auto;
}
.share-icon-main:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons li img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.social-icons li:nth-child(1) {
    transition-delay: 0s;
}
.social-icons li:nth-child(2) {
    transition-delay: 0.1s;
}
.social-icons li:nth-child(3) {
    transition-delay: 0.2s;
}
.social-icons li:nth-child(4) {
    transition-delay: 0.3s;
}
.exper-team-row-home {
    margin-top: 15px;
    gap: 50px 0;
}
/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.testimonial-section-main {
    display: flex;
    align-items: stretch;
}
.man-cleaning-home {
    max-width: 50%;
    object-fit: cover;
    max-height: 600px;
    flex: 1;
    width: 100%;
}
.testimonials-col-main {
    background: var(--12, #f5f6f7);
    padding: 100px;
    width: 100%;
    overflow: hidden;
}
.tryse {
    max-width: 630px;
}
.testimonialSlider {
    max-width: 640px;
    margin-left: 0;
    margin-top: 60px;
    border-radius: 20px;
}
.testimonialSlider-swiper-slide {
    background: var(--5, #fff);
    padding: 40px;
}
.cellent {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 10px;
    padding-bottom: 40px;
}
.client-details-main {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-details h3 {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 5px;
}
.client-details p {
    color: var(--8, #a8a9ad);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.testimonial-client-img1 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.testimonial-next,
.testimonial-prev {
    width: 48px;
    height: 48px;
    border: 2px solid #f5f6f7;
    border-radius: 50%;
    background: #fff;
}
.testimonial-next.swiper-button-next {
    position: absolute;
    right: 10px;
    top: 85%;
}
.testimonial-prev.swiper-button-prev {
    position: absolute;
    right: 10px;
    left: auto;
    top: 70%;
}
.testimonial-next.swiper-button-next,
.testimonial-prev.swiper-button-prev {
    color: #000000;
}
.testimonial-next.swiper-button-next:after,
.testimonial-prev.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}
/*-----------------------[ 15.Section Blog CSS ]------------------------*/
.blog-section {
    padding: 100px 0;
}
.home-blog-row {
    margin-top: 60px;
}
.blog-img-main {
    position: relative;
    overflow: hidden;
}
.blog-box-main {
    border-radius: 20px;
    border: 2px solid var(--12, #f5f6f7);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-box-main:hover {
    border-color: #00c2ff;
    box-shadow: 0 15px 30px rgba(74, 108, 247, 0.1);
}
.blog-box-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}
.blog-box-main:hover::after {
    left: 100%;
}
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-box-main:hover .blog-img {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}
.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}
.blog-box-main:hover .blog-date {
    color: #00c2ff;
}
.blog-date::before,
.blog-date::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 30px;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}
.blog-date::before {
    bottom: 0px;
    left: -30px;
    height: 60px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.blog-date::after {
    content: "";
    bottom: 0px;
    right: -30px;
    height: 60px;
    width: 30px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s ease;
}
.blog-containe-main {
    padding: 30px;
}
.blog-containe-main h2 {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    transition: color 0.3s ease;
}
.blog-box-main:hover .blog-containe-main h2 {
    color: #00c2ff;
}
.blog-containe-main p {
    overflow: hidden;
    color: var(--4, #222);
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.expand-img-main {
    overflow: hidden;
}
.expand-img {
    width: 100%;
    height: 920px;
}
/*-----------------------[ 16.Section Contact Form CSS ]------------------------*/
.contact-form-section {
    padding: 50px 0 100px;
    background: #f5f6f7;
}
.adres-main-home {
    display: flex;
    align-items: center;
    gap: 60px;
}
.call-support-text {
    color: var(--16, #00c2ff);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 8px;
    margin-top: 30px;
}
.tel-num {
    color: var(--3, #000);
    font-size: 25px;
    font-weight: 400;
    line-height: 48px;
    transition: all 0.3s ease-in-out;
}
.tel-num:hover {
    color: #00c2ff;
}
.contac-form-main {
    border-radius: 20px;
    background: var(--5, #fff);
    padding: 15px;
}
.addees {
    font-size: 17px;
    line-height: 30px;
}
.contac-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.your-message-input {
    margin-top: 30px;
}
.send-main-btn {
    justify-content: left;
    margin-top: 30px;
}
/*-----------------------[ 17.Footer CSS ]------------------------*/
.subscribe-section {
    background: #000;
    border-radius: 20px;
    padding: 60px;
    margin-top: -125px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.updat {
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 0;
    max-width: 570px;
}
.subscribe-input-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 10px 10px 40px;
    width: 100%;
    max-width: 570px;
    border-radius: 42px;
}
.subscribe-input-main input {
    width: 55%;
    outline: none;
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.working-hours {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 20px;
}
.timing-hrw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #f5f6f7;
}
.timing-hrw p {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.footer-row-quick {
    justify-content: space-between;
}
.quicklinks-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 55px;
}
.quicklinks-main ul li a {
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}
.quicklinks-main ul li a:hover {
    color: #00c2ff;
}
.footer-img-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.footer-img-group .footer-imgs {
    width: 100%;
}
.img-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: block;
}
.footer-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-instagram {
    width: 40px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.img-container:hover .footer-img-overlay {
    opacity: 1;
}
.img-container:hover .brand-instagram {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}
.media-logo-call-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    background: var(--3, #000);
    margin-top: 60px;
    margin-bottom: 40px;
}
.media-logo-call-footer .call-detl {
    border-radius: 50px;
    background: var(--14, #00c2ff);
    padding: 10px 50px 10px 10px;
}
.media-logo-call-footer .call-detl .img-main-call {
    background: var(--13, #000);
}
.media-logo-call-footer .call-detl a {
    color: #ffffff;
}
.footer-med-icons-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
/*
.media-logo-call-footer a img{
  max-width: 10rem;
} */
.footer-med-icons {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.footer-med-icons:hover {
    background: #00c2ff;
}
.footer-med-icons img {
    width: 32px;
}
.copyrights-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 40px;
}
.copyrights-main p,
.copyrights-main a {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.copyrights-main a:hover {
    color: #00c2ff;
}
.call-detl {
    display: flex;
    align-items: center;
    gap: 20px;
}
.call-detl .img-main-call {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #00c2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-detl p {
    color: var(--5, #fff);
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 0px;
}
.call-detl a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
}
/*-----------------------[ 18.Bottom To Top Button CSS ]------------------------*/
button.bottom-top-button {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 30px;
    background: #00c2ff;
    border-radius: 50%;
}
/*-----------------------[ 19.About Page CSS ]------------------------*/
.heroSection {
    background-image: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 27.86%,
            rgba(0, 0, 0, 0) 100%
        ),
        url(../images/about/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0 100px;
}
.img-header-text {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 72px;
}
.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}
.breadcrumb-group a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
.about-section-three {
    padding: 100px 0;
}
/*-----------------------[ 20.Team Details Page CSS ]------------------------*/
.team-single-box {
    background: #fff;
    border-radius: 25px;
    border: 2px solid #f5f6f7;
    position: sticky;
    top: 150px;
    margin-bottom: 30px;
}
.rich {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 8px;
}
.clane {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.single-team-main {
    border-radius: 20px;
    background: #f5f6f7;
}
.single-team {
    width: 100%;
}
.team-contact-1 {
    padding: 30px;
}
.team-meta {
    margin-top: 30px;
}
.team-meta li {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-meta li img {
    width: 25px;
}
.team-meta li span {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #00c2ff;
}
.team-meta li a,
.team-meta li p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    transition: all 0.35s ease-in-out;
}
.team-meta li a:hover {
    color: #00c2ff;
}
.single-team-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.single-team-social a {
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    border-radius: 100%;
    width: 100%;
    max-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in-out;
}
.single-team-social a img {
    width: 25px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(94%) saturate(3410%)
        hue-rotate(159deg) brightness(104%) contrast(104%);
}
.single-team-social a:hover {
    background: #00c2ff;
}
.single-team-social a:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(0%)
        hue-rotate(318deg) brightness(100%) contrast(105%);
}
.personal-main h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
    color: #000;
}
.personal-main p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 400;
    text-align: justify;
}
.contact-form-1 {
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
}
/* ------------- Progress Bar ----------- */
#first-sec {
    margin-bottom: 30px;
}
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}
.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}
.progress-title {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.progress-number-wrapper,
.progress-number-mark {
    color: #00c2ff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.progress-content-outter {
    height: 8px;
    border-radius: 10px;
    background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
    height: 8px;
    border-radius: 10px;
    background-color: #00c2ff;
    width: 0%;
}
/*-----------------------[ 21.Pricing Plan Page CSS ]------------------------*/
/* .pricing-row {
  margin-top: 60px;
}
.pricing-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 50px 30px 30px ;
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
  overflow: hidden;
  word-wrap: break-word;
  max-width: 100%;
  display: flex;
  flex-direction: column;

}

.pricing-card p,
.pricing-card li {
  white-space: normal;
  word-wrap: break-word;
}

.pricing-footer .btn-quote {
  width: 100%;
  margin-top: 20px;
}


.pricing-card.enterprise {
  background-color: #00c2ff;
  color: #fff;
}
.pricing-card h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.price-box {
  background: transparent;
  border-radius: 12px;
  padding: 15px;
  display: inline-block;
  margin-bottom: 20px;
}
.price {
  font-size: 40px;
  font-weight: 700;
  color: #00c2ff;
}
.enterprise .price {
  color: #fff;
}
.month {
  font-size: 18px;
  font-weight: 500;
  margin-left: 5px;
  color: #222;
}
.enterprise .month {
  color: #fff;
}
.features {
  list-style: none;
  margin-bottom: 25px;
}
.features li {
  text-align: left;
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #999;
}
.enterprise .features li {
  color: #cce4ff;
}
.features li.active {
  color: #000;
}
.enterprise .features li.active {
  color: #fff;
}
.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00c2ff;
  font-size: 16px;
}
.enterprise .features li::before {
  color: #fff;
}
.features li:not(.active)::before {
  color: #ccc;
}
.getStarted-btn {
  width: 100%;
} */

/* ===== Pricing Cards Layout ===== */
.pricing-row {
    row-gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-top: 2rem;
    height: 100%;
    border: 1px solid #00c2ff;
    max-width: 450px;
}

/* Hover effect */
.pricing-card:hover {
    transform: translateY(-6px);
}

/* ===== Headings ===== */
.pricing-card h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== Price Box ===== */
.price-box {
    text-align: center;
    margin-bottom: 22px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #00c2ff;
}

/* ===== Feature List ===== */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* pushes button down evenly */
}

.features li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    white-space: normal; /* text visible */
    word-wrap: break-word; /* no overflow */
}

/* Tick icon */
.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #00c2ff;
    font-weight: bold;
}

/* ===== Button stays at bottom ===== */
.pricing-footer {
    margin-top: auto;
    text-align: center;
}

/* ===== Featured Middle Card ===== */
.pricing-card.enterprise {
    background: #00c2ff;
    color: #ffffff;
}

.pricing-card.enterprise .price,
.pricing-card.enterprise h2,
.pricing-card.enterprise li {
    color: #ffffff;
}

.pricing-card.enterprise li::before {
    color: #ffffff;
}

/* Button contrast fix */
.pricing-card.enterprise .btn-quote {
    background: #ffffff;
    color: #00c2ff;
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 22px;
    }
}

/*-----------------------[ 22.Our Client Page CSS ]------------------------*/
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}
.clients-main img {
    max-width: 100%;
}
.testimonial-page {
    background: #f5f6f7;
}
.testimonial-page .testimonialSlider-swiper-slide {
    border-radius: 20px;
}
.testimonial-page .testimonialSlider-swiper-slide {
    padding: 30px;
}
.testimonial-page .cellent {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 30px;
}
.testimonial-page-row {
    gap: 30px 0;
}
/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.pulm-multi-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulm-multi {
    max-width: 100%;
}
#accordionExample {
    margin-top: 40px;
}
.accordion-item {
    background: transparent;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-button:focus {
    box-shadow: none;
}
#accordionExample .accordion-button {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: #f5f6f7;
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    color: #00c2ff;
    background-color: rgba(0, 194, 255, 0.1) !important;
}
#accordionExample.accordion {
    --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
    padding: 0 0 20px 0;
    color: var(--4, #000);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.accordion-button::after {
    background-image: url("../images/svg/dropdown-arrow.svg");
    --bs-accordion-btn-icon-width: 2rem;
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(4323%)
        hue-rotate(216deg) brightness(97%) contrast(101%);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../images/svg/dropdown-arrow.svg");
    filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(2460%)
        hue-rotate(157deg) brightness(100%) contrast(107%);
}
/*-----------------------[ 24.404 Error Page CSS ]------------------------*/
.error-img {
    max-width: 100%;
}
.error-img-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
}
/*-----------------------[ 25.Services Page CSS ]------------------------*/
.services-page-row {
    gap: 40px 0;
}
.layers-img1 {
    width: 100%;
    margin: 30px 0;
}
.fusce {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.ourServicesPrcoes {
    color: #00c2ff;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    padding-top: 30px;
    padding-bottom: 15px;
}
.singleServicesSlider {
    margin-top: 30px;
}
.singleServicesSlider img {
    width: 100%;
}
.all-service-text {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    color: #fff;
    text-align: center;
    padding: 30px;
    background: #000000;
}
.roofing-services-list-main {
    padding: 30px;
    background: #f5f6f7;
    border: 2px solid #fff;
}
.service-list-arow-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-list-arow-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}
.service-list-arow-main:hover::after {
    height: 100%;
    top: auto;
    left: 0;
}
.service-list-arow-main p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.service-list-arow-main img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(2406%)
        hue-rotate(189deg) brightness(98%) contrast(101%);
}
.service-list-arow-main:hover,
.service-list-arow-main.active {
    background: #00c2ff;
}
.service-list-arow-main:hover p,
.service-list-arow-main.active p {
    color: #fff;
}
.service-list-arow-main:hover img,
.service-list-arow-main.active img {
    filter: none;
}
.card-adds-main {
    margin: 40px 0;
}
.adds-img-home {
    border-radius: 20px 20px 0 0;
}
.shape-img {
    width: 100%;
    margin-top: -130px;
}
.adds-details-main {
    background: #fff;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
    border-radius: 30px;
}
.adds-details-main h3 {
    font-size: 35px;
    line-height: 45px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}
.documents-box {
    background: #f5f6f7;
    padding: 15px;
    margin-top: 40px;
}
.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    margin-bottom: 20px;
}
.brochure {
    width: 60px;
    height: 60px;
    background: #00c2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-main h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
/*-----------------------[ 26.Project Page CSS ]------------------------*/
.projectSlider2 {
    margin-top: 100px;
}
.project-two-row {
    gap: 40px 0;
}
.project-box-main-img {
    position: relative;
    display: block;
    overflow: hidden;
}
.project-box-main-img img {
    transform: scale(1);
    transition-duration: 0.7s;
}
.project-box-main-img:hover img {
    transform: scale(1.05) rotate(1deg);
}
.project-box-main-img:hover .project-two-img-ovelry {
    opacity: 0.8;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.project-two-img-ovelry {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 194, 255, 0.85);
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}
.project-box-main-img:hover .overlay-title {
    transform: scaleY(1);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.overlay-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 30px 30px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}
.overlay-title h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}
.overlay-title p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 10px;
}
/*-----------------------[ 27.Single Project Page CSS ]------------------------*/
.singleServicesSlider img {
    max-width: 100%;
}
.layers-img {
    max-width: 100%;
    border-radius: 20px;
}
.singleProject2 {
    margin: 20px 0;
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 50px;
}
.diamond-btn {
    background: #00c2ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}
.diamond-next-btn h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.send-inquiry-form {
    padding: 30px;
    background: #fff;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
}
.project-info-text {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
    text-align: center;
}
.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0;
}
.project-info-main p:nth-child(1) {
    color: #222222;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.project-info-main p:nth-child(2) {
    color: #00c2ff;
    font-size: 20px;
}
.project-details-icon .footer-med-icons img {
    width: 30px;
}
.project-details-icon {
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}
.project-details-icon .footer-med-icons {
    background: #00c2ff;
    width: 50px;
    height: 50px;
}
.all-services-row3 {
    justify-content: center;
}
/*-----------------------[ 28.Blog Page CSS ]------------------------*/
.blogPage-row2 {
    gap: 30px 0;
}
.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, 0.1);
}
.search-input {
    position: relative;
}
.search-input input {
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    padding: 18px 15px;
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.search-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.single-services-black-box {
    margin-bottom: 20px;
    /* margin-top: 40px; */
    background: #000000;
    padding: 30px;
}
.single-services-black-box h3 {
    color: var(--5, #fff);
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}
.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.recent-post-main img {
    max-width: 20%;
}

.recent-post-text-main p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    overflow: hidden;
}
.recent-post-text-main h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    transition: all 0.3s ease-in-out;
}
.recent-post-main:hover h2 {
    color: #00c2ff;
}
.adds-details-main {
    margin-top: 40px;
}
/*-----------------------[ 29.Blog Details CSS ]------------------------*/
.single-blog-img1 {
    width: 85%;
    height: auto;
}
.tag-date {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 20px;
}
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-date-sub p {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.psum {
    margin-top: 20px;
}
.qoute-box {
    padding: 40px;
    background: #f5f6f7;
    margin: 35px 0;
    position: relative;
}
.qoute-box h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic;
}
.line_client {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.line {
    border-top: 2px solid #00c2ff;
    width: 60px;
}
.jordon {
    color: #222;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px;
}
.req-form-main {
    margin-top: 30px;
}
.map-iframe {
    width: 100%;
    height: 400px;
    margin-top: 100px;
}
/*-----------------------[ 30.Get Your Quote Page CSS ]------------------------*/
.get-quote-page-section {
    background: #ffffff;
}
.get-quote-page-section .sec-text {
    color: #000000;
}
.get-quote-calculator {
    margin-top: 60px;
    margin-bottom: 0;
    background: #f5f6f7;
}
/*-----------------------[ 31.Setting Panel CSS ]------------------------*/
.setting-main {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
    display: none;
}
.box-fix-setting {
    width: 50px;
    height: 50px;
    background-color: #8ade47;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.setting {
    animation: rotation 3s infinite linear;
    width: 28px;
}
@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.demo-box {
    display: block;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
}
.demo-box img {
    border-radius: 15px;
}
.demo-box p {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
    text-align: center;
}
.offcanvas {
    background: #f5f6f7;
}
.offcanvas-title img {
    max-width: 80%;
}
.btn-close {
    --bs-btn-close-focus-shadow: none;
}

/* New Css  */

.logo img,
.mobile-logo img {
    max-width: 75px;
}

.footer-logo img {
    max-width: 140px;
}

.team-circle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-container {
    max-width: 100px;
    border-radius: 6px;
}

.theme-clr {
    color: var(--16, #00c2ff) !important;
}

.team-circle-main img {
    width: 100%;
    object-fit: inherit;
    height: 100%;
}

.testimonials-col-main {
    flex: 1;
}

.sadas img {
    object-fit: cover;
}

.about_main_img {
    width: 520px;
    height: 540px;
    object-fit: cover;
}

.contact-bottom {
    padding-bottom: 5rem;
}

.footer-section {
    padding-top: 4rem;
    border-top: 1px dashed #80808030;
}
.slide-img-two {
    max-width: 850px !important;
}
/* New Css  */

/* card css commercial */
.hex-card {
    background: #fff;
    padding: 15px;
    height: 100%;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
    position: relative;
    /* clip-path: polygon(50% 0%, 90% 20%, 90% 80%, 50% 100%, 10% 80%, 10% 20%); */
    /* clip-path: polygon(8% 0%,92% 0%,100% 8%,100% 92%,92% 100%,8% 100%,0% 92%,0% 8%); */
    margin-top: 10px;
    border: 1px solid #00c2ff;
}

.hex-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px #00c2ff;
}

.hex-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 15px;
}

.hex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-card h3 {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.hex-card p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 575px) {
    .hex-img {
        height: 110px;
    }
}

/* hex-card overseas */
.hex-card1 {
    background: #fff;
    height: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 15px gray;
    transition: all 0.4s ease-in-out;
    position: relative;
    clip-path: rectangle(50% 0%, 90% 20%, 90% 80%, 50% 100%, 10% 80%, 10% 20%);
    /* clip-path: polygon(8% 0%,92% 0%,100% 8%,100% 92%,92% 100%,8% 100%,0% 92%,0% 8%); */
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid #00c2ff;
}

.hex-card1:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px #00c2ff;
}

.hex-img1 {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 15px;
}

.hex-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-card1 h3 {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.hex-card1 p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .hex-img1 {
        height: 110px;
    }
}

.reveal-card .card-body {
    transform: translateY(60px);
    opacity: 0;
    transition: 0.4s;
}
.reveal-card:hover .card-body {
    transform: translateY(0);
    opacity: 1;
}

/* Additional css   on dropdown*/
.menu,
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li,
.submenu li {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    /* min-width: 215px; */
    z-index: 999;
    margin-top: 5px;
}

/* Open submenu only on hover */
.dropdown:hover > .submenu,
.dropdown-submenu:hover > .submenu-nested {
    display: block;
    transition: 0.1 ease-in;
}

/* Nested submenu opens to the right */
.submenu-nested {
    top: 0;
    left: 100%;
    display: none;
    margin-top: 10px;
    position: absolute;
    background: #fff;
    min-width: 200px;
    white-space: nowrap;
    z-index: 999;
    margin: 2px;
    border-radius: 20px;
    cursor: pointer;
}

.toggle-link {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-link img {
    margin-left: 0.5rem;
}

/* #main-menu{
  display: flex;

} */

/* invisible hover bridge */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px; /* hover buffer */
}

/* Floating Buttons Wrapper */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    margin-bottom: 3rem;
}

/* Buttons */
.float-btn {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    animation: blink 1.4s infinite ease-in-out;
}

.float-btn img {
    width: 32px;
}

/* chatbot and whatsaap message */

/* Blink Animation */
@keyframes blink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #00e676;
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 18px #00e676;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #00e676;
    }
}

/* WhatsApp Green Glow */
.whatsapp-btn {
    animation: blink-whatsapp 1.4s infinite;
}

@keyframes blink-whatsapp {
    0% {
        box-shadow: 0 0 10px #25d366;
    }
    50% {
        box-shadow: 0 0 20px #25d366;
    }
    100% {
        box-shadow: 0 0 10px #25d366;
    }
}

/* Chatbot Blue Glow */
.chat-btn {
    animation: blink-chat 1.4s infinite;
}

@keyframes blink-chat {
    0% {
        box-shadow: 0 0 10px transparent;
    }
    50% {
        box-shadow: 0 0 20px transparent;
    }
    100% {
        box-shadow: 0 0 10px transparent;
    }
}

/* modal css */
/* .modal-content {
    border-radius: 20px;
}

.modal-body .form-select,
.modal-body input {
    height: 50px;
} */

.modal-content {
    border-radius: 16px;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 13px;
}
.form-label {
    font-size: 0.9rem;
}

.btn-primary {
    border-radius: 12px;
    font-weight: 600;
}

/* new css for dropdown  */
/* Desktop hover dropdown */
body.is-desktop .dropdown:hover > .submenu {
    display: block;
}

/* Desktop nested hover */
body.is-desktop .dropdown-submenu:hover > .submenu-nested {
    display: block;
}

.dropdown-submenu a img {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

/* default hidden */
.submenu,
.submenu-nested {
    display: none;
}

/* mobile open */
body.is-mobile .submenu.active {
    display: block;
}

body.is-mobile .submenu-nested.open {
    display: block;
}

.team img {
    border-radius: 10px;
    height: 100%;
}

/* ================= Team Gallery ================= */
.team-gallery-section {
    padding: 70px 0px 0px 0px;
    background: #f9fbfd;
}

.team-photo {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.team-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-photo:hover img {
    transform: scale(1.07);
}

.team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    opacity: 0;
    transition: 0.4s;
}

.team-photo:hover::after {
    opacity: 1;
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .team-photo img {
        height: 240px;
    }
}

/* dropdown image css */
body.is-mobile .submenu.active + img {
    transform: rotate(180deg);
}

/* dropdown css  */

.dropdown-menu .dropdown-submenu::after > .dropdown-menu {
    display: flex;
    right: 100%;
    left: auto;
    top: 0;
    margin-top: 0;
}

.submenu.active {
    max-height: unset !important;
}

.submenu-nested.open {
    display: block !important;
    position: unset !important;
}

/* DETAILS */
/* .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.details-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.details-card input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
} */

/* PRICING */
/* .pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #004cff;
}

.price {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}  */

/* BUTTON */
/* .btn-primary {
    background: #004cff;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
} */

/* pricing plan  css  */
/* WRAPPER */

/* ===== WRAPPER ===== */
.pf2-wrapper {
    padding: 70px 0;
    background: #f4f7fb;
    font-family: "Inter", sans-serif;
}

.pf2-container {
    max-width: 1150px;
    margin: auto;
}

.pf2-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    margin: auto;

    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.pf2-step {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.pf2-step span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e3e8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #555;
}

.pf2-step p {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.pf2-active span {
    background: #00c2ff;
    color: #fff;
}

.pf2-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #00c2ff, #009fd1);
    border-radius: 10px;
    margin: 0 10px; /* spacing instead of gap */
}

.pf2-service-box {
    width: 100%;
    margin: 30px auto;
    position: relative;
}

.pf2-service-title {
    background: #fff;
    border: 1px solid #dbe3ec;
    padding: 16px 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pf2-service-title::after {
    content: "▾";
    font-size: 18px;
    color: #00c2ff;
    transition: 0.5s;
}

.pf2-service-box:hover .pf2-service-title::after {
    transform: rotate(180deg);
}

/* MAIN DROPDOWN */
.pf2-dropdown {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    top: 85%;
    left: 0;
    display: none;
    z-index: 99;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pf2-dropdown > li {
    padding: 14px 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

/* .pf2-dropdown > li:hover {
  background: #f0faff;
  color: #00c2ff;
} */

.pf2-nested {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pf2-nested li {
    padding: 12px 16px;
    font-size: 14px;
}

.pf2-nested li:hover {
    background: #00c2ff;
    color: #fff;
}

.pf2-grid {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    gap: 28px;
    margin-top: 60px;
}

/* .pf2-card {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    width: 100%;
} */

/* .pf2-card {
  background:#ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  width: 100%;
  border: 2px solid rgb(111, 127, 229);
  max-width: 450px;
  transition: all 0.4s ease-in-out;
} */

/* .pf2-card {
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgb(111, 127, 229);
    max-width: 450px;
    height: 200px;
    max-height: 400px;
    height: auto !important;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease-in-out;
} */

/* ===============================
   BEAUTIFUL PF2 CARD (NO LOGIC CHANGE)
================================ */

.pf2-card {
    background: linear-gradient(180deg, #ffffff, #f9fcff);
    padding: 20px;
    border-radius: 18px;
    border: 1.5px solid rgba(0, 194, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    max-width: 450px;
    width: 100%;
    margin: 15px;
    display: flex;
    align-items: stretch;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow strip */
.pf2-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c2ff, #7fe6ff);
}

/* hover effect */
.pf2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 194, 255, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* headings inside card */
.pf2-card strong,
.pf2-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b3b4a;
}

/* ===============================
   INPUTS
================================ */

.pf2-card input[type="text"],
.pf2-card input[type="range"] {
    width: 100%;
    margin-top: 10px;
}

.pf2-card input[type="text"] {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #d6e4ef;
    font-size: 14px;
    transition: 0.25s;
}

.pf2-card input[type="text"]:focus {
    border-color: #00c2ff;
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.15);
    outline: none;
}

/* ===============================
   RADIO / TYPE LABELS
================================ */

.pf2-card label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #dbe3ec;
    cursor: pointer;
    transition: 0.25s;
    font-size: 14px;
    background: #fff;
}

.pf2-card label:hover {
    background: #f0faff;
    border-color: #00c2ff;
}

.pf2-card input[type="radio"] {
    /* accent-color: #00c2ff; */
}

/* ===============================
   SUMMARY CARD (RIGHT SIDE)
================================ */

.price-card {
    width: 100%;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e6f4fa;
    font-size: 14px;
}

.plan-row:last-child {
    border-bottom: none;
}

.plan-row .label {
    color: #5c6f7a;
}

.plan-row .value strong {
    color: #0b3b4a;
}

/* ===============================
   MOBILE SAFE
================================ */

@media (max-width: 576px) {
    .pf2-card {
        margin: 10px 0;
        padding: 18px;
    }
}

/* .pf2-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(5, 1, 24, 0.18);
} */

/* .pf2-card strong {
    font-size: 16px;
    display: block;
} */

/* .pf2-card input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ccd6e0;
    margin-bottom: 14px;
    font-size: 14px;
} */

/* .pf2-card input:focus {
    outline: none;
    border-color: #00c2ff;
} */

/* .pf2-card label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #dbe3ec;
    cursor: pointer;
    transition: 0.25s;
} */

/* .pf2-card input[type="radio"] {
    accent-color: #00c2ff;
}

.pf2-card label:hover {
    background: #f0faff;
    border-color: #00c2ff;
} */

.pf2-btn {
    margin: 55px auto 0;
    display: block;
    padding: 14px 44px;
    background: linear-gradient(135deg, #00c2ff, #009fd1);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.pf2-btn:hover {
    opacity: 0.9;
}

.pf2-step-panel {
    display: none;
}

.pf2-step-panel.active {
    display: block;
}

/* responsive on mobile */
/* ===============================
   BASE FIXES (ALL DEVICES)
================================ */
.pf2-wrapper {
    padding: 40px 15px;
}

/* .pf2-container {
  max-width: 1200px;
  margin: auto;
} */

.pf2-btn {
    width: auto;
    padding: 12px 30px;
}

/* ===============================
   PROGRESS BAR RESPONSIVE
================================ */

.pf2-step {
    text-align: center;
    font-size: 14px;
}

/* .pf2-line {
  flex: 1;
  height: 2px;
  background: #ddd;
  max-width: 120px;
} */

/* ===============================
   SERVICE DROPDOWN
================================ */

.pf2-dropdown {
    width: 100%;
}

.pf2-sub {
    position: relative;
}

.pf2-sub:hover {
    background-color: #00c2ff;
}

.pf2-sub a img {
    transform: rotate(270deg);
}

/* ===============================
   CARDS GRID
================================ */
/* .pf2-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
} */

/* ===============================
   MOBILE (≤ 576px)
================================ */

@media (max-width: 576px) {
    .pf2-line {
        height: 14px;
    }

    /* Headings */
    .ourServicesPrcoes {
        font-size: 20px;
    }

    /* Progress step text smaller */
    .pf2-step p {
        font-size: 12px;
    }

    /* Dropdown full width */

    /* Nested dropdown opens BELOW (not side) */
    .pf2-nested {
        position: static;
        margin-top: 8px;
        box-shadow: none;
    }

    /* Inputs */
    .pf2-card input {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Buttons */
    .pf2-btn {
        width: 100%;
        font-size: 16px;
    }

    /* Pricing cards spacing */
    .pricing-card {
        margin-bottom: 20px;
    }
}

/* about section  */
.about-labourwala-section {
    background-color: #f9fbfd;
}

.about-labourwala-section .sec-sub-text {
    max-width: 520px;
}

.about-image-wrapper img {
    transition: transform 0.4s ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.03);
}

/* ===== DEFAULT: HIDDEN ===== */
.pf2-dropdown,
.pf2-nested {
    display: none;
}

/* ===== DESKTOP ONLY (REAL HOVER DEVICES) ===== */

/* ===== MOBILE (CLICK BASED) ===== */
.pf2-dropdown.open {
    display: block;
}

.pf2-nested.open {
    display: block;
}

/* ===== DEFAULT (ALL DEVICES) ===== */
.pf2-dropdown,
.pf2-nested {
    display: none;
}

/* ===== MOBILE (CLICK ONLY) ===== */
.pf2-dropdown.open {
    display: block;
}

.pf2-nested.open {
    display: block;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

/* Wrapper */
.pf2-wrapper {
    padding: 40px 15px;
}

/* Container */
.pf2-container {
    width: 100%;
    padding: 0;
}

/* ===============================
   TABLET (≤ 992px)
================================ */
@media (max-width: 992px) {
    /* .pf2-progress {
    flex-direction: column;
  } */
    .pf2-line {
        margin: 8px 0;
        background: linear-gradient(180deg, #00c2ff, #009fd1);
    }

    .pf2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===============================
   MOBILE (≤ 576px)
================================ */
@media (max-width: 576px) {
    /* Progress */
    .pf2-progress {
        gap: 12px;
        margin-bottom: 25px;
    }

    .pf2-step span {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .pf2-step p {
        font-size: 12px;
    }

    .pf2-line {
        height: 26px;
    }

    /* pf2-service */

    .pf2-nested {
        position: static;
        margin-top: 8px;
        box-shadow: none;
    }

    /* Grid → SINGLE COLUMN */
    .pf2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    /* Cards */
    /* .pf2-card {
        padding: 18px;
    } */

    /* Button */
    .pf2-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }
}

/*  about gallery section*/

.about-items-section {
    padding: 70px 20px;
    background: #f9fbfd;
}

.about-items-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.about-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.about-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.about-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .about-items-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-items-container {
        grid-template-columns: 1fr;
    }

    .about-item img {
        height: 160px;
    }
}

/* ===============================
   CLICK BASED DROPDOWN (SAFE)
================================ */

.js-service-dropdown,
.js-child {
    display: none;
}

/* Open states */
.js-service-dropdown.is-open {
    display: block;
}

.js-child.is-open {
    display: block;
}

/* Cursor hint */
.js-service-trigger,
.js-parent-trigger {
    cursor: pointer;
}

/* Parent layout */
.js-parent-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Arrow rotation */
.js-parent.is-active > .js-parent-trigger img {
    transform: rotate(180deg);
    transition: 0.3s;
}

.js-parent-trigger:hover {
    color: white !important;
}

/* Mobile fix */
@media (max-width: 576px) {
    .js-child {
        position: static;
        margin-top: 8px;
    }
}

/* log in and sign up page  */
/* ================= LOGIN PAGE ================= */

.login-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.login-extra label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    text-wrap: nowrap;
}

.login-extra a {
    font-size: 14px;
    text-decoration: none;
}

/* Inputs already styled by theme – just safety */
.contac-form-main input {
    width: 100%;
}

/* Responsive */
@media (max-width: 767px) {
    .login-extra {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.pf2-selected-service {
    margin-top: 23px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f5f7fa;
    border-left: 4px solid #2f80ed;
    margin-left: 10px;
}

.pf2-selected-service h4 {
    margin: 0;
    font-weight: 600;
}

.service-cat {
    margin: auto;
    max-width: 50%;
}

/* new dropdown */

.svc-dropdown-wrapper {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.svc-dropdown {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.svc-dropdown-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
}

.svc-dropdown-btn:disabled {
    background: #f3f3f3;
    cursor: not-allowed;
}

.svc-dropdown-menu {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
    border-radius: 7px;
}

.svc-dropdown-menu li {
    padding: 10px;
    cursor: pointer;
}

.svc-dropdown-menu li:hover {
    background: #f0f0f0;
}

.svc-dropdown.svc-open .svc-dropdown-menu {
    display: block;
}

.service-detail {
    width: 50%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

/* youtube video css on home  */
/* Labourwala Video Popup */
.lw-video-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
}

.lw-video-box {
    max-width: 380px;
    width: 100%;
    height: 230px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid #00c2ff;
    position: relative;
}

.lw-video-box iframe {
    width: 100%;
    height: 100%;
}

/* Close Button */
.lw-close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    background: #00c2ff;
    color: #fff;
    border: none;
    font-size: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.lw-close-btn:hover {
    background: #009dcf;
}
.close-icon {
    max-width: 17px;
    position: relative;
    top: -3px;
}

.labourwala-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0, 194, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.labourwala-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 194, 255, 0.25);
}
.card-title {
    color: #00c2ff;
    font-weight: 700;
}

.option-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    gap: 12px;
}
.option-row.wrap {
    flex-wrap: wrap;
}

.radio-box input {
    display: none;
}
.radio-ui {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    border: 2px solid #4dd1ff;
    color: #00c2ff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}
.radio-ui .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #00c2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radio-ui .dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00c2ff;
    transform: scale(0);
    transition: transform 0.25s ease;
}
.radio-box input:checked + .radio-ui {
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.35);
}
.radio-box input:checked + .radio-ui .dot {
    border-color: #00c2ff;
}
.radio-box input:checked + .radio-ui .dot::after {
    background: #00c2ff;
    transform: scale(1);
}

.price-section {
    border-top: 1px dashed #dff6ff;
    padding-top: 16px;
}
.price {
    color: #00c2ff;
    font-weight: 800;
}

.add-cart-btn {
    background: linear-gradient(135deg, #00c2ff, #009fd6);
    color: #ffffff;
    font-weight: 700;
    border-radius: 14px;
    padding: 12px;
    border: none;
    transition: all 0.3s ease;
}
.add-cart-btn:hover {
    background: linear-gradient(135deg, #009fd6, #00c2ff);
    transform: scale(1.02);
}
/* PREMIUM CARD */
.premium-card {
    background: linear-gradient(180deg, #ffffff, #f9fdff) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

/* SERVICE IMAGE */
.cart-img-lg {
    width: 120px !important;
    height: 120px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
}

/* SERVICE BADGE */
.service-badge {
    background: rgba(0, 194, 255, 0.15) !important;
    color: #00c2ff !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
}

/* SERVICE META */
.service-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    gap: 12px !important;
    gap: 12px !important;
    font-size: 14px !important;
    color: #555 !important;
}

.service-meta span {
    background: #f1f9fd !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
}

/* PRICE */
.price-box {
    min-width: 120px !important;
}

/* REMOVE */
.remove-btn {
    background: none !important;
    border: none !important;
    color: #ff4d4d !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

/* DIVIDER */
.divider {
    border-top: 1px dashed #ddd !important;
}

/* SUMMARY */
.summary-row {
    display: flex !important;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 16px;
    border-top: 1px dashed #ccc;
    padding-top: 14px;
}

.summary-row.discount {
    color: #28a745;
}

/* TRUST */
.trust-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* ADD MORE */
.add-more {
    font-weight: 600;
    color: #00c2ff;
    text-decoration: none;
}

/* ===== PREMIUM DEPTH ===== */
.cart-section {
    background: linear-gradient(180deg, #f6fbff, #ffffff);
}

.premium-card {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 194, 255, 0.05);
}

/* ===== IMAGE FOCUS ===== */
.cart-img-lg {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

/* ===== SERVICE TITLE ===== */
.service-item h5 {
    font-size: 20px;
    line-height: 1.3;
}

/* ===== PRICE DOMINANCE ===== */
.price-box h5 {
    font-size: 24px;
}

.price-box p {
    font-size: 13px;
    margin-top: -4px;
}

/* ===== SERVICE META PILLS ===== */
.service-meta span {
    font-weight: 500;
    background: #eef8ff;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

/* ===== BILLING SIDE ===== */
.summary-card {
    position: sticky;
    top: 110px;
}

/* ===== CTA POWER ===== */
.get-quote-btn {
    height: 54px;
    font-size: 14px;
    letter-spacing: 0.4px;
    box-shadow: 0 15px 30px rgba(0, 194, 255, 0.35);
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    justify-content: center;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
}

/* ===== TRUST SECTION ===== */
.trust-box p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.lw-payment-checkout {
    background: #f4faff;
    padding: 70px 0;
}

.lw-payment-grid {
    display: flex;
    align-items: stretch;
}

/* CARD */
.lw-pay-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.1);
    border: 1px solid rgba(0, 194, 255, 0.15);
}

/* TITLES */
.lw-pay-title {
    color: #00c2ff;
    font-weight: 700;
    margin-bottom: 25px;
}

.lw-pay-subtitle {
    margin: 30px 0 15px;
    font-weight: 600;
}

/* INPUTS */
.lw-input-row {
    display: flex;
    gap: 20px;
}

.lw-input {
    flex: 1;
    margin-bottom: 18px;
}

.lw-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.lw-input input,
.lw-input textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d4edff;
    font-size: 14px;
    outline: none;
}

.lw-input input:focus,
.lw-input textarea:focus {
    border-color: #00c2ff;
}

/* PAYMENT METHODS */
.lw-payment-methods {
    display: flex;
    gap: 20px;
}

.lw-method {
    flex: 1;
    border: 1px solid #d4edff;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.lw-method input {
    accent-color: #00c2ff;
}

/* PAY BUTTON */
.lw-pay-now-btn {
    width: 100%;
    margin-top: 25px;
    background: #00c2ff;
    color: #fff;
    padding: 16px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* SUMMARY */
.lw-summary-card {
    background: #f9fdff;
}

.lw-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.lw-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    border-top: 1px dashed #ccc;
    padding-top: 18px;
    margin-top: 10px;
}

.lw-secure-note {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .lw-payment-grid {
        display: block;
    }

    .lw-input-row {
        flex-direction: column;
    }
}

.lw-billing-upgrade {
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.18);
    background: linear-gradient(180deg, #ffffff, #f9fdff);
}

.lw-billing-title {
    color: #00c2ff;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Rows */
.lw-billing-body .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 15px;
    color: #444;
}

/* Discount */
.lw-billing-body .discount {
    color: #28a745;
    font-weight: 600;
}

/* Total */
.lw-billing-body .total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px dashed #ccefff;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Button */
.lw-checkout-btn {
    padding: 14px;
    font-size: 16px;
    border-radius: 30px;
}

/* Secure text */
.lw-secure-text {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 12px;
}

/* Hover effect */
.lw-billing-upgrade:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.domestic-services.active {
    display: block !important;
}

.commercial-services.active {
    display: block !important;
}

.overseas-services.active {
    display: block !important;
}

/* step bar css like hdfc */
.duration-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.duration-box {
    margin-bottom: 35px;
}

.duration-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: linear-gradient(90deg, #00c2ff, #009adf);
}

.duration-header strong {
    color: linear-gradient(90deg, #00c2ff, #009adf);
    font-size: 18px;
}

input[type="range"] {
    --fill-percent: 0%;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: transparent;
    outline: none;
}


/* TRACK */
input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(
        to right,
        #00c2ff 0%,
        #009adf var(--fill-percent),
        #eaf6fb var(--fill-percent),
        #eaf6fb 100%
    );
}

/* THUMB */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #00c2ff;
    border: 4px solid #ffffff;
    margin-top: -7px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 194, 255, 0.4);
    position: relative;
    z-index: 2;
}


input[type="range"]::-moz-range-track {
    height: 8px;
    border-radius: 20px;
    background: #eaf6fb;
}

/* 🔴 Disable Firefox fill */
input[type="range"]::-moz-range-progress {
    background: transparent;
}

/* Firefox thumb */
input[type="range"]::-moz-range-thumb {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #00c2ff;
    border: 4px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 194, 255, 0.4);
}



.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: linear-gradient(90deg, #00c2ff, #009adf);
    margin-top: 6px;
}

/* price card css */
.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaf6fb;
    height: 100%;
    /* display:flex;
                    justify-content: space-around;
                    align-items: center; */
}

.card-title {
    /* font-size: 22px; */
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 24px;
    text-align: center;
}

/* Rows */
.plan-row,
.plan-category {
    /* display: flex; */
    /* justify-content: space-evenly; */
    align-items: center;
    border-bottom: 1px dashed #eaf6fb;
}

.plan-row:last-child {
    border-bottom: none;
}

/* Labels */
.label {
    font-size: 16px;
    /* color: #6b7c93; */
}

/* Values */
.value {
    font-size: 18px;
    font-weight: 600;
    color: #00c2ff;
}

.value strong {
    font-size: 18px;
    color: #009adf;
}

/* new func css in js for dropdown */
.svc-dropdown-menu {
    display: none;
}

.svc-dropdown-menu.show {
    display: block;
}

.svc-dropdown-menu li {
    cursor: pointer;
    padding: 10px;
}

.svc-dropdown-menu li:hover {
    background: #f1f1f1;
}

.svc-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* age group css  */
.lw-age-wrapper {
    margin-top: 20px;
}

.lw-age-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
}

.lw-age-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.lw-age-option input {
    display: block;
}

.lw-age-option span {
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid #dcdcdc;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Selected */
.lw-age-option input:checked + span {
    background: #00c2ff;
    border-color: #00c2ff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 194, 255, 0.35);
}

/* Hover */
.lw-age-option span:hover {
    border-color: #00c2ff;
}

/* pricing card1  3 type serice  */
.lw-care-wrapper {
    margin-top: 25px;
}

.lw-care-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 500;
}

/* Layout */
/* .lw-care-group {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
          gap: 12px;
        } */

/* Hide radio */
.lw-care-option input {
    display: none;
}

/* Card */
.lw-care-card {
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: 14px;
    height: 90px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lw-care-card h6 {
    margin-bottom: 6px;
    font-weight: 600;
}

.lw-care-card p {
    /* font-size: 13px; */
    color: #666;
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
}

/* Selected state */
.lw-care-option input:checked + .lw-care-card {
    border-color: #00c2ff;
    background: #f2fbff;
    box-shadow: 0 6px 16px rgba(0, 194, 255, 0.3);
}

/* Hover */
.lw-care-card:hover {
    border-color: #00c2ff;
}

/* whatsaap btn  */
.quick_contact {
    position: fixed;
    bottom: 55px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.quick_contact a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
}

/* animation */
.quick_contact a:first-child {
    animation: whatapp 2s infinite;
}

@-webkit-keyframes whatapp {
    from {
        box-shadow: 0 0 0 0 rgba(61, 255, 110, 0.37);
    }

    to {
        box-shadow: 0 0 0 35px rgba(70, 255, 132, 0.1);
    }
}
input[type="radio"] {
    accent-color: #2c9abd;
}

.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #f5f5f5;
    color: #333;
    height: 40px;
    width: 40px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cart:hover {
    background-color: #00c2ff;

    box-shadow: 0 15px 30px rgba(0, 194, 255, 0.35);
}

.btn-cart:hover svg {
    color: white;
    fill: white;
}

.cart-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .svc-dropdown-wrapper {
        display: flex;
        flex-direction: column;
        max-width: 500px;
        /* padding: 10px; */
    }

    .pf2-wrapper {
        padding: 30px;
        background: #f4f7fb;
        font-family: "Poppins", sans-serif;
    }
}

.osm-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 30px;
}

.good-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    right: 30px;
    top: 40px;
}

.best-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    left: 80px;
    bottom: 20px;
}

/* Common animation for all images */
.osm-img,
.good-img,
.best-img {
    animation: floatY 3s ease-in-out infinite;
}

/* Small delay so they don’t move together */
.good-img {
    animation-delay: 0.6s;
}

.best-img {
    animation-delay: 1.2s;
}

/* Keyframes */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

.service-detail-box {
    width: 100%;
    overflow: hidden;
    /* ✅ clears float issue */
}

.service-detail-img {
    float: left;
    margin: 0 18px 10px 0;
    width: 46%;
    border-radius: 12px;
    height: 300px;
}

.service-detail-text {
    font-size: 15px;
    line-height: 1.7;
}

.service-details-card {
    position: sticky;
    top: 100px;
}

footer li {
    line-height: 3px !important;
}

.contact-text {
    font-size: 18px;
    color: var(--4, #222);
}

.quicklinks-main {
    align-items: unset !important;
}

.contact-number {
    font-size: 16px;
}

.contact-heading {
    color: #000000cc;
    font-weight: 600;
}

.footer-abt-text {
    font-weight: 500;
    font-size: 17px;
}
.service-section p {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.max-content{
    width: max-content;
}

 /* New Css  */
        .addon-cart-box {
            border: 1px solid rgba(0, 194, 255, .25);
            background: rgba(0, 194, 255, .06);
            padding: 12px 14px;
            border-radius: 14px;
        }

        .addon-cart-title {
            font-weight: 700;
            color: #0b2540;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .addon-cart-item {
            background: #fff;
            border-radius: 12px;
            padding: 10px 12px;
            border: 1px solid rgba(0, 0, 0, .06);
        }

        .addon-cart-subtitle {
            font-weight: 700;
            font-size: 13px;
            color: #00c2ff;
            margin-bottom: 6px;
        }

        .addon-cart-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .addon-cart-list li {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 6px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, .08);
        }

        .addon-cart-list li:last-child {
            border-bottom: 0;
        }

        .addon-cart-label {
            font-size: 12px;
            color: #6b7280;
            max-width: 65%;
        }

        .addon-cart-value {
            font-size: 12px;
            font-weight: 700;
            color: #111827;
            text-align: right;
        }

        .addon-cart-price {
            color: #0a84ff;
            font-weight: 700;
            margin-left: 6px;
        }

        .price-box .small {
            line-height: 1.2;
        }
