

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
body{
    font-family: "Poppins", sans-serif;
}

:root {
  --bg-light: rgb(179, 242, 199);
  --bs-primary: rgb(71, 226, 119);
}

.back-to-top {
  position: fixed;
  display: none;
  left: 30px;
  bottom: 30px;
  z-index: 99;
}
h1, h2, h3, h4, h5, h6{
    color: black;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
  color: black;
  font-weight: 500;
  background-color: var(--bg-light);
  color: black;
border-color: black;
}

.btn.btn-primary:hover {
  background: var(--bs-primary);
  border-color: black;
}

.btn.btn-dark:hover {
  background: rgb(71, 226, 119);
  border-color: black;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* start topbar */
.topbar a {
  color: black;
}

/* end topbar */

/*** Navbar ***/
.navbar-nav {
  background-color: #b3f2c7;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}



.navbar .navbar-nav .nav-link {
  margin: 0 12px;
  padding: 10px 0;
  color: black !important;
  font-size: 20px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
  background: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
@media (min-width: 992px) {


.navbar .navbar-brand .logo {
  width: 100px;
}



  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

@media (max-width: 991.98px) {

.navbar .navbar-brand .logo {
  width: 200px;
}


  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}



@media (min-width: 400px) {
  .navbar .navbar-brand img {
  width: 150px;
}

}




.navbar .btn-light {
  font-weight: 500;
  color: var(--bs-secondery);
}

.navbar .btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}
/*** Hero ***/
.hero-header {


 background-color: #b3f2c7;
}

.hero-header h1 {
  color: black;
  font-size: 40px;
}


.hero-header p{
    color: black;
    font-size: 22px;

}
.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--bs-primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--bs-primary);
  animation: pulse-border 1500ms ease-out infinite;
}

.bo {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 2.4em;
  font-size: 22px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000;
  z-index: 1;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 1px;
}

.bo span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 4px solid #000;
}

.bo span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: #b3f2c7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 1s;
}

.bo:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #000;
}

.bo:hover {
  color: white;
}

.bo:active span::before {
  background: #000;
}



@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}




/* start about */
.about-text{
    font-size: 19px;
    color: black;
}
/* end about */

/*** Appointment ***/
@media (min-width: 992px) {
  .container.appointment {
    max-width: 100% !important;
  }

  .container.appointment .appointment-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.appointment .appointment-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.appointment .appointment-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.appointment .appointment-form {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.appointment .appointment-text {
  background: linear-gradient(rgba(179, 242, 199, 0.8), rgba(179, 242, 199, 0.8));
  background-size: cover;
}

.container.appointment .appointment-form {
  background: linear-gradient(rgba(71, 226, 119), rgba(71, 226, 119)),
    url(../img/about-image.webp) center center no-repeat;
  background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.efficiency-txt{
    font-size: 19px;
}

.service-item p{
  color: black;
}
/*** Features ***/
.feature .feature-item .btn-square {
  width: 90px;
  height: 90px;
  background: var(--bs-primary);
  border: 15px solid var(--bs-white);
}

.twentytwenty-wrapper {
  height: 100%;
}

/*** Team ***/
.team {
  position: relative;
}

.team::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 110px;
  left: 0;
  bottom: 3rem;
  background: var(--bs-light);
  z-index: -1;
}

.team .team-item {
  position: relative;
  overflow: hidden;
}

.team .team-item img {
  position: relative;
  transform: scale(1.1);
  transition: 0.5s;
}

.team .team-item:hover img {
  margin-top: -30px;
  padding-bottom: 30px;
}

.team .team-text {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team .team-text-overflow {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team .team-item:hover .team-text-overflow {
  bottom: 0;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-item p{
    color: black;
}
.testimonial-left img,
.testimonial-right img {
  position: absolute;
  animation: pulse-img 5s ease-out infinite;
}

@keyframes pulse-img {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
  }

  50% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
  }
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background: var(--bs-primary);
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: #b3f2c7;
}

/*** Footer ***/
.footer {
  color: black;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: black;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: black;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: black;
  letter-spacing: 1px;
  box-shadow: none;
}

.appointment-text .btn.btn-square {
  color: black;
  border: 1px solid black;
}

.appointment-text .btn.btn-square:hover {
  color: black;
  border-color: black;
  background: var(--bs-primary);
}

.footer .form-control {
  color: var(--bs-light);
  border-color: rgba(256, 256, 256, 0.6);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}


.appointment-text h2{
  font-size: 50px;
}

.appointment-text{
  color: black;
}

.appointment-text a{
  color: black;
}

  .zip-link {
    background: #fff;
    
    font-weight: 400;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
    border: 1px solid black;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .loc-link{
    background: #fff;
    color: black;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
    border: 1px solid black;
    transition: all 0.3s ease;
    display: inline-block;
  }

   .loc-link:hover{
    color: black;
    background-color: #47E277;
   }



   /* start restore */
.fixed-bg-section{
  /* replace with your image path */

  position: relative;

}
.fixed-bg-section::before{
  content:"";
  position:absolute;
  inset:0;
  /* #B3F2C7 with 70% opacity */
  background: #B3F2C7;
  /* or: background: #B3F2C7B3;  /* hex with alpha (~70%) */
}
.fixed-bg-section .container{
  position:relative; /* above overlay */
  z-index:1;
}

.restore-txt{
  color: black;

  width: 70%;
  margin: auto;
}

.restore-content{
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}


   /* end restore */


   /* start faq */
/* Brand button */
.btn-brand {
  background: #46E276;
  color: black;
  border: 2px solid #46E276;
  transition: all 0.3s ease-in-out;
}

.btn-brand:hover {
  background: #36C864;
  border-color: #36C864;
  color: black;
  transform: translateY(-2px);
}

.btn-brand:focus {
  box-shadow: 0 0 0 0.25rem rgba(70, 226, 118, 0.4);
}

/* Accordion Styling */
.faq-section .accordion-button {
  background-color: #fff;
  color: black;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #46E276;
  color: black;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  background-color: #fff;
}

/* Responsive heading size */
@media (max-width: 767px) {
  .faq-section h2 {
    font-size: 1.6rem;
  }
}
   .accordion-button:not(.collapsed)::after {
    background-image: url("../img/arrow.webp");
    transform: rotate(-180deg);
}






   /* end faq */
   /* start From Messy to Spotless */

/* Card look */
.info-card{
  background:#fff7f6;              /* soft pink like sample */
  max-width: 640px;
  z-index: 2;
}

.img-wrap .info-card p{
  color: black;
}

/* Overlap placement */
.img-wrap{ min-height: 420px; }     /* ensures room for absolute card */
.img-wrap .info-card{
  position:absolute;
  right:-70%;                        /* nudge out of image slightly */
  top: 8%;
  transform: translateY(0);
}

/* Badge & dots */
.info-card .badge{
  background:#47E277;               /* badge tone */
  color:black;
  letter-spacing:.04em;
  font-size: 20px;
  padding: 7px;
}


/* Responsive: stack card below the image and remove absolute positioning */
@media (max-width: 991.98px){
  .img-wrap{ min-height: auto; }
  .img-wrap .info-card{
    position:static;
    margin-top: -24px;              /* slight overlap feel on tablet */
  }
}
@media (max-width: 575.98px){
  .img-wrap .info-card{
    margin-top: 16px;               /* no overlap on small phones */
  }
}







   /* end From Messy to Spotless */

   /* start second Messy to Spotless */

  /* end second Messy to Spotless */










/* Base layout */
.imgwrap-rl { min-height: 420px; }

/* Card styling */
.infocard-rl{
  position: static;                 /* stacked by default (mobile) */
  background: #fff7f6;              /* adjust to your theme */
  max-width: 640px;
  z-index: 2;
}

/* Badge + Button colors (adjust as needed) */
.badge-rl{
  background:#46E276;
  color:black;
  letter-spacing:.04em;
  padding:6px 12px;

  font-size:.8rem;
}
.btn-rl{
  background:#46E276;
  color:black;
  border:2px solid #46E276;
  transition:.25s ease-in-out;
}
.btn-rl:hover{
  background:#36C864;
  border-color:#36C864;
  color:black;
  transform:translateY(-2px);
}

/* Dots (optional if you list items inside the card) */
.infocard-rl .dot-rl{
  display:inline-block; width:10px; height:10px;
  border:2px solid #46E276; border-radius:50%; margin-right:10px;
  transform:translateY(1px);
}
.infocard-rl .dot-rl.red{ border-color:#ff6b6b; }

/* Overlap on large screens: pull card to the LEFT */
@media (min-width: 992px){
  .imgwrap-rl .infocard-rl{
    position: absolute;
    left: -70%;
    top: 8%;
  }
}


.infocard-rl p{
color: black;
}



/* start fast */
.fast{
  background-color: #D9F9E3;
  padding: 5%;
  width: 70%;
  margin: auto;
  text-align: center;
}

.fast-txt p{
  color: black;
}
/* end fast */
/* start Healthier */
.healthier h4{
    background: #47E277;
    color: black;
    letter-spacing: .04em;
    font-size: 20px;
    padding: 7px;
    width: 40%;
}
/* end Healthier */








