* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;

}

:root {
  --pink: #ee3539;
  --green: #089c63;
  --yellow: #f7941e;
}

a {
  text-decoration: none !important;

}

p {
  font-size: 15px;
}

body,
html {
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cloude-box {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* blob-btn start */
.blob-btn {
  z-index: 1;
  position: relative;
  padding: 14px 32px;
  /* margin-bottom: 30px; */
  text-align: center;
  /* text-transform: uppercase; */
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--pink);
  outline: none;
  border: none;
  cursor: pointer;
  transition: color 0.5s;
  border-radius: 50px;
}

.blob-btn::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* border: 6px solid #0fe0f5; */
}


.blob-btn:hover {
  color: white;
}

.blob-btn:hover::after {
  left: 0;
  top: 0;
  transition: all 0.3s;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 50px 50px;
  height: 100%;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}

.blob-btn__blob {
  position: absolute;
  top: 6px;
  width: 25%;
  height: 100%;
  background: var(--green);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.8);
  transition: transform 0.45s;
  border-radius: 50px 50px;
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.8);
}

/* blob-btn end */



/* blob-btn-2 start */
.blob-btn-2 {
  z-index: 1;
  position: relative;
  padding: 14px 32px;
  /* margin-bottom: 30px; */
  text-align: center;
  /* text-transform: uppercase; */
  color: white;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--green);
  outline: none;
  border: none;
  cursor: pointer;
  transition: color 0.5s;
  border-radius: 50px;
}

.blob-btn-2::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* border: 6px solid #0fe0f5; */
}


.blob-btn-2:hover {
  color: white;
}

.blob-btn-2:hover::after {
  left: 0;
  top: 0;
  transition: all 0.3s;
}

.blob-btn-2__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 50px 50px;
  height: 100%;
}

.blob-btn-2__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
}

.blob-btn-2__blob {
  position: absolute;
  top: 6px;
  width: 25%;
  height: 100%;
  background: var(--pink);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.8);
  transition: transform 0.45s;
  border-radius: 50px 50px;
}

.blob-btn-2__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn-2__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn-2__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn-2__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn-2:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.8);
}

/* blob-btn-2 end */

.top-icon {
  width: 70px;
  display: block;
  margin: auto;
}

.top-head {
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--pink);
  margin: 0;
  font-weight: bold;
  margin-bottom: 0 !important;
  font-family: 'Bubblegum Sans', cursive;
}

.heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  margin-bottom: 20px;
}

.side-space {
  padding-left: 100px;
  padding-right: 100px;
}

/* main-btn start */
.main-btn {
  background-color: var(--secondary);
  padding: 14px 10px 18px 30px;
  font-size: 16px;
  color: white !important;
  transition: 0.5s;
  border-radius: 50px;
}

.main-btn i {
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 10px;
  transform: rotate(-45deg);
  margin-left: 10px;
  height: 40px;
  width: 40px;
  transition: 0.5s;

}

.main-btn:hover i {
  transform: rotate(0deg);
  background-color: var(--secondary);

}

.main-btn:hover {
  background-color: var(--primary);

}

/* main-btn end */

.icon-btn {
  background-color: white;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: 0.5s;
  padding: 20px;
  border-radius: 50%;


}

.icon-btn:hover i {
  transform: rotate(-45deg);
  transition: 0.5s;
}

/* sec-btn start */
.sec-btn {
  border: 2px solid white;
  padding: 14px 10px 18px 30px;
  font-size: 16px;
  color: white !important;
  transition: 0.5s;
  border-radius: 50px;
  /* display: inline-flex; */
  line-height: 1;
}



.sec-btn i {
  background-color: var(--secondary) !important;
  color: white;
  border-radius: 50px;
  padding: 10px;
  /* transform: rotate(-45deg); */
  margin-left: 10px;
  height: 40px;
  width: 40px;
  transition: 0.5s;
  line-height: 1;

}

.sec-btn:hover i {
  transform: rotate(0deg);
  background-color: var(--secondary);

}

.sec-btn:hover {
  background-color: white;
  color: var(--primary) !important;

}

/* sec-btn end */
/* top-header start */

#top-header {
  background-color: var(--pink);
  padding-top: 10px;
  padding-bottom: 10px;
}

#top-header .icon-box {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  flex-shrink: 0;

}

#top-header .icon-box:hover {
  background-color: white;
  transition: 0.5s;
  color: white !important;
}

#top-header .icon-box i {
  color: var(--pink) !important;


}

#top-header .icon-box:hover i {
  color: var(--pink) !important;
  transition: .5s;

}

#top-header .top-add p {
  font-size: 16px;
}

#top-header .top-work p {
  font-size: 16px;
}



/* top-header end */

/* header start */

/* header start */
#header.scrolled {
  background: white;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#header .call-btn {
  color: white;
  font-size: 20px;
  font-weight: 500;

}

#header .call-btn i {
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .fa-solid {
  color: black;
}

.carousel-control-prev img {
  width: 80px;
  height: auto;
}

.carousel-control-next img {
  width: 80px;
  height: auto;
}

#header {
  z-index: 3;
  padding-top: 25px;
  padding-bottom: 25px;
}

#header .nav-link {
  color: black;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
}

#header .nav-link:hover {
  color: var(--pink);
  /* border-bottom: 1px solid var(--accent-yellow); */
  transition: 0.5s;
}

#header .nav-link.active {
  color: var(--pink);
  /* border-bottom: 1px solid var(--accent-yellow); */
  transition: 0.5s;
}

#header .nav-item {
  margin-right: 10px;
}

.dropdown-item {
  font-size: 17px !important;
  font-weight: 500 !important;
  color: black !important;
  transition: 0.5s;


}
/* Fix dropdown inside offcanvas */
.offcanvas .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 5px 0 10px;
    border: none !important;
}

.dropdown-menu[data-bs-popper] {
    left: 0;
    margin-top: .125rem;
    border-radius: 10px;
    border: 1px solid white;

    
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: white !important;
  color: var(--red) !important;
}

.navbar {
  position: relative;
}

.navbar-brand {
  z-index: 10;
}

@media (max-width: 991.98px) {
  #header .navbar>.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  #header .navbar-brand {
    position: static !important;
    transform: none !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  #header .navbar-brand img {
    width: 200px;
    max-width: 70vw;
    height: auto;
  }

  #header .navbar-toggler {
    margin-left: auto !important;
    border: none;
    padding: 4px 8px;
  }

  .call-btn {
    display: none;
  }

  .navbar-collapse {
    margin-top: 20px;
  }
}



.offcanvas .nav-link {
  color: black;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
}

.offcanvas .nav-link:hover {
  color: var(--pink);
  /* border-bottom: 1px solid var(--accent-yellow); */
  transition: 0.5s;
}

.offcanvas .nav-link.active {
  color: var(--pink);
  /* border-bottom: 1px solid var(--accent-yellow); */
  transition: 0.5s;
}

.offcanvas.nav-item {
  margin-right: 10px;
      padding: 10px 15px;
    font-size: 16px;
}
.offcanvas .dropdown-menu.show {
    display: block;
}

/* header end */
/* home banner start */

#home-banner .home-banner-1 {
  display: block;
}


.home-banner-2 {
  display: none;
}

#home-banner {
  position: relative;
}

.home-banner .carousel-inner .carousel-caption {

  position: absolute;
  top: 40%;

  transform: translatey(-50%);
}

.home-banner .carousel-inner .carousel-caption p {
  font-size: 60px;
  color: var(--pink);
  font-weight: bold;
  text-shadow: 1px 1px 1px rgb(122 53 97 / 84%);
  font-family: "Nunito Sans", sans-serif;
  ;
  /* text-shadow: 0 5px rgba(128, 128, 128, 0.295); */
  animation: shadow-ani 0.3s ease-in infinite alternate;
  line-height: normal;


}

@keyframes shadow-ani {
  0% {
    text-shadow: 3px 3px 0 rgba(165, 165, 165, 0.514);
  }

  100% {
    text-shadow: 7px 7px 0 rgba(161, 161, 161, 0.514);
  }

}

.home-banner .carousel-inner .carousel-caption h5 {
  color: black;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* .home-banner .carousel-inner .carousel-caption p span{
  color: #1a72dc;
} */

.home-banner .carousel-inner .second .carousel-caption p:nth-child(2) {
  margin-right: 30%;
  margin-left: 0;
  margin-bottom: 25px;
}


.home-banner .carousel-inner .third .carousel-caption p:nth-child(2) {
  margin-left: 30%;
}

.home-banner .carousel-inner .carousel-caption .calling {
  background-color: white;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-left: 10px;
  text-align: end;
}

.home-banner .carousel-inner .carousel-caption .calling a i {
  color: var(--primary);
}

.home-banner .main-btn {
  padding: 6px 10px 6px 30px;
}

.home-banner .sec-btn {
  padding: 8px 10px 6px 30px;
}

/* 
.home-banner .carousel-inner .carousel-caption h5 {
  color: var(--primary);
} */



@keyframes call-ani {
  from {
    height: 20%;
    width: 16px;
  }

  to {}
}



/* home-banner section end */

/* about-sec start */
#about-sec {
  background: linear-gradient(to bottom, white, #ffefe4);
}

#about-sec .left {
  position: relative;
}

#about-sec .img-box-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-sec .top-icon {
  margin: unset;
}

#about-sec .right .care-section {
  background-color: #eaf2ec;
  padding: 80px 0;
}

#about-sec .right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

#about-sec .right .section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

#about-sec .right .section-tag span {
  width: 40px;
  height: 2px;
  background: #2bb3b1;
  position: relative;
}

#about-sec .right .section-tag span::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: #2bb3b1;
  border-radius: 50%;
}

#about-sec .right .section-tag p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #666;
  margin: 0;
}

#about-sec .right .care-content .desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

#about-sec .right .care-content blockquote {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  border-left: 3px solid #2bb3b1;
  padding-left: 18px;
  margin-bottom: 30px;
}

#about-sec .right .doctor-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;

}

#about-sec .right .doctor-info .img-box {
  height: 60px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about-sec .right .doctor-info img {
  border-radius: 50%;
}

#about-sec .right .doctor-info small {
  font-size: 12px;
  color: #888;
}

#about-sec .right .doctor-info h6 {
  margin: 0;
  font-size: 16px;
}

#about-sec .right .signature img {
  margin-left: auto;
}

#about-sec .right .care-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #2bb3b1;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

#about-sec .right .care-btn span {
  background: #1a8f8c;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about-sec .right .care-btn:hover {
  background: #1a8f8c;
}

/* about-sec end */

/* services-sec start */
/* Product Section Start */

#services-sec {
  --primary: #ed145b;
  --orange: #ff8a00;
  background: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}

#product-sec .product-slider {
  width: 100%;
  padding: 15px 5px 35px;
}

#product-sec .swiper-slide {
  height: auto;
}

#product-sec .product-card {
  position: relative;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  /* min-height: 520px; */
  transition: all 0.35s ease;
}

#product-sec .product-card:hover,
#product-sec .product-card.active {
  border: 2px dashed #006b80;
  transition: 0.5s;
}

#product-sec .product-img-box {
  position: relative;
  /* height: 390px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fff;
  overflow: hidden;
}
#product-sec .product-img-box .first-img{
  display: block;
}
#product-sec .product-img-box .sec-img{
  display: none;
}
#product-sec .product-card:hover .product-img-box .first-img{
  display:none;
}

#product-sec .product-card:hover .product-img-box .sec-img{
  display:block;
}


#product-sec .product-img-box img {
  max-width: 100%;
  /* max-height: 280px; */
  object-fit: contain;
  transition: all 0.35s ease;
}

#product-sec .product-card:hover .product-img-box img {
  transform: scale(1.2);
}

#product-sec .discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 5;
}

#product-sec .product-icons {
  position: absolute;
  top: 40px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#product-sec .product-card:hover .product-icons,
#product-sec .product-card.active .product-icons {
  opacity: 1;
  visibility: visible;
}

#product-sec .product-icons a {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#product-sec .product-icons a:hover {
  background: #111;
}

#product-sec .product-buttons {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

#product-sec .product-card:hover .product-buttons,
#product-sec .product-card.active .product-buttons {
  opacity: 1;
  visibility: visible;
}

#product-sec .quick-btn,
#product-sec .cart-btn {
  background: var(--pink);
  color: #fff;
  min-width: 155px;
  padding: 12px 24px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

#product-sec .quick-btn:hover,
#product-sec .cart-btn:hover {
  background: #111;
  color: #fff;
}

#product-sec .product-content {
  padding: 0 10px 15px;
  text-align: center;
}

#product-sec .product-content h5 {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

#product-sec .product-content .price {
  color: #111;
  font-size: 15px;
  margin-bottom: 8px;
}

#product-sec .product-content del {
  color: var(--orange);
  margin-left: 7px;
}

#product-sec .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--yellow);
  font-size: 15px;
  justify-content: center;
}

#product-sec .rating span {
  color: #111;
  margin-left: 5px;
}

/* Swiper Buttons */

#product-sec .swiper-button-next,
#product-sec .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

#product-sec .swiper-button-next::after,
#product-sec .swiper-button-prev::after {
  display: none;
}

#product-sec .swiper-button-next i,
#product-sec .swiper-button-prev i {
  color: #fff;
  font-size: 16px;
}

#product-sec .swiper-button-next:hover,
#product-sec .swiper-button-prev:hover {
  background: #111;
}

#product-sec .swiper-button-prev {
  left: -5px;
}

#product-sec .swiper-button-next {
  right: -5px;
}

/* Responsive */




@media (max-width: 991px) {
  #product-sec .section-title {
    font-size: 32px;
  }


}

@media (max-width: 575px) {
  #product-sec {
    padding: 45px 0;
  }

  #product-sec .section-title {
    font-size: 26px;
  }

  #product-sec .swiper-button-next,
  #product-sec .swiper-button-prev {
    display: none;
  }
}

/* Product Section End */



/* footer start */
#footer {
  background: var(--green);
  background-size: cover;
  color: #ffffff;
  position: relative;
  margin-top: 215px;
}

#footer .cloude-box {
  position: absolute;
  top: -152px;
  left: 0;
  height: fit-content;
  z-index: -1;
}

/* text */
#footer .footer-logo {
  font-size: 32px;
  font-weight: 600;
}

#footer .footer-text {
  font-size: 15px;
  color: #cfdede;
  margin: 15px 0;
}

/* social */
#footer .footer-social a {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #0e2525;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: 0.3s;
}

#footer .footer-social a:hover {
  background: #2aa6a6;
  color: #fff;
}

/* titles */
#footer .footer-title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* lists */
#footer .footer-list,
#footer .footer-links {
  list-style: none;
  padding: 0;
}

#footer .footer-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: white;
}

#footer .footer-list li i {
  background-color: white;
  border-radius: 50%;
  color: var(--pink);
  height: 30px;
  width: 30px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-links li {
  margin-bottom: 10px;
}

#footer .footer-links a {
  color: white;
  text-decoration: none;
}

#footer .footer-links a:hover {
  color: var(--yellow);
}

/* newsletter */
#footer .newsletter input {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  margin-bottom: 12px;
}

#footer .newsletter button {
  width: 100%;
  background: #2aa6a6;
  border: none;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* bottom */
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 14px;
  padding-bottom: 0;
}

#footer .footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}


/* footer end */

/* This is the whatsapp section */
/* whatsapp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .1s all ease-in-out;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  box-shadow: 0 0 .75rem #18d26e;
  background-color: #18d26e;
  z-index: 23;
}

.whatsapp:hover {
  background-color: white;
  color: #18d26e;
}

.call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  transition: .1s all ease-in-out;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  background-color: #222222;
  box-shadow: 0 0 .5rem #eee;
  z-index: 23;
}

.call:hover {
  background-color: white;
  color: #222222;
}

/* End whatsapp section */

/* kids-gallery-sec start */
.kids-gallery-sec {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.gallery-head h6 {
  color: #f0145a;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.gallery-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.gallery-head p {
  max-width: 560px;
  margin: auto;
  color: #6d7088;
  font-size: 16px;
}

.gallery-big-card {
  position: relative;
  height: 610px;
  /* border: 6px solid #ff9815; */
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-big-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orange-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(255, 152, 21, 0.62); */
  z-index: 2;
}

.gallery-big-card img {
  transition: 0.5s ease;
}

.gallery-big-card:hover img,
.gallery-grid>div:hover img {
  transform: scale(1.08);
}

.eye-icon {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  gap: -2px;
}

.eye-icon span {
  width: 38px;
  height: 38px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-left: -5px;
}

.eye-icon span::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: #000;
  border-radius: 50%;
  left: 13px;
  top: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr;
  grid-template-rows: 280px 280px;
  gap: 22px;
  height: 610px;
}

.gallery-grid>div {
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid>div img {
  transition: 0.5s ease;
}

.gallery-wide-right {
  grid-column: span 1;
}

.gallery-wide-bottom {
  grid-column: span 2;
}

.gallery-small-bottom {
  grid-column: span 1;
}

/* Lightbox */
.gallery-lightbox .modal-content {
  background: transparent;
  border: none;
  position: relative;
}

.gallery-lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  right: -10px;
  top: -35px;
  background-color: #fff;
  opacity: 1;
  z-index: 10;
  border-radius: 50%;
  padding: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-head h2 {
    font-size: 34px;
  }

  .gallery-big-card {
    height: 430px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
    height: auto;
  }

  .gallery-wide-right,
  .gallery-wide-bottom {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .kids-gallery-sec {
    padding: 45px 0;
  }

  .gallery-head h2 {
    font-size: 28px;
  }

  .gallery-head p {
    font-size: 15px;
  }

  .gallery-big-card {
    height: 330px;
    border-radius: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .gallery-grid>div,
  .gallery-wide-right,
  .gallery-wide-bottom,
  .gallery-small-bottom {
    grid-column: span 1;
    height: 250px;
    border-radius: 20px;
  }

  .eye-icon span {
    width: 32px;
    height: 32px;
  }

  .eye-icon span::after {
    width: 10px;
    height: 10px;
    left: 11px;
    top: 11px;
  }
}

/* kids-gallery-sec end */


/* features-section start */
.features-section {
  padding: 45px 0;
  background: #ffffff;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 26px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 40px;
}

.feature-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  font-weight: 400;
}

/* Custom Brand Color Cards */
.card-pink {
  background: rgba(238, 53, 57, 0.12);
}

.card-green {
  background: rgba(8, 156, 99, 0.12);
}

.card-yellow {
  background: rgba(247, 148, 30, 0.14);
}

.card-light-green {
  background: rgba(8, 156, 99, 0.10);
}

.icon-pink {
  background: #ee3538e3;
}

.icon-green {
  background: #089c63e8;
  ;
}

.icon-yellow {
  background: #f7951eef;
}

/* Responsive */
@media (max-width: 1199px) {
  .feature-content h4 {
    font-size: 21px;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 30px 0;
  }

  .feature-card {
    padding: 20px;
    border-radius: 22px;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    gap: 15px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    font-size: 28px;
  }

  .feature-content h4 {
    font-size: 18px;
  }
}

/* features-section end */


/* faq-section start  */
.faq-section {
  background: #f7941ee3;
  position: relative;
  overflow: hidden;
  color: #fff;
}


.faq-section .heading {
  color: white;
}

.faq-section p {
  color: rgba(255, 255, 255, .85);
}

/* IMAGE */

.faq-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.faq-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  color: #3b426f;
  font-size: 24px;
}

/* FAQ */

.custom-faq .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  margin-bottom: 12px;
}

.custom-faq .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 28px 0;
  box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.custom-faq .accordion-body {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.8;
  padding: 0 0 25px;
}

/* REMOVE DEFAULT ICON */

.custom-faq .accordion-button::after {
  display: none;
}

/* CUSTOM + ICON */

.custom-faq .accordion-button::before {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 35px;
  font-weight: 300;
  transition: .3s;
}

/* CUSTOM - ICON */

.custom-faq .accordion-button:not(.collapsed)::before {
  content: "−";
}

/* CLOUD */

.faq-section::after {
  content: "";
  position: absolute;
  top: 60px;
  right: 120px;
  width: 180px;
  height: 80px;
  background: #fff;
  border-radius: 100px;
  opacity: 0;
}


/* faq-section end  */

/* why-choose start */
.why-choose .icon-box {
  height: auto;
  width: 200px;
  padding: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

.why-choose .box {
  background-color: white;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  padding: 20px
}

.why-choose .icon-box i {
  font-size: 60px;
  color: var(--yellow);
}

.why-choose h5 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: var(--green);
}

.why-choose .box p {
  margin-bottom: 5px;
}

.wave-line {
  display: block;
  width: 105px;
  height: 10px;
}

.why-choose .box:hover {
  background-color: var(--pink);
  transition: 0.5s;
  color: white;
}

.why-choose .box:hover h5 {
  color: white
}

.why-choose .box:hover i {
  color: white
}

/* why-choose end */

/* product-feature start */
.product-feature-section {
  background: linear-gradient(to bottom, #ffefe4, white);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.product-feature-section .top-icon {
  margin: unset;
}

.product-image-wrap {
  position: relative;
  text-align: center;
}

.main-product {
  max-height: 550px;
  position: relative;
  z-index: 2;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle.one {
  width: 350px;
  height: 350px;
  background: #ffe4ef;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.circle.two {
  width: 180px;
  height: 180px;
  background: #fff0c8;
  right: 40px;
  bottom: 30px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

.feature-item span {
  width: 36px;
  height: 36px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #ff6ba8;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.theme-btn:hover {
  color: #fff;
}

@media(max-width:991px) {

  .product-image-wrap {
    margin-top: 50px;
  }

  .main-product {
    max-height: 400px;
  }

}

/* product-feature end */

/* testimonial start */
#testimonial .card-body .img-box {
  border: 10px solid var(--yellow);
  width: fit-content;
  border-radius: 50%;
  overflow: hidden;
}

#testimonial .main-box {
  border-radius: 20px;
  background: #ffe6d4;
  padding: 20px;
}

#testimonial .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--yellow);
  font-size: 15px;
}

#testimonial .main-box h5 {
  font-weight: 700;

}

#testimonial .main-box h5 span {
  font-weight: normal;

}

#testimonial .swiper-button-next:after,
.swiper-button-prev:after {
  display: none !important;
}

#testimonial .swiper-button-prev {
  width: 80px;
}

#testimonial .swiper-button-next {
  width: 80px;
}

/* testimonial end */


/* call-us start */
#call-us {
  padding: 80px 0 50px 0;
}

.call-us {
  background: linear-gradient(135deg, #fff6f9, #fff9f0);
  border-radius: 40px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.call-us .cta-btns a {
  color: var(--yellow);
  font-size: 24px;
  font-weight: bold;
  z-index: 2;
}

.call-us .cta-btns a:hover {
  color: var(--yellow);
}

.call-us .cta-btns i {
  font-size: 30px;
}

.call-us .content {
  z-index: 5;
}

.call-us .content::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: #ffd9e9;
  border-radius: 50%;
  top: -120px;
  right: -80px;
  opacity: .6;
}

.call-us .content::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: #fff1c9;
  border-radius: 50%;
  bottom: -80px;
  left: -60px;

}

.top-icon img {
  max-width: 75px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}


/* preloader start */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 180px;
  position: relative;
  width: 180px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hide-preloader {
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  border: 8px solid rgb(8 1 1 / 18%);
  border-top-color: #089d61;
  border-right-color: #089d61;
  animation: rotate-loading 1.1s linear 0s infinite normal;
  transform-origin: 50% 50%;
  box-shadow: 0 0 36px rgb(255 255 255 / 98%);

}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
}

#loading-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.bg-section {
  width: 100%;
  max-width: 1820px;
  background-color: var(--yellow);
  border-radius: 10px;
  margin: 0 auto;
}

.bg-section .container-fluid {
  padding: 0;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* services-sec start */



/* ===========================
      Cradle Showcase
============================= */

.cradle-showcase {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  /* background:linear-gradient(to bottom,#fffdf8,#fff5ec); */
}

/* Clouds */

.cloud {
  position: absolute;
  width: 180px;
  height: 60px;
  background: #fff;
  border-radius: 100px;
  opacity: .6;
}

.cloud:before,
.cloud:after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud:before {
  width: 80px;
  height: 80px;
  left: 20px;
  top: -35px;
}

.cloud:after {
  width: 60px;
  height: 60px;
  right: 25px;
  top: -20px;
}

.cloud1 {
  top: 80px;
  left: 8%;
}

.cloud2 {
  top: 140px;
  right: 10%;
}

/* =======================
      Cradle
======================= */

.cradle {
  position: absolute;
  bottom: 35px;
  left: -250px;
  animation: moveCradle 18s linear infinite;
}

.cradle.cradle-2 {
  animation-delay: -6s;
}

.cradle.cradle-3 {
  animation-delay: -12s;
}


.cradle img {
  width: 200px;
  display: block;
}

/* Shadow */

.shadow {
  width: 260px;
  height: 18px;
  margin: auto;
  margin-top: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .12);
  filter: blur(10px);
}

/* =======================
      Ground
======================= */

.ground {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  background: linear-gradient(to bottom, #ffe9da, #f7bf97);
}

.ground:before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 40px;
  background: #fde6d4;
  border-radius: 50%;
}

/* =======================
      Animation
======================= */

@keyframes moveCradle {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100vw + 500px));
  }
}

.cradle img {
  width: 200px;
  animation: swing 2s ease-in-out infinite;
}

@keyframes swing {

  0% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }

}

/* contact-page start */
#contact-page form input {
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid gray;
}

#contact-page form input:focus-visible {
  border: 1px solid rgb(56, 56, 56) !important
}

#contact-page .box {
  border-radius: 20px;
  border: 2px solid rgb(233, 233, 233)
}

#contact-page .box:hover {
  border: 1px solid var(--green);
  transition: 0.5s;
}

#contact-page .box i {
  background-color: var(--primary);
  transition: 0.5s;
}

#contact-page .box .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pink);
  border-radius: 50%;
  color: white;
  height: 50px;
  width: 50px;
  margin: auto;
}

#contact-page .box a {
  color: black;
}

#contact-page .box:hover .icon-box {
  background-color: var(--green);
}

/* contact-page end */

/* breadcrumb start */
#breadcrumb {
  background-image: url('img/breadcrumb.png');
  background-position: top center;
  background-size: cover;
  padding: 200px 0 150px 0;
  position: relative;

}
.breadcrumb h2,
.breadcrumb a{
   z-index: 4 !important;
  }

#breadcrumb {
    position: relative;
    overflow: hidden;
}

#breadcrumb .img-box {
    position: absolute;
    left: 0;
    bottom:0%;
    display: flex;
    width: max-content;
    animation: bread-cloud 30s linear infinite;
    z-index:1;
}

#breadcrumb .img-box img {
    display: block;
    flex-shrink: 0;
    width: auto;
}

@keyframes bread-cloud {
    to {
        transform: translateX(0);
    }

    from {
        transform: translateX(-50%);
    }
}
/* .breadcrumb {
  justify-content: center;
} */

.breadcrumb-item.active {
  font-weight: 500;
  color: black !important;
  font-size: 20px;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: black !important;
}

.breadcrumb-item a {
  font-weight: 500;
  color: black;
  font-size: 20px;
  text-decoration: none;
  transition: 0.5s;
}

.breadcrumb-item a:hover {
  color: var(--pink);
}
.breadcrumb-item {
  z-index:5;
}

#breadcrumb h2 {
  font-weight: bold;
  color: var(--pink) !important;
  font-size: 60px;
  text-align: center;
  margin-bottom: 0;
}

/* breadcrumb end */

/* Mission & Vision start*/
#mission-vision .icon-box {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

#mission-vision .mission-card {
  transition: all 0.3s ease;
  border-radius: 20px;
}

#mission-vision .mission-card:hover {
  transform: translateY(-5px);
}

/* Mission & Vision end*/


/* stats-strip start */
.stats-strip {
  background: var(--green);
}

.stats-strip i {
  font-size: 60px;
}

.stats-strip .border-end {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.stats-strip small {
  font-size: 16px;
}

@media (max-width: 991px) {
  .stats-strip .border-end {
    border-right: 0 !important;
  }

  .stats-strip .col-6:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 575px) {
  .stats-strip h3 {
    font-size: 20px;
  }

  .stats-strip i {
    font-size: 28px !important;
  }

  .stats-strip small {
    font-size: 12px;
  }

  .stats-strip .gap-3 {
    gap: 10px !important;
  }
}

/* stats-strip end */




/* product-details start */

.product-details .product-zoom {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(207, 207, 207);
}

.product-details .product-info h3 {
    margin-bottom: 10px;
}

.product-details .product-zoom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
    transform-origin: center center;
}


.product-details .product-info {
    height: 100%;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
}



.slick-dots li button:before {
    font-size: 18px !important;
}

/* .img-card{
        width: 40%;
    } */

.img-card img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 4px;
    height: auto;
    object-fit: contain;
}

.small-Card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.small-Card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.small-Card img:hover {
    border-color: gray;
}

.small-Card img.active {
    border: 1px solid rgb(207, 207, 207)
}


.product-details .left {
    position: relative;
}
.product-details .product-info .mod span{
  color: var(--pink);
}

.product-details .icon-box i {
    font-size: 30px;
    padding: 20px;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
    margin-bottom: 15px;
    color: var(--primary);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffe1bd47;
    border-left: 4px solid var(--accent-yellow);
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    transition: 0.3s ease;
}

.product-features li:hover {
    transform: translateX(5px);
    background: var(--accent-yellow);
}

.product-features li i {
    width: 38px;
    height: 38px;
    background: var(--accent-yellow);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* product-details end */