:root {
  --heading-font-size: 2rem;
  /* Fallback */
  --heading-font-size: clamp(2rem, 2.5vw, 3rem);
  /* 32px - 43px approx */

  --paragraph-font-size: 1rem;
  /* Fallback */
  --paragraph-font-size: clamp(1rem, 1.2vw, 1.25rem);
  /* 16px - 20px */

  --margin-section: 1.5rem;
  /* Fallback */
  --margin-section: clamp(1.5rem, 5vw, 2.5rem);

  --padding-section: 1rem;
  /* Fallback */
  --padding-section: clamp(1rem, 4vw, 2rem);

  --button-font-size: 1rem;
  /* Fallback */
  --button-font-size: clamp(1rem, 1.2vw, 1.25rem);

  --twenty-years-font-size: 3rem;
  /* Fallback */
  --twenty-years-font-size: clamp(3rem, 5vw, 6rem);

  --site-main-color: #5EB1BF;

  --position-135: clamp(-12.8125rem, -14.24vw, -12.8125rem);
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-size: var(--paragraph-font-size);
}

body * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
}

body i {
  font-family: "Font Awesome 6 Free" !important;
}


body h2 {
  font-size: 1.75rem;
  /* Fallback */
  font-size: clamp(1.5rem, 1.94vw, 1.75rem);
  line-height: 2rem;
  /* Fallback */
  line-height: clamp(1.75rem, 2.22vw, 2rem);
}


/* call icon css */


.call-button-container {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-ring {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #5EB1BF;
  opacity: 0.6;
  animation: pulse 1.5s infinite ease-out;
  z-index: 1;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: #5EB1BF4D;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  animation: pulse 1.5s infinite ease-out;
}

.pulse-ring::before {
  animation-delay: 0.3s;
}

.pulse-ring::after {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.call-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #5EB1BF4D;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.call-button i {
  color: white;
  font-size: 20px;
}

/* call icon css end */


.contact-info button {
  margin-top: 0px;
}


/* video section start   */
.hero-video-section {
  width: 100%;
  background-color: #f8f8f8;
  position: relative;
}

.hero-text {
  flex: 1;
  padding-right: 30px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 6.25rem;
  top: clamp(4.5rem, 6.94vw, 8rem);
}

.hero-text h1 {
  /* font-size: 35px; */
  font-size: 2.1875rem;
  /* Fallback */
  font-size: clamp(1.2rem, 2.43vw, 2.1875rem);

  /* line-height: 44px; */
  line-height: 2.75rem;
  /* Fallback */
  line-height: clamp(2rem, 3.06vw, 2.75rem);

  color: #333;
  margin-bottom: 10px;
}

.cta-button {
  background-color: #3eb5b0;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;

  font-size: 16px;
}

.cta-button i {
  margin-left: 10px;
}

.image-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container>img {
  width: 100%;
  height: 100vh;
}

.home .image-container>img {
  height: 100vh;
}

.bg-image {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  cursor: pointer;
}

.play-button img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.play-button:hover img {
  transform: scale(1.1);
}

/* Modal Styling */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-wrapper video {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* video section end  */


/* celebrating-section :start */

.celebrating-section {
  text-align: center;
  position: relative;
  margin-top: -160px;
  width: 100%;
}

/* .celebrating-section .top-bg-style {
  width: calc(100% + 2rem);
  aspect-ratio: 1440/200;
 top: -70px;
} */

.celebrating-section-sec {
  background: var(--site-main-color);
}

/* .top-bg-style.top-bg-style-b {
   margin-top: -100px;
}  */

/* .celebrating-section .top-bg-style img {
  width: 100%;
   top: 0px;
   left: -1rem;
}
.celebrating-section-sec .top-bg-style img  {
  width: 100%;
}
.celebrating-section .top-bg-style img.bubble4 {
  z-index: 2;
}
.celebrating-section .top-bg-style img.bubble3 {
  z-index: 3;
  top: unset;
  bottom: 0px;
}
.celebrating-section .top-bg-style img.bubble2  {
  z-index: 4;
}
.celebrating-section-sec .top-bg-style img.bubble3 {
  z-index: 3;
}
.celebrating-section-sec .top-bg-style img.bubble4 {
  z-index: 2;
} */
.celebrating-section-sec .celebrating-wrapper-first {
  z-index: 1;
}

.celebrating-section-sec {
  padding: clamp(12rem, 13.5vw, 13.25rem) 0 clamp(1.5rem, 2.08vw, 1.875rem) 0;
  margin-top: clamp(3.75rem, 6.94vw, 6.25rem);
  background: url(../img/png/bubble-bg.png) no-repeat;
  background-size: cover;
}

.celebrating-wrapper-first {
  /* max-width: 900px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); */
  max-width: 800px;
  margin: auto;
}

.celebrating-top h2 {
  font-size: 2.5rem;
  /* Fallback */
  font-size: clamp(2rem, 2.78vw, 2.5rem);
  color: #2a2a2a;
  font-weight: 600;
}

.celebrating-top img {
  max-width: 35.625rem;
  /* Fallback */
  max-width: clamp(12.25rem, 39.58vw, 35.625rem);
}

.celebrating-top {
  padding-top: 10.4375rem;
  /* Fallback */
  margin-left: -30px;
  padding-top: clamp(10.4375rem, 9.38vw, 8.4375rem);
  z-index: 1000;
  position: relative;
}

.celebrating-top p,
.celebrating-bottom p {
  font-size: 1.25rem;
  /* Fallback */
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  line-height: 2rem;
  /* Fallback */
  line-height: clamp(1.75rem, 2.22vw, 2rem);
  color: #042A2B;
  margin-bottom: 40px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 450px;
}

.celebrating-bottom p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  max-width: 850px;
  margin-bottom: 0;
  margin-top: 45px;
}

.read-more {
  color: #3eb5b0;
  text-decoration: underline;
  font-weight: bold;
}



/* celebrating-section :end */



/* features-section start*/

.features-section {
  padding: 3.75rem 1.25rem;
  /* Fallback */
  padding: clamp(3.125rem, 4.17vw, 3.75rem) clamp(1rem, 1.39vw, 1.25rem);
  text-align: center;
  background: #fff;
}

.features-heading {
  text-align: center;
  color: #042A2B;
  max-width: 900px;
  margin: auto;

}

.features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 70px 0px 40px 0px;
}

.feature-box {
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  width: calc(25% - 15px);
}

/* .feature-box:first-child {
  padding-left: 0px;
}

.feature-box:last-child {
  padding-right: 0px;
} */


.feature-box h3 {
  font-weight: 600;
  font-size: 1.25rem;
  /* Fallback */
  font-size: clamp(1rem, 1.39vw, 1.25rem);
  /* 16px – 20px */

  line-height: 1.5rem;
  /* Fallback */
  line-height: clamp(1.25rem, 1.67vw, 1.5rem);
  /* 20px – 24px */
  text-align: center;

}

.feature-box p,
.feature-box a {
  font-size: 1.0625rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.18vw, 1.0625rem);
  /* 15px – 17px */

  line-height: 1.25rem;
  /* Fallback */
  line-height: clamp(1rem, 1.39vw, 1.25rem);
  /* 16px – 20px */
  text-align: center;
  text-decoration: none;
  color: #042A2B;

}


.feature-box a:hover {
  color: var(--site-main-color);
  text-decoration: underline;
}



/* features-section end*/

/* .testimonial-section start*/

.testimonial-section {
  background: url(../img/png/bubble-bg-2.png) no-repeat;
  background-size: cover;
  padding: 168px 20px 70px;
  text-align: center;
}




.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 0 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: bold;
}

.testimonial-card .location {
  font-size: 14px;
  color: #888;
}

.testimonial-card .stars {
  color: var(--site-main-color);
  font-size: 18px;
  margin: 8px 0;
}

.testimonial-card .text {
  font-size: 17px;
  line-height: 20px;
  color: #555;
}

/* Optional: slick arrow style */
body .slick-prev,
body .slick-next {
  width: 41px;
  height: 41px;
}

.slick-prev:before,
.slick-next:before {
  color: var(--site-main-color) !important;
  font-size: 25px !important;
}

.bottom-border {
  position: relative;
}


.bottom-border:after {
  content: "";
  width: 82px;
  height: 3px;
  background: var(--site-main-color);
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}



/* .testimonial-section end*/



/* Booking Card Style */
.booking-section {
  margin: 4rem auto;
}

.booking-card {
  background-color: #003236;
  max-width: 410px;
  height: 490px;
  padding: 28px 34px;
  border-radius: 50px 0px;
}

.booking-card form input {
  background: transparent;
  outline: none;
  border: 1px solid var(--site-main-color);
  color: #CDEDF680;
  padding: 14px 11px;
  font-size: 1.0625rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.18vw, 1.0625rem);
}

.booking-card form input::placeholder {
  color: #CDEDF680;
}

.booking-card p {
  font-size: 1.0625rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.18vw, 1.0625rem);
  color: #CDEDF6;

}

.booking-card-container {
  position: relative;
}

.booking-question-img {
  position: absolute;
  height: 149px;
  top: -40px;
  left: -55px;
}

.booking-card-container:has(.boy-img) {
  right: 190px;
}

.booking-card-container:has(.boy-img) .booking-card {
  padding: 28px 110px 50px 34px;
}

.booking-img {
  position: absolute;
  bottom: 0px;
}

.booking-card-container .girl-img {
  right: -129px;

}

.booking-card-container .boy-img {
  right: -175px;
}

/* Booking Card Style end*/

/* Join Section Background (optional) */
/* Join Family Section */
.join-family-section {
  font-family: 'Poppins', sans-serif;
}

.image-wrapper {
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  display: inline-block;
}


.join-title.bottom-border:after {
  left: 0%;
  transform: translateX(0%);
}

.join-family-section p {
  color: #042A2B;
}






/* Join Section Background  end*/


/* Consistently Delightful Cleaning Service section start*/
.delightful-cleaning-section {
  background: url(../img/png/bubble-bg-2.png) no-repeat;
  background-size: cover;
  padding-top: 200px !important;
}

.delightful-cleaning-section .feature-box img {
  height: 120px;
}

.fgrm {
  height: 160px
}

.sdss {
  margin-top: -35px;
  padding-right: 107px;
}

.sdss p {
  font-size: 14px;
}

/* Consistently Delightful Cleaning Service section end*/

/* Our Blog start*/

.blog-section {
  background-color: #f9fbfc;
}



.blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 10.22px 23.37px 0px #838B9526;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 1.125rem;
  /* Fallback */
  padding: clamp(1rem, 1.25vw, 1.125rem);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-content {
  text-align: left;
}

.blog-content-p {
  color: #838B95;
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
}

.blog-date {
  position: absolute;
  bottom: -7px;
  right: 10px;
  background-color: #62bfc5;
  color: white;
  font-weight: bold;

  padding: 0.625rem 1rem;
  /* Fallback */
  padding: clamp(0.5rem, 0.69vw, 0.625rem) clamp(0.875rem, 1.11vw, 1rem);


  font-size: 1.75rem;
  /* Fallback */
  font-size: clamp(1.5rem, 1.94vw, 1.75rem);

  border-radius: 0.375rem;
  /* Fallback */
  border-radius: clamp(0.25rem, 0.42vw, 0.375rem);

  text-align: center;
}

.blog-date span {
  display: block;
  font-size: 1.0625rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.18vw, 1.0625rem);
  font-weight: normal;
}

.read-more-link {
  font-size: 1rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.11vw, 1rem);
  line-height: 100%;
  color: #051625;
  text-decoration: none;
  font-weight: 500;
}

.read-more-link:hover {
  color: #4ca7ad;
}

.view-all-btn {
  background-color: #62bfc5;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  color: white;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background-color: #4ca7ad;
}

/* Our Blog end*/



.hero-section {
  background: url('https://images.unsplash.com/photo-1581578017428-2c49aa734111?auto=format&amp;fit=crop&amp;w=1400&amp;q=80') no-repeat center center/cover;
  padding: 2rem;
  /* fallback */
  padding: var(--padding-section);
  text-align: center;
}

.hero-section h1 {
  font-size: 2rem;
  /* fallback for old browsers */
  font-size: var(--heading-font-size);
  font-weight: bold;
  margin-bottom: 2.5rem;
  /* Fallback */
  margin-bottom: var(--margin-section);
}

.cta-button {
  background-color: var(--site-main-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  /* fallback */
  font-size: var(--button-font-size);
  transition: background-color 0.3s ease-in-out;
  border: 1px solid var(--site-main-color);
}

.cta-button:hover {
  color: var(--site-main-color);
  background-color: transparent;
}

.sofa-image {
  max-width: 100%;
  border-radius: 1rem;
  margin: 2rem 0;
  /* fallback */
  margin: var(--margin-section) 0;
}

.celebrate-section {
  text-align: center;
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  /* fallback */
  padding: var(--padding-section) 1rem;
  position: relative;
}

.celebrate-section h2 {
  font-size: 2rem;
  /* fallback */
  font-size: var(--heading-font-size);
  font-weight: bold;
  margin-bottom: 2.5rem;
  /* Fallback */
  margin-bottom: var(--margin-section);
}

.celebrate-section p {
  font-size: 1rem;
  /* fallback */
  font-size: var(--paragraph-font-size);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}





.confetti {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}

.twenty-years {
  font-size: 3rem;
  /* fallback */
  font-size: var(--twenty-years-font-size);
  color: #00a6a6;
  font-weight: bold;
}

.highlight-box {
  display: inline-block;
  background-color: #2acfcf;
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin: 0 0.3rem;
  font-weight: 600;
}

.promo-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: var(--padding-section);
}

.promo-images img {
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body h4 {
  font-size: 1.25rem;
  /* Fallback */
  font-size: clamp(1.125rem, 1.39vw, 1.25rem);
  line-height: 1.625rem;
  /* 26px */
  font-weight: 700;
}

/* footer section start */

/* Footer Styles */
.site-footer .col-md-3:first-child {
  margin-bottom: 2rem !important;
}

.site-footer .col-md-3>img {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem !important;
  max-width: 100% !important;
}

.site-footer .container {
  background: url(../img/png/footer-bg.png) no-repeat, #042A2B;
  background-position: 90%;
  background-size: contain;
  font-family: 'Poppins', sans-serif;
}

.site-footer a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 1rem;
  /* Fallback */
  font-size: clamp(0.9375rem, 1.11vw, 1rem);
  line-height: 100%;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h6 {
  font-size: 1.125rem;
  /* Fallback */
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.75rem;
  /* 28px */
}

/* Bootstrap Icon Size */
.site-footer i {
  font-size: 18px;
}

/* footer section  end*/

@media screen and (max-width:1500px) {
  .frmed {
    max-width: 673px;
  }

  .celebrating-top p,
  .celebrating-bottom p {
    max-width: 550px;
  }
}

@media screen and (min-width:1024px) {
  .delightful-cleaning-section .feature-box h5 {
    min-height: 48px;
  }
}

.frmed {
  position: absolute;
  bottom: 0;
  right: 3%;
  max-width: 41%;
  z-index: 99;
}




@media screen and (max-width:1024px) {
  .feature-box {
    width: calc(50% - 30px);
  }

  .celebrating-top p,
  .celebrating-bottom p {
    max-width: 300px;
    margin: .75rem auto;
  }

  .frmed {
    max-width: 546px;
  }

  .celebrating-section-sec {
    margin-top: 0;
  }

  .booking-question-img {
    height: 80px;
    left: -10px;
    top: -20px;
  }
}

.my-fxc{
  height: 150px;
  margin-bottom: 15px;
}
.my-fxcBT{
  height: 120px;
  margin-bottom: 15px;
}
.testimonial-heading-col{padding-bottom:85px;}

@media screen and (max-width:768px) {
	.testimonial-heading-col{padding-bottom:15px;}
  .celebrating-section {
    margin-top: -100px;
    padding-top: 90px;

  }
  .hero-text h1 {
    font-size: 16px;
  }
    .celebrating-top{margin-left:0px !important;}
  .hero-video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
  }

  .booking-section {
    margin: 1rem auto;
  }

  .feature-box {
    width: 100%;
  }

  .features-grid {
    margin: 70px 0px 0px 0px !important;
  }

  .frmed {
    display: none;
  }

  .booking-card-container .girl-img img {
    height: 230px;
  }

  .booking-card-container:has(.boy-img) {
    right: 0px;
  }

  .booking-card-container .girl-img,
  .booking-card-container .boy-img {
    right: 0px;
  }

  .booking-card-container .boy-img img {
    width: 100%;
  }

  .booking-card-container {
    width: 100%;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .header-icons {
    /* width: 100%; */
    justify-content: space-between;
  }

  .image-container>img {
    width: 100% !important;
    height: 100% !important;
  }

  .hero-text {
    display: flex;
    place-items: center;
    flex-direction: column;
  }

  .hero-text h1 {
    text-align: center;
    margin-top: -2rem;
    line-height: 24px;
  }

  .delightful-cleaning-section {
    padding-top: 50px !important;
  }

  .celebrating-top {
    padding-top: 1rem !important;
  }

  .site-footer .container {
    background: none;
  }

  .site-footer .col-md-3>img {
    width: 70%;
  }
}


/* AAA_Styles */
.celebrating-section {
	position: relative;
}
.celebrating-section .congratsBgImg {
	position: absolute;
}
.hero-video-section {
	position: relative;
}
.mfihs {
	position: absolute;
	top: 26px;
	right: 25px;
	max-width: 80px;
}
.mfihs a {
	display: block;
	width: 100%;
	max-width: 100%;
}
.mfihs img{ 
	width: 100%;
	max-width: 100%;
}
.float_up_down {
  display: inline-block;
  animation: floatY 2s linear infinite;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (min-width: 576px) {
	.mfihs {
		display: none;
	}
}
.cta-button,
.play-button,
.chat-icon img,
.call-button img{
	transition: opacity 0.35s ease;
}
.cta-button:hover,
.play-button:hover,
.menu-icom:hover,
.chat-icon img:hover,
.call-button img:hover {
	opacity: 0.5;
}
.menu-icom,
.chat-icon img,
.call-button img {
	cursor: pointer;
	position: relative;
	z-index: 2;
}
@media (max-width: 575px) {
	.d-mobile-none,
	.header-icons .chat-icon,
	.why-choose-section .container > .services-btn.cta-button{
		display: none !important;
	}
	.home-banner-section:before{
		content: none !important;
	}
	.home-banner-section .hero-text {
		max-width: 257px;
		max-width: 190px;
		width: 100%;
		margin-left: 0;
		padding: 0 17px;
		padding: 0 17px 0 10px;
		transform: none;
		left: auto;
		display: block;
	}
	.home-banner-section .play-button {
		display: none !important;
	}
	.home-banner-section .play-button img {
		width: 40px;
	}
	.home-banner-section .hero-text h1 {
		text-align: left;
		font-size: 15px;
		line-height: 21px !important;
		margin-bottom: 15px;
	}
	.header-icons{
		flex-direction: row-reverse;
	}
	.home-banner-section .hero-text .cta-button {
		font-size: 11px !important;
		padding: 5px 8px !important;
	}
	.home-banner-section .hero-text .cta-button i {
		margin-left: 5px !important;
	}
	.celb-mobile-section {
		padding-top: 20px;
		padding-bottom: 20px;
		text-align: center;
		font-size: 12px;
		line-height: 19px;
		font-weight: 400;
	}
	.home-banner-section .bImgS {
		margin-top: 0 !important;
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
	}
	.feat-mobile-section {
		text-align: center;
	}
	.feat-mobile-section .h2 {
		font-size: 15px;
		line-height: 18px;
		font-weight: 500;
		margin-bottom: 30px;
	}
	.bottom-border:after {
		width: 32px;
	}
	.faet-mob-grid {
		display: flex;
		margin-left: -8px;
		margin-right: -8px;
		overflow-x: auto;
		overflow-y: hidden;
		margin-bottom: 5px;
		padding-bottom: 15px;
	}
	.feat-mob-col {
		max-width: 46%;
		flex: 0 0 46%;
		width: 100%;
		padding-right: 8px;
		padding-left: 8px;
	}
	.feat_srv_col .imgWrap img {
		width: 100%;
		max-width: 100%;
		vertical-align: middle;
	}
	.feat_srv_col .h3{
		font-size: 10px;
		line-height: 26px;
		font-weight: 700;
		margin-bottom: 3px;
		color: #042A2B;
	}
	.feat_srv_col .descWrap p {
		font-size: 8px;
		line-height: 10px;
		font-weight: 400;
		color: #838B95;
		margin-bottom: 7px;
		display: -webkit-box;
		-webkit-line-clamp: 7;
		-webkit-box-orient: vertical;
		overflow: hidden;
		min-height: 70px;
	}
	.feat_srv_col .descWrap .btn,
	.feat-mobile-section .services-btn {
		border: 1px solid var(--site-main-color);
        background-color: var(--site-main-color);
        color: #fff;
        font-size: 8px;
		line-height: 8px;
		padding: 4px 6px;
		font-weight: 400;
		border-radius: 4.5px;
		text-decoration: none !important;
		transition: opacity 0.35s ease;
	}
	.feat_srv_col .descWrap .btn:hover,
	.feat-mobile-section .services-btn:hover {
		opacity: 0.6;
	}
	.feat_srv_col .descWrap .btn .icn{
		margin-left: 2px;
		transform: rotate(-45deg);
	}
	.feat-mobile-section .services-btn {
		font-weight: 600;
		line-height: 10px;
		border-radius: 10px;
		padding: 4px 13px;
	}
	.why-choose-section,
	.delightful-cleaning-section {
		padding: 55px 0 0 !important;
		text-align: center;
	}
	.delightful-cleaning-section {
		padding: 55px 0 10px !important;
	}
	.why-choose-section .container,
	.consistent-delight-service .container {
		padding: 0
	}
	.why-choose-section .h2,
	.consistent-delight-service .h2 {
		font-size: 19px;
		line-height: 32px;
		font-weight: 600;
		margin-bottom: 29px;
		padding-left: 15px;
		padding-right: 15px;
	} 
	.consistent-delight-service .h2 {
		font-size: 15px;
		line-height: 32px;
		font-weight: 400;
		margin-bottom: 13px;
		padding-top: 60px;
	}
	.why-choose-section .features-grid,
	.consistent-delight-service .row {
		overflow-x: auto;
		overflow-y: hidden;
		margin: 0 !important;
		gap: 0 !important;
		flex-wrap: nowrap !important;
		padding-bottom: 15px;
	}
	.why-choose-section .feature-box,
	.consistent-delight-service .feature-box {
		max-width: 40%;
		flex: 0 0 40%;
		max-width: 43%;
		flex: 0 0 43%;
		width: 100%;
		padding: 0 5px;
		color: #042A2B;
		margin: 0 !important;
	}
	.why-choose-section .feature-box .my-fxc,
	.consistent-delight-service .feature-box .my-fxcBT {
		max-width: 130px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.consistent-delight-service .feature-box .my-fxcBT {
		max-width: 110px;
	}
	.why-choose-section .feature-box h3,
	.consistent-delight-service .feature-box h5 {
		font-size: 10px;
		line-height: 14px;
		font-weight: 600;
		color: #042A2B;
		margin-bottom: 14px;
	}
	.consistent-delight-service .feature-box h5 {
		font-size: 15px;
		line-height: 18px;
		margin-bottom: 4px;
	}
	.why-choose-section .feature-box p,
	.consistent-delight-service .feature-box p {
		padding: 0px 8px;
	}
	.why-choose-section .feature-box p, 
	.why-choose-section .feature-box a {
		font-size: 8px;
		line-height: 13px;
		font-weight: 400;
		color: #042A2B;
		transition: color 0.35s ease;
		margin-bottom: 14px;
	}
	.consistent-delight-service .feature-box p,
	.consistent-delight-service .feature-box a {
		font-size: 10px;
		line-height: 12px;
		font-weight: 400;
		color: #042A2B;
		transition: color 0.35s ease;
		margin-bottom: 5px;
	}
	.why-choose-section .feature-box a:hover,
	.consistent-delight-service .feature-box a:hover {
		text-decoration: underline;
		color: #5EB1BF;
	}
	.mobile-blog_style{
		padding-top: 47px;
		padding-bottom: 47px;
	}
	.mobile-blog_style h2 {
		font-size: 15px;
		line-height: 32px;
		font-weight: 400;
		color: #042A2B;
		margin-bottom: 9px !important;
	}
	.mobile-blog_style h2:after,
	.consistent-delight-service .h2:after,
	.join-family-section .join-title:after {
		content: none !important;
	}
	.mobile-blog_style .row > div:nth-last-child(1),
	.mobile-blog_style .row > div:nth-last-child(2),
	.recurring-options-section {
		display: none !important;
	}
	.join-family-section{
		font-size: 10px;
		line-height: 16px;
		font-weight: 400;
		color: #042A2B;
		text-align: center;
		padding-bottom: 0 !important;
		margin-bottom: -60px;
	}
	.join-family-section .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.join-family-section .container > .row {
		flex-direction: column-reverse;
	}
	.join-family-section .join-title {
		font-size: 15px;
		line-height: 20px;
		font-weight: 400;
		color: #042A2B;
		transition: color 0.35s ease;
		margin-bottom: 5px !important;
		max-width: 252px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.join-family-section .image-wrapper{
		padding: 0 !important;
		margin-top: -65px;
		margin-top: -100px;
	}
	.join-family-section .image-wrapper + .cta-button{
		display: inline-block;
		font-size: 10px !important;
		line-height: 10px;
		border-radius: 10px;
		padding: 5px 11px !important;
		top: -70px;
		position: relative;
	}
	.mobile_popup-celebration {
		position: fixed;
		left: 0;
		top: 0;
		min-height: 100vh;
		width: 100%;
		display: none;
		align-items: center;
		justify-content: center;
		background: rgba(0,0,0,0.75);
		opacity: 0;
		transition: opacity 0.6s ease;
		z-index: 99999;
	}
	.mobile_popup-celebration.show {
		display: flex;
		opacity: 1;
	}
	.mobile_popup-celebration.hide {
		opacity: 0;
	}
	.mobile_popup-celebration .imgWrap {
		max-width: 320px;
		width: 100%;
		margin: 0 auto;
		padding: 30px 10px;
	}
	.mobile_popup-celebration .imgWrap img {
		width: 100%;
		vertical-align: middle;
	}
	#chaty-cta-mbixpaa4qu {
		box-shadow: none !important;
	}
	#cta-main-mbixpaa4qu .on-hover-text,
	#cta-main-mbixpaa4qu > span {
		display: none;
	}
	#csaas-mbixpaa4qu:not(.csaas-open) #cta-open-mbixpaa4qu{
		width: 104px !important;
		height: 101px !important;
	}
	#cta-open-mbixpaa4qu .csaas-svg {
		position: relative;
		width: 100% !important;
		height: 100% !important;
	}
	#cta-open-mbixpaa4qu .csaas-svg svg,
	.booking-section .booking-question-img {
		display: none !important;
	}
	#cta-open-mbixpaa4qu .csaas-svg:before {
		content: "";
		background-image: url("/wp-content/uploads/2025/10/Group-1000002210.svg");
		width: 100%;
		height: 100%;
		display: inline-block;
		filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.45));
		animation: floatY 2s linear infinite;
	}
	.testimonial_mobile-class {
		min-height: unset;
		padding: 140px 0 46px 0;
	}
	.testimonial_mobile-class .testimonial-heading {
		margin-left: 0;
		font-size: 15px;
		line-height: 32px;
		font-weight: 400;
		margin-bottom: 22px;
		text-align: center;
		margin-top: 0;
	}
	.testimonial_mobile-class .testimonial-heading:after {
		width: 54px;
        height: 2px;
        bottom: -3px;
	}
	.testimonial_mobile-class .testimonial-card .testimonial-card-title {
		font-size: 10px;
		line-height: 10px;
		font-weight: 600;
		color: #042A2B;
		margin-bottom: 5px;
	}
	.testimonial_mobile-class .testimonial-card .testimonial-card-location {
		font-size: 10px;
		line-height: 10px;
		font-weight: 400;
		color: #C7CACA;
		margin-bottom: 6px;
	}
	.testimonial_mobile-class .testimonial-card .testimonial-card-stars {
		line-height: 10px;
	}
	.testimonial_mobile-class .testimonial-card .testimonial-card-text {
		font-size: 8px;
		line-height: 14px;
		font-weight: 400;
		color: #042A2B;
	}
	.test_mob_sldr-wrap {
		display: flex;
		align-items: center;
	}
	.test_mob_sldr-wrap .testimonial-slider {
		max-width: 217px;
		width: 100%;
		margin-left: 0;
		flex-shrink: 0;
		flex-grow: 1;
		margin-bottom: 0 !important;
		overflow: hidden;
/* 		white-space: nowrap; */
	}
	.test_mob_sldr-wrap .testimonial-slider .slick-track {
		height: -webkit-fill-available;
		display: flex !important;
		max-height: 160px !important;
/* 		align-items: stretch !important; */
	}
	.test_mob_sldr-wrap .testimonial-slider .slick-list{
		max-height: 160px !important;
	}
	.test_mob_sldr-wrap .testimonial-slider .slick-slide {
        height: auto !important;
        float: none !important;
        max-width: unset !important;
        flex-basis: unset !important;
        min-width: unset !important;
		margin-left: 10px !important;
		margin-right: 10px !important;
		max-height: 160px !important;
	}
	.test_mob_sldr-wrap .testimonial-illustration-card {
		min-width: unset;
		max-width: unset;
		flex-basis: unset;
		flex: auto;
		display: block;
		min-height: unset;
	}
	.testimonial_mobile-class .container {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
	.test_mob_sldr-wrap .testimonial-slider .slick-arrow i {
		line-height: 2;
	}
	.estimtor_form-form.homeforms input,
	.estimtor_form-form.homeforms select {
		border-radius: 10px;
		height: 24px;
		padding: 7px 7px;
		font-size: 14px;
		line-height: 15px;
		font-weight: 400;
		width: 100%;
		background: transparent;
		outline: none;
		border: 1px solid var(--site-main-color);
		color: #CDEDF680;
	}
	.estimtor_form-form.homeforms select  {
		padding: 0 7px;
	}
	.booking-section .booking-card-container,
	.estimtor_form-form.homeforms {
		position: relative;
	}
	.booking-section .booking-img.boy-img {
		position: absolute;	
		right: 0;
		top: 0;
		max-width: 120px;
		max-width: 150px;
		width: 100%;
	}
	.booking-section .booking-img.boy-img img {
        width: 100%;
        max-width: 100%;
        height: 306px;
        position: relative;
        right: -15px;
        top: -12px;
	}
	.estimtor_form-form.homeforms input[type="submit"]{
		position: absolute;
		max-width: 186px;
		width: 100%;
		border: 1px solid var(--site-main-color);
		background-color: var(--site-main-color);
		color: #fff;
		bottom: -37px;
		left: 50%;
		transform: translateX(-50%);
		margin: 0;
		height: 26px;
		line-height: 14px;
	}
	.booking-card-container:has(.boy-img) .booking-card {
		max-width: unset;
		padding-bottom: 25px;
		height: unset;
		padding: 17px 120px 26px 25px !important;
	}
	.estimtor_form-form.homeforms .wpcf7-spinner {
		position: absolute;
		left: 0;
		margin-left: 0;
		bottom: -36px;
	}
	.test_mob_sldr-wrap .testimonial-slider .slick-arrow {
		width: 17px;
		height: 17px;
		font-size: 10px !important;
		justify-content: center;
		align-items: center;
		line-height: 10px;
	}
	.video_container-mobile {
		max-width: 350px;
		width: 100%;
		margin: 10px auto 30px;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0px 10.22px 23.37px 20px #838B9526;
	}
	.video_container-mobile video {
		width: 100%;
		vertical-align: middle;
/* 		min-height: 250px; */
		border-radius: inherit;
	}
	.contact_form-row .contact-form {
		padding: 0;
	}
}
@media (min-width: 576px) {
	.d-sm-none {
		display: none !important; 
	}
}
.estimtor_form-form,
.contact-us_form {
	padding-right: 3px;
	padding-left: 3px;
}
.estimtor_form-form .sff-row,
.contact-us_form .sff-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -3px;
	margin-right: -3px;
}
.estimtor_form-form .sff-col,
.contact-us_form .sff-col {
	max-width: 100%;
	flex: 0 0 100%;
	width: 100%;
	padding-right: 3px;
	padding-left: 3px;
}
.estimtor_form-form .sff-col.sff-col-half,
.contact-us_form .sff-col.sff-col-half {
	max-width: 50%;
	flex: 0 0 50%;
}
.contact-us_form,
.contact-us_form .sff-col {
	padding-right: 6px;
	padding-left: 6px;
}
.contact-us_form .sff-col{
	margin-bottom: 5px;
}
.contact-us_form .sff-row {
	margin-left: -6px;
	margin-right: -6px;
}

.contact-us_form .formLabel {
	font-size: 12px;
	font-weight: 500;
	color: #8D8D8D;
	display: -webkit-box;          /* Required for line-clamp */
	-webkit-line-clamp: 1;        /* Number of lines to show */
	-webkit-box-orient: vertical; /* Required for line-clamp */
	overflow: hidden; 
}
.contact-us_form .form-control{
	padding-top: 0 !important;
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	background-color: transparent;
}
.contact-us_form .wpcf7-not-valid-tip {
	font-size: 12px;
	margin-bottom: 7px;
	margin-top: -4px;
}
.contact-us_form textarea {
	height: 80px;
}
.selectWrap {
	position: relative;	
}
.selectWrap:after {
    position: absolute;
    content: "";
    right: 0;
/*     bottom: 13px; */
    top: 37px;
    border-top: 4px solid rgba(0, 0, 0, 0.75);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.contact-us_form .form-control.eff-select,
.contact-us_form .dateWrap .form-control{
    font-size: 13px;
    padding-top: 5px !important;
}
.contact-us_form .dateWrap {
	padding-top: 8px;
}
.contact-us_form .dateWrap .form-control {
	font-size: 12px;
}
.contact-us_form input.wpcf7-submit {
	border-radius: 8px;
	max-width: 186px;
	width: 100%;
	border: 1px solid var(--site-main-color);
	background-color: var(--site-main-color);
	color: #fff;
	margin: 5px 0 30px auto;
	padding: 5px 11px;
}




