* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-pink: #de968d;
  --primary-white: #ffffff;
  --main-black: #27252a;
  --body-color: #949197;
  --primary-black: #000000;
  --bg-black: #27252a;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope/static/Manrope-Regular.ttf"), format("truetype");
}
@font-face {
  font-family: "Marcellus";
  src: url("fonts/Marcellus/Marcellus-Regular.ttf"), format("truetype");
}
body {
  font-family: "Manrope";
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--body-color);
  letter-spacing: 1.8px;
}
a {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  display: block;
}
.nav-container {
  max-width: 1670px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.large_container {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col50 {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 15px;
}
.col25 {
  max-width: 25%;
  flex: 0 0 25%;
  padding: 0 15px;
}
.col20 {
  max-width: 20%;
  flex: 0 0 20%;
  padding: 0 15px;
}
.col33 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  padding: 0 15px;
}
.col40 {
  max-width: 40%;
  flex: 0 0 40%;
  padding: 0 15px;
}
.col60 {
  max-width: 60%;
  flex: 0 0 60%;
  padding: 0 15px;
}
.cmn-gap {
  padding: 100px 0;
}
.cmn-tag {
  font-family: "Manrope";
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--main-pink);
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.cmn-tag span {
  margin-right: 15px;
}
.cmn-btn {
  display: inline-block;
  font-size: 16px;
  color: var(--primary-white);
  text-transform: uppercase;
  padding: 23px 30px;
  background: var(--main-pink);
  border: 2px solid transparent;
  transition: all 0.5s ease-in;
}
.cmn-btn:hover {
  background-color: var(--primary-white);
  color: var(--main-pink);
  border: 2px solid var(--main-pink);
}
.cmn-btn:hover i {
  color: var(--main-pink);
}
.cmn-btn i {
  margin-left: 10px;
  transition: all 0.5s ease-in;
}
h2 {
  font-family: "Marcellus";
  font-size: 48px;
  line-height: 1.208;
  font-weight: 400;
  color: var(--main-black);
}
/* ///NAVBAR CSS START HERE//// */
.top-list {
  display: flex;
  justify-content: end;
}
.head-topbar {
  background: var(--bg-black);
  padding: 13px 0;
}
.top-list li {
  margin: 0 30px;
}
.top-list li:last-child {
  margin-right: 0;
}
.top-list li:first-child {
  margin-left: 0;
}
.top-list li i {
  color: var(--main-pink);
  margin-right: 16px;
}
.top-list li a {
  font-family: "Manrope";
  font-size: 14px;
  font-weight: 500;
  color: #dfdfdf;
  transition: all 0.3s ease-in;
}
.top-list li a:hover {
  color: var(--main-pink);
}
.brand a {
  max-width: 128px;
  display: block;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--primary-white);
  cursor: pointer;
}
.head-bottom {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(255, 255, 255, 0.2)
  );
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.nav-link li a {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-white);
  transition: all 0.3s ease-in;
}
.nav-link li a:hover {
  color: var(--main-pink);
}
.nav-link {
  display: flex;
}
.nav-link li {
  margin: 0 32px;
}
.nav-link li:first-child {
  margin-left: 0;
}
.nav-link li:last-child {
  margin-right: 0;
}
.nav-icon {
  display: flex;
}
.nav-icon a {
  color: var(--primary-white);
  transition: all 0.4s ease-in;
}
.nav-icon a:hover {
  color: var(--main-pink);
}
.icon {
  margin: 0 18px;
  color: var(--primary-white);
  font-size: 20px;
}
.icon:first-child {
  margin-left: 0;
}
.icon:last-child {
  margin-right: 0;
}
.head-bottom {
  position: absolute;
  z-index: 2;
  width: 100%;
}

/* ---- SEARCH POPUP ---- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 100;
}

.search-popup {
  width: 900px;
  max-width: 90%;
  background: #fff;
  padding: 80px 100px;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 101;
}

.search-popup.active,
.search-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  /* transform: translate(-50%, -50%) scale(1); */
}

.search-close {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 60px;
  color: var(--primary-black);
  cursor: pointer;
}

.search-title {
  text-align: center;
  margin-bottom: 35px;
  color: var(--main-pink);
  font-weight: 600;
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-input-box input {
  width: 100%;
  padding: 20px 30px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 17px;
}

.search-btn {
  padding: 20px 30px;
  border: none;
  background: var(--main-pink);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
}

.search-btn:hover {
  background: #333;
}
/* ////FOOTER CSS START HERE//// */
.footer {
  background: var(--bg-black);
}
.footer-top {
  padding: 95px 0 85px 0;
}
.footer-top .row {
  justify-content: center;
}
.space {
  margin-left: 60px;
}
.foot-brand a {
  max-width: 326px;
  display: block;
}
.footer-col p {
  font-family: "Manrope";
  font-size: 18px;
  letter-spacing: 1.8px;
  color: var(--body-color);
  max-width: 326px;
  margin: 25px 0;
}
.social-link {
  display: flex;
}
.social-link li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  transition: all 0.3s ease-in;
}
.social-link li a:hover {
  color: var(--main-pink);
}
.social-link li {
  margin: 0 12px;
}
.social-link li:first-child {
  margin-left: 0;
}
.social-link li:last-child {
  margin-right: 0;
}
.foot-cont {
  margin-bottom: 30px;
}
.foot-cont li {
  margin-bottom: 30px;
}
.foot-cont li:last-child {
  margin-bottom: 0;
}
.foot-cont li i {
  font-size: 20px;
  color: var(--main-pink);
  margin-right: 13px;
}
.foot-cont li a {
  font-size: 14px;
  color: #dfdfdf;
  font-weight: 500;
  transition: all 0.3s ease-in;
}
.foot-cont li a:hover {
  color: var(--main-pink);
}
.footer-header {
  font-family: "Marcellus";
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-white);
  margin-bottom: 50px;
}
.foot-link li i {
  font-size: 20px;
  color: var(--main-pink);
  margin-right: 15px;
}
.foot-link li a {
  font-family: "Manrope";
  font-size: 16px;
  color: var(--primary-white);
  transition: all 0.3s ease-in;
}
.foot-link li a:hover {
  color: var(--main-pink);
}
.foot-link li {
  margin-bottom: 28px;
}
.foot-link li:last-child {
  margin-bottom: 0;
}
.news {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-white);
}
.footer-col .news-para {
  max-width: 300px;
  margin-top: 35px;
  margin-bottom: 70px;
}
.form-field-full {
  width: 100%;
  margin-bottom: 20px;
}
input[type="email"] {
  width: 100%;
  padding: 24px 20px;
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
}
.form-btn {
  width: 100%;
  padding: 24px 20px;
  background: var(--main-pink);
  text-transform: uppercase;
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-white);
}
.footer-top {
  border-bottom: 1px solid #e8e8e8;
}
.footer-bottom {
  padding-top: 24px;
  padding-bottom: 29px;
}
.copy-right {
  font-size: 16px;
}
.foot-btm-link {
  display: flex;
  align-items: center;
}
.foot-btm-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copy-right a {
  color: var(--body-color);
  transition: all 0.4s ease-in;
}
.copy-right a:hover {
  color: var(--main-pink);
}
.foot-btm-link li a {
  color: var(--body-color);
  transition: all 0.4s ease-in;
  font-size: 16px;
}
.foot-btm-link li {
  margin-right: 80px;
}
.foot-btm-link li a:hover {
  color: var(--main-pink);
}
/* ////BANNER SECTION CSS//// */
.banner {
  position: relative;
  min-height: 900px;
}
.banner .swiper {
  width: 100%;
  min-height: 950px;
}
.banner .swiper .swiper-slide {
  position: relative;
}
.banner .swiper_content .slide_cont {
  position: absolute;
  top: 30%;
  left: 10%;
  padding: 50px 0;
}
.swiper_content figure img {
  min-height: 900px;
  object-fit: cover;
}
.slide_cont h1 {
  max-width: 950px;
  font-family: "Marcellus";
  font-size: 70px;
  font-weight: 400;
  color: var(--primary-white);
  line-height: 1.4;
  margin-bottom: 30px;
}
.slide_cont p {
  max-width: 846px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--primary-white);
  margin-bottom: 40px;
}
.slide_cont .cmn-tag {
  margin-bottom: 20px;
}
.banner-btn:hover {
  background-color: transparent;
}
.banner .swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}
.banner .swiper-button-next i,
.banner .swiper-button-prev i {
  color: var(--primary-white);
  font-size: 40px;
}
.banner .swiper-button-next i:hover {
  color: var(--main-pink);
}
.banner .swiper-button-prev i:hover {
  color: var(--main-pink);
}
/* ////ABOUT US SECTION CSS//// */
.about-img-col {
  display: flex;
}
.abt-left-img {
  position: relative;
}
.abt-right-img {
  position: relative;
  margin-top: 140px;
  margin-left: -35px;
  z-index: -1;
}
.abt-left-img::after {
  content: "";
  position: absolute;
  background: url(images/left-border.png);
  width: 322px;
  height: 425px;
  top: -15px;
  left: -31px;
  z-index: -1;
}
.abt-right-img::after {
  content: "";
  position: absolute;
  background: url(images/right-border.png);
  width: 347px;
  height: 501px;
  top: -33px;
  right: -31px;
  /* z-index: -1; */
}
.book-badge {
  display: flex;
  align-items: center;
  max-width: 290px;
  margin-left: auto;
  background: var(--bg-black);
  padding: 15px 0 15px 15px;
  border-right: 35px solid var(--main-pink);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-top: 10px;
}
.book {
  font-family: "Manrope";
  font-size: 14px;
  font-weight: 500;
  color: #dfdfdf;
}
.book-cont a {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-white);
}
.phone-icon i {
  font-size: 20px;
  color: var(--main-pink);
}
.phone-icon {
  padding: 20px;
  border-radius: 100px;
  background: var(--primary-white);
  margin-right: 28px;
}
.cmn-tag span {
  display: inline-block;
}
.about-content h2 {
  max-width: 583px;
  margin-top: 20px;
}
.about-content p {
  max-width: 583px;
  margin-top: 30px;
}
.about-content .about-list {
  display: flex;
  max-width: 583px;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 2px solid #dfdfdf;
  margin-top: 40px;
}
.about-list li span {
  display: inline-block;
  margin-right: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  color: var(--primary-black);
  font-weight: 500;
}
.about-content .cmn-btn i {
  font-size: 16px;
  margin-left: 10px;
}
.about-content .cmn-btn {
  margin-top: 40px;
}
.about .row {
  justify-content: center;
  align-items: center;
}
.about-content {
  margin-left: 40px;
}
/* ////TREATMENT SECTION CSS START HERE///// */
.treatment {
  padding: 150px 0 186px 0;
  background: url(images/treat-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.treatment::after {
  position: absolute;
  content: "";
  background: url(images/treatment-side-img.png);
  width: 373px;
  height: 402px;
  top: -218px;
  right: 65px;
}
.treatment-cont {
  text-align: center;
  margin-bottom: 63px;
}
.treatment-cont .cmn-tag {
  justify-content: center;
}
.treat-col {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 0.5s ease-in;
  width: 100%;
}
.treat-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  pointer-events: none;
  transition: all 0.5s ease-in;
}
.treat-col:hover::after {
  background-color: rgba(255, 255, 255, 0);
}
.treat-col:hover .treat-icon {
  color: var(--primary-white);
}
.treat-col:hover figcaption {
  color: var(--primary-white);
}
.treat-icon {
  position: absolute;
  transform: rotate(-45deg);
  color: var(--primary-black);
  right: 25px;
  top: 20px;
  z-index: 1;
}
.treat-col img {
  display: block;
  width: 100%;
}
.treat-cont {
  position: absolute;
  z-index: 1;
  top: 100px;
  left: 40px;
  display: block;
}
.treat-cont img {
  width: 65px;
  height: 73px;
}
.treat-cont figcaption {
  font-family: "Marcellus";
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-black);
  letter-spacing: 1.8px;
  margin-top: 22px;
}
/* /////Open Hours CSS Start here//// */
.opening-hours {
  position: relative;
  z-index: 1;
  margin-top: -130px;
}
.open-hours-inn {
  background: var(--primary-black);
  padding: 50px 30px;
}
.open-border {
  border-right: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.open-border:last-child {
  border-right: none;
}
.open-hour-col i {
  font-size: 40px;
  color: var(--main-pink);
}
.open-hour-col h3 {
  font-family: "Marcellus";
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--primary-white);
  margin-top: 17px;
}
.open-hour-col h4 {
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.8px;
  color: var(--primary-white);
  margin-bottom: 16px;
}
.open-hour-col p {
  color: var(--main-pink);
}
/* ///////WE DO Section CSS Start here//// */
.we-do {
  padding: 120px 0;
}
.we-do .row {
  align-items: center;
}
.do-cont h2 {
  max-width: 586px;
}
.video-section {
  width: 100%;
  text-align: right;
}
.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -55%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease-in;
}

.play-btn span {
  font-size: 32px;
  color: #444;
}
.faq-play-btn {
  top: 50%;
  left: 68%;
  transform: translate(-50%, -68%);
}
/* Hover Effect */
.video-wrapper:hover .play-btn {
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}
/* ////Automated Slide Marquee section css ///// */
.service-marquee {
  width: 100%;
  overflow: hidden;
  /* padding: 40px 0; */
}
.myMarquee .swiper-slide {
  font-size: 85px;
  font-weight: 400;
  color: #7f7f7f;
  font-family: "Marcellus";
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
  width: auto;
}
/* /////SPECIAL TREATMENT SECTION CSS START HERE///// */
.special_treatment {
  padding: 130px 0 150px 0;
}
.special_treatment .row {
  justify-content: center;
  align-items: center;
}
.special-treat-cont {
  text-align: center;
  margin-bottom: 75px;
}
.special-treat-cont .cmn-tag {
  justify-content: center;
}
.special-spa {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.special-spa:last-child {
  margin-bottom: 0;
}
.spa-img img {
  width: 72px;
}
.spa-img {
  margin-right: 10px;
}
.spa-cont h4 {
  font-family: "Marcellus";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--primary-black);
  margin-bottom: 20px;
}
.spa-cont p {
  font-family: "Manrope";
  font-size: 16px;
  color: #949197;
  letter-spacing: 1.6px;
  max-width: 297px;
}
.spa-girl img {
  width: 100%;
  padding: 20px;
  border: 6px solid var(--main-pink);
  border-radius: 300px;
}
.spa-girl {
  position: relative;
}
.spa-girl::before {
  content: "";
  position: absolute;
  background: url(images/leaf1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 210px;
  height: 373px;
  top: -65px;
  right: -42px;
  z-index: -1;
  animation: leafUp 4s ease-in-out infinite;
}
.spa-girl::after {
  content: "";
  position: absolute;
  background: url(images/leaf2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 373px;
  bottom: -147px;
  left: -73px;
  z-index: -1;
  animation: leafDown 4s ease-in-out infinite;
}

/* Top leaf goes slightly UP */
@keyframes leafUp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); /* moves UP */
  }
  100% {
    transform: translateY(0px);
  }
}

/* Bottom leaf goes slightly DOWN */
@keyframes leafDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px); /* moves DOWN */
  }
  100% {
    transform: translateY(0px);
  }
}
/* ///////WORK SECTION CSS START HERE/////// */
.work {
  padding-bottom: 115px;
}
.work-main {
  border: 2px solid var(--main-pink);
  padding: 20px;
}
.work-inn {
  background: url(images/works-main-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 878px;
}
.work-inn-heading {
  text-align: center;
  padding-top: 84px;
}
.work-inn-heading .cmn-tag {
  justify-content: center;
}
.work-row {
  max-width: 1090px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 140px;
}
.work-col {
  text-align: center;
}
.work-cont {
  margin-top: 30px;
}
.work-cont h4 {
  font-family: "Marcellus";
  font-size: 24px;
  letter-spacing: 2.4px;
  color: var(--primary-black);
  font-weight: 400;
  margin-bottom: 15px;
}
.counter-row {
  padding: 38px;
  background: var(--main-pink);
  margin-top: 58px;
}
.counter-in {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.counter-icon {
  margin-right: 35px;
}
.count-numbr {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 4.5px;
  color: var(--primary-white);
  position: relative;
}
.count-numbr::after {
  content: "+";
  position: absolute;
  right: -35px;
  top: -1px;
}
.count-title {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-white);
}
/* /////SERVICE SECTION CSS START//// */
.service {
  background: url(images/service-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 0 65px 0;
}
.service-cont h2 {
  color: var(--primary-white);
}
.service-cont {
  margin-bottom: 65px;
}
.service-gal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-box {
  width: 230px;
  min-height: 516px;
  margin: 0 5px;
  background: url(images/SERVICE.png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:nth-child(1) {
  /* width: 230px; */
  /* min-height: 516px;
  margin: 0 5px; */
  background: url(images/SERVICE\ \(1\).png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:nth-child(2) {
  /* width: 230px; */
  /* min-height: 516px;
  margin: 0 5px; */
  background: url(images/SERVICE\ \(2\).png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:nth-child(1) {
  /* width: 230px; */
  /* min-height: 516px;
  margin: 0 5px; */
  background: url(images/SERVICE\ \(3\).png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:nth-child(4) {
  /* width: 230px;
  min-height: 516px;
  margin: 0 5px; */
  background: url(images/SERVICE\ \(1\).png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:nth-child(5) {
  /* width: 230px;
  min-height: 516px;
  margin: 0 5px; */
  background: url(images/SERVICE\ \(4\).png);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s;
}
.img-box:first-child {
  margin-left: 0;
}
.img-box:last-child {
  margin-right: 0;
}
.img-box h4 {
  font-family: "Marcellus";
  font-size: 20px;
  font-weight: 400;
  line-height: 3.66;
  color: var(--primary-white);
  text-align: center;
  position: absolute;
  bottom: 2px;
  left: 9px;
}
.img-box:hover {
  width: 550px;
  cursor: pointer;
}
.serve-btn {
  text-align: center;
  margin-top: 55px;
}
/* ///PRICING SECTION CSS START HERE///// */
.pricing {
  padding: 110px 0 65px 0;
  background: url(images/pricing-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pricing-heading {
  text-align: center;
  margin-bottom: 65px;
}
.pricing-heading .cmn-tag {
  justify-content: center;
}
.price-col {
  background: var(--primary-white);
  padding: 37px 39px;
  transition: all 0.3s ease-in;
}
.price-col-in {
  display: flex;
}
.price-img {
  position: relative;
  margin-right: 10px;
}
.price-img img {
  position: relative;
}
.price {
  width: 190px;
  background: rgba(222, 150, 141, 0.9);
  border-radius: 50px;
  text-align: center;
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--primary-white);
  position: absolute;
  top: 18px;
  left: 11px;
}
.price-cont h3 {
  font-family: "Marcellus";
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--main-pink);
  background: rgba(222, 150, 141, 0.1);
  padding: 5px;
}
.price-list {
  margin: 30px 0;
}
.price-list li {
  font-family: "Manrope";
  font-size: 14px;
  color: var(--primary-black);
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.price-list li:last-child {
  margin-bottom: 0px;
}
.price-list li span {
  font-size: 20px;
  color: var(--main-pink);
  margin-right: 5px;
}
.price_btn {
  padding: 15px 20px;
}
.pricing .price-col:hover {
  transform: translateY(-15px);
}
/* ////HOME CONTACT SECTION CSS START///// */
.contact {
  padding: 90px 0 130px 0;
  background: url(images/home-contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact .row {
  justify-content: center;
  align-items: center;
}
.home-contact-col .cmn-tag {
  color: var(--primary-white);
  margin-bottom: 30px;
}
.home-contact-col h2 {
  color: var(--primary-white);
  margin-bottom: 80px;
}
.cont-book_btn {
  background: var(--primary-black);
  margin-right: 15px;
}
.discover_btn {
  border: 2px solid var(--primary-white);
}
/* ////HOME LOGO SECTION START HERE/// */
.home-logo {
  padding: 50px 0 130px 0;
}
.home-logo .row {
  justify-content: center;
  align-items: center;
}
.home-logo figure {
  display: flex;
  justify-content: center;
}
.home-logo figure img {
  transition: all 0.3s ease-in;
}
.home-logo figure img:hover {
  transform: translateY(-15px);
}
/* ////BLOGS SECTION START HERE/// */
.blogs {
  padding-top: 130px;
  padding-bottom: 80px;
}
.blogs-heading {
  text-align: center;
  margin-bottom: 90px;
}
.blogs-heading .cmn-tag {
  justify-content: center;
}
.blog-card {
  position: relative;
  overflow: hidden;
  transition: all 500ms ease;
}
.blog-img {
  position: relative;
  overflow: hidden;
  background: var(--main-pink);
  transition: all 500ms ease;
}
.blog-img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.05, 1.05);
  opacity: 0.6;
}
.blog-time {
  display: flex;
  align-items: center;
}
.blog-cont {
  background: var(--primary-white);
  padding: 25px;
  max-width: 290px;
  margin-left: auto;
  margin-top: -58px;
  position: relative;
  z-index: 3;
}
.date {
  max-width: 70px;
  background: var(--main-pink);
  margin-right: 15px;
}
.date h3 {
  text-align: center;
  font-family: "Marcellus";
  font-size: 20px;
  color: var(--primary-white);
  font-weight: 400;
  line-height: 1.3;
}
.date h3 span {
  font-size: 36px;
}
.blog-admin ul li {
  font-family: "Manrope";
  font-size: 16px;
  color: var(--body-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-admin ul li:last-child {
  margin-bottom: 0;
}
.blog-admin ul li i {
  font-size: 20px;
  color: var(--main-pink);
  margin-right: 8px;
}
.blog-cont h4 {
  font-family: "Marcellus";
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-black);
  transition: all 0.3s ease-in;
  margin: 20px 0;
}
.blog-cont h4:hover {
  color: var(--main-pink);
  cursor: pointer;
}
.read-btn {
  font-family: "Manrope";
  color: var(--body-color);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in;
}
.read-btn:hover {
  color: var(--main-pink);
}
.read-btn i {
  margin-left: 12px;
}
.blogs .swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}
.blogs .swiper-button-next i,
.blogs .swiper-button-prev i {
  color: var(--main-black);
  font-size: 40px;
}
.blogs .swiper-button-next i:hover {
  color: var(--main-pink);
}
.blogs .swiper-button-prev i:hover {
  color: var(--main-pink);
}
/* ///FAQ SECTION CSS START//// */
.FAQ {
  padding: 75px 0;
  background: #fcf6f6;
}
.faq-head {
  margin-bottom: 45px;
}
.accordion-item {
  margin-bottom: 15px;
}
.accordion-header {
  width: 100%;
  background: var(--primary-white);
  color: var(--primary-black);
  padding: 20px 25px;
  border: none;
  text-align: left;
  font-family: "Marcellus";
  font-size: 20px;
  letter-spacing: 2%;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
}
.accordion-header.active {
  background: var(--primary-white);
  color: var(--main-pink);
}
.accordion-content {
  background: var(--primary-white);
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.accordion-content p {
  padding: 15px 0;
  font-size: 20px;
  font-family: "Manrope";
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.second-faq-img {
  text-align: right;
  margin-top: -250px;
  animation: upDown 3s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px); /* move up */
  }
  100% {
    transform: translateY(0px); /* move back down */
  }
}
/* ///SPECIALIST SECTION CSS START//// */
.specialist-col {
  margin-bottom: 10px;
}
.experienced-specialist {
  padding: 120px 0 90px 0;
}
.special-name {
  font-family: "Marcellus";
  font-size: 20px;
  color: var(--primary-white);
}
.specialist-cont p {
  font-family: "Marcellus";
  font-size: 16px;
  color: var(--primary-white);
}
.specialist-cont {
  padding: 25px 34px 30px;
  background: linear-gradient(
    to bottom,
    rgba(222, 150, 141, 0.6),
    rgba(0, 0, 0, 0.6)
  );
  width: 100%;
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
}
.specialist-col {
  position: relative;
}
.specialist-col img {
  width: 100%;
  min-height: 462px;
  object-fit: cover;
}
.specialist-content p {
  margin: 25px 0;
}
/* /
/
/
/////SERVICE PAGE CSS START HERE///
/
/
/ */
/* ///SERVICE BANNER SECTION CSS START HERE/// */
.service-banner {
  background: url(images/SERVICE\ HERO\ SEC.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 300px 0;
}
.cmn-ban-content {
  text-align: center;
}
.cmn-ban-content h1 {
  font-family: "Marcellus";
  font-size: 48px;
  font-weight: 400;
  color: var(--primary-white);
}
.cmn-ban-content p {
  font-family: "Manrope";
  font-size: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  margin-top: 20px;
}
.ban-brdcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ban-brdcrumbs li {
  font-family: "Manrope";
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}
.ban-brdcrumbs li a {
  color: rgba(255, 255, 255, 0.8);
}
.ban-brdcrumbs li a:hover {
  color: var(--main-pink);
}
/* ///SERVICE ISOTOPE SECTION CSS START HERE/// */
.isotope-heading{
  text-align: center;
  margin-bottom: 60px;
}
.isotope-heading .cmn-tag{
  justify-content: center;
}
.filter-buttons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;      
  gap: 25px;
  margin-bottom: 40px;
}
.filter-btn{
  padding: 10px 15px;
  background: transparent;
  border: none;
  text-transform: uppercase;
  color: var(--primary-black);
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope";
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover {
  color: var(--main-pink);
  transform: translateY(-3px);
}
.filter-btn.active{
  color: var(--main-pink);
  border-bottom: 2px solid var(--main-pink);
}
.gallery-box {
  background: var(--primary-white);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: 20px;
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.gallery-box:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(222, 150, 141, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-box:hover .overlay {
  opacity: 1;
}

.overlay-icon {
  color: var(--primary-white);
  font-size: 26px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.gallery-box:hover .overlay-icon {
  transform: translateY(0);
  opacity: 1;
}

/* ///SERVICE PRICING SECTION CSS START HERE/// */
.service-pricing {
  padding: 120px 0 150px 0;
  background: rgba(222, 150, 141, 0.4);
}
.serve-price-heading {
  text-align: center;
  margin-bottom: 80px;
}
.serve-price-heading .cmn-tag {
  justify-content: center;
}
.serve-btn .cmn-tag span {
  margin-right: 0px;
}
.serve-list-inn {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-white);
  margin-bottom: 20px;
}
/* .serve-pricelist-cont{
  margin-left: 25px;
} */
.serve-pricelist-cont h3 {
  font-family: "Marcellus";
  font-size: 30px;
  letter-spacing: 3px;
  font-weight: 400;
  color: var(--primary-black);
  margin-bottom: 5px;
}
.serve-pricelist-cont p {
  font-family: "Manrope";
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-black);
}
.serve-price {
  font-family: "Manrope";
  font-size: 24px;
  letter-spacing: 2.4px;
  color: var(--main-pink);
  text-align: center;
}
.serve-price span {
  font-family: "Marcellus";
  font-size: 40px;
  letter-spacing: 4px;
}

/* ///SERVICE ISOTOPE SECTION CSS START HERE/// */
.filter-group {
  text-align: center;
  margin-bottom: 20px;
}

.btn {
  background: #ddd;
  padding: 10px 20px;
  border: none;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover,
.btn.active {
  background: #333;
  color: #fff;
}

.grid-item {
  width: 300px;
  margin-bottom: 20px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.grid-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
/* ///COUPLE MASSAGE SECTION CSS START HERE/// */
.couple-massage {
  padding: 120px 0;
}
.couple-cont h2 {
  margin-top: 10px;
}
.couple-cont p {
  margin-top: 40px;
  margin-bottom: 60px;
}
/* ///Bridal MASSAGE SECTION CSS START HERE/// */
.bridal-massage {
  padding-bottom: 120px;
}
/* /
/
/
/////ABOUT PAGE CSS START HERE///
/
/
/ */
/* ///ABOUT BANNER SECTION CSS START HERE/// */
.about-banner {
  background: url(images/about-ban.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 300px 0;
}
/* ///COUNTER SECTION CSS START HERE/// */
.counter {
  background: var(--main-pink);
}
/* ///About HOME LOGO SECTION CSS START HERE/// */
.about-home-logo {
  padding: 80px 0;
}
/* ///ACHIEVEMENT SECTION CSS START HERE/// */
.achievement {
  padding: 120px 0 0 0;
}
.achieve-cont {
  text-align: center;
  margin-bottom: 75px;
}
.achieve-cont .cmn-tag {
  justify-content: center;
}
.achieve-cont h2 {
  margin-top: 35px;
  margin-bottom: 30px;
}
.achieve-cont p {
  max-width: 950px;
  margin: 0 auto;
}
/* ///STORY SECTION CSS START HERE/// */
.story {
  padding: 120px 0;
  background: url(images/story-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.story-cont p {
  max-width: 575px;
  margin-top: 40px;
  margin-bottom: 25px;
}
.story-img {
  margin-bottom: 50px;
}
.last {
  margin-bottom: 0;
}
.story-img {
  position: relative;
  overflow: hidden;
  background: var(--main-pink);
}
.story-img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.story-img:hover img {
  transform: scale(1.05, 1.05);
  opacity: 0.6;
}
.couple-img {
  position: relative;
  overflow: hidden;
}
.couple-img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.couple-img:hover img {
  transform: scale(1.05, 1.05);
}
/* ///COMPANY BENEFIT SECTION CSS START HERE/// */

/* /
/
/
/////CONTACT PAGE CSS START HERE///
/
/
/ */
/* ///CONTACT BANNER SECTION CSS START HERE/// */
.contact-banner {
  background: url(images/CONTACT\ HERO\ SEC.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 300px 0;
}
.cont-details-title {
  text-align: center;
  margin-bottom: 90px;
}
.cont-details-title .cmn-tag {
  justify-content: center;
}
.cont-details-in {
  text-align: center;
  background: rgba(222, 150, 141, 0.1);
  padding: 80px 50px 65px;
  transition: all 0.3s ease-in;
}
.cont-details-in:hover {
  transform: translateY(-10px);
  box-shadow: 0px 4px 20px 5px rgba(222, 150, 141, 0.6);
}
.cont-details-in i {
  font-size: 60px;
  color: var(--main-pink);
  margin-bottom: 30px;
}
.cont-details-in h4 {
  margin-bottom: 15px;
  font-family: "Manrope";
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.4px;
}
.cont-details-in a {
  color: var(--primary-black);
  transition: all 0.3s ease-in;
}
.cont-details-in:hover a {
  color: var(--main-pink);
}
.cont-details-in p {
  color: rgba(0, 0, 0, 0.6);
}
.cont-form {
  text-align: center;
  margin-bottom: 30px;
}
.cont-form .cmn-tag {
  justify-content: center;
}
.get-touch {
  padding-bottom: 120px;
}
.form-details {
  padding: 60px 50px 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.5);
  margin: 0 60px;
}
.form-details h3 {
  font-family: "Marcellus";
  font-size: 30px;
  letter-spacing: 3px;
  color: var(--main-pink);
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.submit-btn {
  background-color: var(--main-pink);
  color: var(--primary-white) !important;
  cursor: pointer;
}
.get-touch .row {
  justify-content: center;
  align-items: center;
}
/* /
/
/
/////BOOKING PAGE CSS START HERE///
/
/
/ */
.booking-banner {
  background: url(images/BOOKING\ HERO\ SEC.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 300px 0;
}
.book-appoint {
  padding: 90px 0 360px 0;
  background: url(images/book-appoint-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.book-appoint-hd .cmn-tag {
  color: var(--primary-white);
  justify-content: center;
}
.book-appoint-hd {
  text-align: center;
}
.book-appoint-hd h2 {
  color: var(--primary-white);
}
/* ////Booking FORM CSS START/// */
.book-form {
  padding-bottom: 100px;
}
.booking-container {
  /* width: 100%;
  max-width: 480px; */
  background: #fff;
  padding: 70px 50px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: -280px;
}
.booking-container h2 {
  margin: 50px 0;
}
/* Progress */
.progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.progress-step {
  width: 33%;
  padding: 10px;
  border-bottom: 9px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.8px;
  color: var(--primary-black);
}

.progress-step.active {
  border-color: var(--main-pink);
  color: var(--main-pink);
  font-weight: bold;
}

/* Slides */
.slide {
  display: none;
  animation-duration: 0.5s;
}

.slide.active {
  display: block;
}

/* Fade + Slide Animation */
.fade {
  animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form */
.form-group {
  margin-bottom: 35px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 15px;
  font-family: "Manrope";
  font-size: 18px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--body-color);
  font-size: 16px;
  letter-spacing: 1.6px;
  font-family: "Manrope";
  color: rgba(0, 0, 0, 0.2);
}

.payment-box label {
  display: block;
  padding: 8px 0;
}

/* Card Inputs */
.card-box {
  margin-top: 10px;
  padding: 15px;
  border-radius: 10px;
  background: #fafafa;
  display: none;
  border: 1px solid #ddd;
}

/* Buttons */
.next-btn,
.prev-btn {
  background: var(--main-pink);
  color: var(--primary-white);
  padding: 15px 55px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Manrope";
  letter-spacing: 1.8px;
}

.prev-btn {
  background: var(--body-color);
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

/* Success Checkmark */
.success-icon {
  margin: 40px auto 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--main-pink);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pop 0.6s ease;
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.checkmark {
  width: 30px;
  height: 15px;
  border-left: 4px solid var(--main-pink);
  border-bottom: 4px solid var(--main-pink);
  transform: rotate(-45deg);
  animation: drawCheck 0.6s ease;
}

@keyframes drawCheck {
  0% {
    height: 0;
    width: 0;
  }
  100% {
    height: 15px;
    width: 30px;
  }
}
/* /
/ */
/* ////Booking WORK CSS START/// */
.book-work {
  padding: 120px 0;
  background: url(images/booking-appoint-work-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.book-work-hd {
  text-align: center;
  margin-bottom: 35px;
}
.book-work-hd .cmn-tag {
  justify-content: center;
}
.book-work .work-row {
  max-width: 100%;
  margin-top: 0;
  background: white;
  padding: 55px 90px 100px;
  position: relative;
}
.book-work .work-row::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 20%;
  height: 100%;
  border-top: 4px solid var(--main-pink);
  border-left: 4px solid var(--main-pink);
}
.book-work .work-row::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -25px;
  height: 100%;
  width: 20%;
  border-bottom: 4px solid var(--main-pink);
  border-right: 4px solid var(--main-pink);
}
.book-work .work-row .work-cont {
  max-width: 330px;
}
.flip-horizontal {
  transition: all 0.3s ease-in;
}
.work-col:hover .flip-horizontal {
  transform: scaleX(-1);
}
/* //
//
//
//....LOGIN PAGE CSS START HERE......//
//
//
// */
.log-main {
  background: url(images/LOG\ IN\ PAGE\ -\ img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 400px 0 200px;
}
.Log-in-main {
  padding: 60px 50px 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.5);
  margin: 0 60px;
  background: rgba(255, 255, 255, 0.2);
}
.Log-in-main .form-details {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.Log-in-main h2 {
  color: var(--primary-white);
}
.forgot-pass {
  text-align: right;
  margin-bottom: 25px;
}
.forgot-pass a {
  color: var(--primary-white);
  transition: all 0.3s ease-in;
}
.forgot-pass a:hover {
  color: var(--main-pink);
  text-decoration: underline;
}
.google-sign {
  text-align: center;
  color: var(--primary-white);
  display: flex;
  align-self: center;
  justify-content: center;
  transition: all 0.3s ease-in;
}
.google-sign a {
  color: var(--primary-white);
  transition: all 0.3s ease-in;
  margin-left: 5px;
}
.google-sign a:hover {
  color: var(--main-pink);
  text-decoration: underline;
}
.google-sign span {
  display: inline-block;
}
/* //
//
//
//////RESPONSIVE START HERE/////
//
//
// */
@media (max-width: 1439px) {
  .footer-top {
    padding: 70px 0 60px 0;
  }

  .footer-header {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .footer-col p {
    font-size: 16px;
  }

  .space {
    margin-left: 40px;
  }
  .banner {
    min-height: 750px;
  }
  .banner .swiper {
    min-height: 800px;
  }
  .swiper_content figure img {
    min-height: 800px;
  }
  .slide_cont h1 {
    font-size: 58px;
    max-width: 820px;
  }
  .slide_cont p {
    font-size: 18px;
    max-width: 700px;
  }
  h2 {
    font-size: 42px;
    text-align: center;
  }

  .about-content h2 {
    max-width: 520px;
  }

  .about-content p,
  .about-list {
    max-width: 520px;
  }

  .abt-right-img {
    margin-top: 100px;
    margin-left: -20px;
  }

  .abt-left-img::after {
    width: 260px;
    height: 360px;
  }

  .abt-right-img::after {
    width: 300px;
    height: 440px;
  }
  .treatment {
    padding: 120px 0 150px;
  }

  .treatment::after {
    transform: scale(0.9);
    right: 20px;
    top: -180px;
  }

  .treat-cont {
    top: 80px;
    left: 30px;
  }
  .open-hour-col h3 {
    font-size: 26px;
  }
  .myMarquee .swiper-slide {
    font-size: 75px;
    gap: 20px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 55px;
  }
  .special_treatment {
    padding: 110px 0 130px;
  }
  .special-spa {
    margin-bottom: 60px;
  }
  .spa-cont h4 {
    font-size: 18px;
  }
  .spa-cont p {
    font-size: 15px;
  }
  .spa-img img {
    width: 65px;
  }
  .work {
    padding-bottom: 90px;
  }
  .work-row {
    margin-top: 110px;
  }
  .work-cont h4 {
    font-size: 22px;
  }
  .img-box {
    width: 200px;
    min-height: 480px;
  }
  .img-box:hover {
    width: 420px;
  }
  .price-col {
    padding: 30px;
  }
  .price {
    width: 170px;
    font-size: 18px;
  }
  .price-cont h3 {
    font-size: 18px;
  }
  .experienced-specialist {
    padding: 100px 0 70px;
  }

  .special-name {
    font-size: 18px;
  }

  .specialist-cont p {
    font-size: 15px;
  }

  .specialist-cont {
    padding: 20px 25px;
  }

  .specialist-col img {
    min-height: 420px;
  }
  .accordion-header {
    font-size: 18px;
    padding: 18px 22px;
  }
  .accordion-content p {
    font-size: 18px;
  }

  .second-faq-img {
    margin-top: -200px;
  }
  .home-logo {
    padding: 40px 0 110px 0;
  }
  .contact {
    padding: 80px 0 110px 0;
  }

  .home-contact-col h2 {
    font-size: 42px;
    margin-bottom: 60px;
  }
  .service-banner {
    padding: 250px 0;
    background-position: center;
  }

  .cmn-ban-content h1 {
    font-size: 42px;
  }
  .cmn-ban-content p {
    font-size: 26px;
  }
  .ban-brdcrumbs li {
    font-size: 18px;
  }
  .serve-pricelist-cont h3 {
    font-size: 28px;
  }
  .serve-pricelist-cont p {
    font-size: 16px;
  }
  .serve-price span {
    font-size: 36px;
  }
  .booking-container {
    padding: 60px 40px;
  }
  .book-work .work-row {
    padding: 50px 60px 80px;
  }
   .cont-details-in {
    padding: 70px 40px 60px;
  }

  .form-details {
    padding: 50px 40px;
    margin: 0 40px;
  }
   .story {
    padding: 100px 0;
  }

  .story-cont p {
    margin-top: 30px;
  }
}
@media (max-width: 1280px) {
  .experienced-specialist .col33 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .specialist-col img {
    min-height: 380px;
  }

  .specialist-content h2 {
    font-size: 35px;
  }
  .faq-head h2 {
    font-size: 36px;
  }

  .second-faq-img {
    margin-top: -180px;
  }

  .accordion-header {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .footer .col25 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 50px;
  }

  .space {
    margin-left: 0;
  }

  .footer-top {
    padding: 60px 0;
  }

  .footer-col p {
    max-width: 100%;
  }
  .banner {
    min-height: 650px;
  }
  .banner .swiper {
    min-height: 700px;
  }

  .swiper_content figure img {
    min-height: 800px;
  }

  .banner .swiper_content .slide_cont {
    top: 25%;
    left: 8%;
  }

  .slide_cont h1 {
    font-size: 48px;
    max-width: 650px;
  }

  .slide_cont p {
    font-size: 18px;
    max-width: 600px;
  }

  .cmn-tag {
    font-size: 18px;
    justify-content: center;
  }

  .cmn-btn {
    padding: 18px 25px;
    font-size: 15px;
  }
  .about .col50 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .about .row {
    flex-direction: column;
  }

  .about-img-col {
    justify-content: center;
    margin-bottom: 50px;
  }

  .about-content {
    margin-left: 0;
    text-align: center;
  }

  .about-content h2,
  .about-content p,
  .about-content .about-list {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .book-badge {
    max-width: 100%;
    margin-top: 0;
  }
  .about-list {
    justify-content: center;
    gap: 30px;
  }

  .abt-left-img {
    margin-right: 20px;
  }
  .abt-right-img {
    margin-top: 60px;
    margin-left: 0;
  }
  .treatment .col25 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }

  .treatment {
    padding: 100px 0 130px;
  }

  .treatment::after {
    display: none; /* decorative image removed for smaller screens */
  }

  .treat-cont {
    top: 70px;
    left: 30px;
  }

  .treatment-cont h2 {
    font-size: 42px;
  }
  .open-hours-inn {
    padding: 40px 20px;
  }
  .open-hour-col h4 {
    font-size: 16px;
  }
  .open-hour-col p {
    font-size: 16px;
  }
  .do-cont h2 {
    font-size: 40px;
  }
  .myMarquee .swiper-slide {
    font-size: 65px;
    gap: 18px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 50px;
  }
  .spa-girl img {
    padding: 15px;
  }
  .spa-girl::before {
    width: 180px;
    right: -20px;
  }
  .spa-girl::after {
    width: 260px;
    bottom: -120px;
  }
  .work-inn {
    min-height: 750px;
    background-size: cover;
  }

  .work-row {
    max-width: 900px;
    margin-top: 100px;
  }

  .work-cont h4 {
    font-size: 22px;
  }

  .count-numbr {
    font-size: 40px;
  }
  .service {
    padding: 90px 0 50px;
  }
  .service-gal {
    gap: 10px;
  }
  .img-box {
    width: 170px;
    min-height: 520px;
  }
  .img-box:hover {
    width: 350px;
  }
  .img-box h4 {
    font-size: 18px;
  }
  .pricing {
    padding: 90px 0 55px;
  }

  .price-col-in {
    flex-direction: column;
    text-align: center;
  }

  .price-img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .price {
    left: 50%;
    transform: translateX(-50%);
  }

  .price-list li {
    font-size: 13px;
  }
  .contact .col50 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .home-contact-col h2 {
    font-size: 38px;
  }

  .home-contact-btn {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .home-contact-img figure {
    max-width: 400px;
    margin: 40px auto 0;
  }
  .service-banner {
    padding: 220px 0;
  }
  .cmn-ban-content h1 {
    font-size: 38px;
  }
  .cmn-ban-content p {
    font-size: 24px;
  }
  .serve-list-inn {
    padding: 25px 30px;
  }
  .serve-pricelist-cont h3 {
    font-size: 26px;
  }
  .serve-price span {
    font-size: 34px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 34px;
  }
  .cont-details-in i {
    font-size: 50px;
  }

  .cont-details-in {
    padding: 60px 35px 55px;
  }

  .form-details {
    margin: 0 20px;
    padding: 45px 35px;
  }

  iframe {
    height: 650px !important;
  }
  .story {
    padding: 80px 0;
  }

  .story-img {
    margin-bottom: 40px;
  }

  .story-cont p {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .experienced-specialist {
    padding: 80px 0 60px;
  }

  .specialist-col img {
    min-height: 340px;
  }

  .specialist-cont {
    padding: 18px 22px;
  }

  .specialist-content h2 {
    font-size: 32px;
  }

  .specialist-content p {
    font-size: 16px;
  }
  .FAQ .col50 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .faq-head h2 {
    font-size: 32px;
  }

  .accordion-header {
    font-size: 17px;
    padding: 18px 20px;
  }

  .accordion-content p {
    font-size: 17px;
  }

  .second-faq-img {
    margin-top: -130px;
  }
  .home-logo .col20 {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .home-logo {
    padding: 40px 0 100px;
  }

  .home-logo figure img {
    max-width: 85%;
  }
}
@media (max-width: 991px) {
  /* Topbar center on mobile */
  .top-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Show menu icon */
  .menu-toggle {
    display: block;
    z-index: 9999;
  }

  /* Hide desktop menu */
  .nav-link {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(0, 0, 0, 0.95);
    padding-top: 120px;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
    transition: 0.4s ease;
  }

  /* Active mobile menu */
  .nav-link.active {
    left: 0;
  }

  .nav-link li {
    margin: 0;
  }

  .nav-link li a {
    font-size: 18px;
  }

  /* Hide right icons on mobile */
  .nav-icon {
    display: none;
  }
  .footer-top {
    padding: 50px 0;
  }

  .footer-header {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .footer-col .news-para {
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .foot-btm-cont {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .foot-btm-link {
    justify-content: center;
  }

  .foot-btm-link li {
    margin-right: 30px;
  }
  .banner {
    min-height: 550px;
  }
  .banner .swiper {
    min-height: 600px;
  }
  .swiper_content figure img {
    min-height: 700px;
  }

  .banner .swiper_content .slide_cont {
    top: 23%;
    left: 5%;
  }

  .slide_cont h1 {
    font-size: 40px;
    max-width: 500px;
  }

  .slide_cont p {
    font-size: 16px;
    max-width: 480px;
  }

  .cmn-btn {
    padding: 16px 22px;
    font-size: 14px;
  }

  .banner .swiper-button-next i,
  .banner .swiper-button-prev i {
    font-size: 32px;
  }
  h2 {
    font-size: 38px;
  }

  .cmn-gap {
    padding: 70px 0;
  }

  .book-badge {
    max-width: 100%;
    padding: 10px 0 10px 12px;
  }

  .phone-icon {
    padding: 15px;
    margin-right: 20px;
  }

  .abt-left-img::after,
  .abt-right-img::after {
    transform: scale(0.85);
  }
  .treatment {
    padding: 80px 0 100px;
  }

  .treat-cont img {
    width: 55px;
    height: 65px;
  }

  .treat-cont figcaption {
    font-size: 16px;
  }

  .treat-icon {
    right: 20px;
    top: 15px;
    font-size: 16px;
  }

  .treatment .col25 {
    margin-bottom: 25px;
  }

  .treat-cont {
    top: 60px;
    left: 25px;
  }
  /* Opening Hours */
  .opening-hours .col25 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 25px;
  }
  .open-border {
    border-right: none;
    border-bottom: 1px solid #ffffff40;
    padding-bottom: 20px;
  }
  .open-border:nth-child(3),
  .open-border:nth-child(4) {
    border-bottom: none;
  }

  /* We Do Section */
  .we-do .col50 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .do-cont h2 {
    margin: 30px auto 0;
  }
  .cmn-tag {
    justify-content: center;
  }
  .myMarquee .swiper-slide {
    font-size: 55px;
    gap: 16px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 45px;
  }
  .special_treatment .col33 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 50px;
  }
  .special_treatment {
    padding: 80px 0 110px;
  }
  .special-treat-cont h2 {
    font-size: 38px;
  }
  .spa-girl img {
    padding: 12px;
    border-width: 5px;
  }
  .spa-girl::before {
    width: 150px;
    top: -40px;
    right: -10px;
  }
  .spa-girl::after {
    width: 220px;
    bottom: -90px;
    left: -40px;
  }
  .special-spa {
    margin-bottom: 50px;
  }
  .work-inn-heading {
    padding-top: 60px;
  }

  .work-inn {
    min-height: unset;
    padding-bottom: 60px;
  }

  .work-row {
    flex-direction: column;
    gap: 50px;
    margin-top: 70px;
  }

  .work-col {
    max-width: 70%;
    margin: 0 auto;
  }

  .counter-row .row .col25 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .counter-in {
    justify-content: center;
    text-align: center;
  }

  .counter-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .counter-in {
    flex-direction: column;
  }
  .service-gal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .img-box {
    width: 45%;
    min-height: 350px;
    margin: 7px;
  }
  .img-box:hover {
    width: 60%;
  }
  .pricing .col33 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 25px;
  }

  .price-col {
    padding: 30px;
  }

  .price-cont h3 {
    font-size: 18px;
  }

  .price {
    width: 160px;
    font-size: 18px;
  }

  .pricing-heading h2 {
    font-size: 32px;
  }
  .experienced-specialist .col33 {
    max-width: 50%;
    flex: 0 0 50%;
    margin-bottom: 25px;
  }

  .specialist-content {
    margin-top: 20px;
  }

  .specialist-col img {
    min-height: 320px;
  }
  .FAQ .col50 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .FAQ {
    padding: 60px 0;
  }

  .faq-head {
    margin-bottom: 35px;
    text-align: center;
  }

  .second-faq-img {
    margin-top: 30px;
    text-align: center;
  }

  .faq-col figure img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: block;
  }
  .home-logo .col20 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    margin-bottom: 20px;
  }

  .home-logo figure img {
    max-width: 80%;
  }
  .contact {
    padding: 70px 0 90px;
  }

  .home-contact-col .cmn-tag {
    font-size: 18px;
  }

  .home-contact-col h2 {
    font-size: 32px;
    margin-bottom: 50px;
    line-height: 1.3;
  }

  .cmn-btn {
    padding: 18px 25px;
    font-size: 14px;
  }
  .service-banner {
    padding: 180px 0;
  }

  .cmn-ban-content h1 {
    font-size: 34px;
  }
  .cmn-ban-content p {
    font-size: 22px;
  }
  .ban-brdcrumbs li {
    font-size: 16px;
  }
  .couple-massage .col40,
  .couple-massage .col60 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .bridal-massage .col40,
  .bridal-massage .col60 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .couple-img figure img,
  .bridal-massage figure img {
    margin-top: 30px;
  }

  .serve-list-inn {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .serve-pricelist-cont h3 {
    font-size: 24px;
  }
  .serve-pricelist-cont p {
    font-size: 15px;
  }
  .serve-price {
    font-size: 20px;
  }
  .serve-price span {
    font-size: 32px;
  }
  .book-appoint {
    padding: 70px 0 280px 0;
  }

  .booking-container {
    margin-top: -230px;
    padding: 60px 35px;
  }

  .progress-step {
    font-size: 16px;
  }

  .work-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .work-col {
    margin-bottom: 40px;
  }

  .book-work .work-row::before,
  .book-work .work-row::after {
    display: none;
  }

  .book-work .work-row {
    padding: 50px 40px;
  }
  .get-touch .col50 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .cont-details .col33 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .cont-details-in {
    margin-bottom: 30px;
  }

  .get-touch {
    padding-bottom: 80px;
  }

  .form-details {
    margin: 40px 10px 0;
    padding: 40px 30px;
  }

  iframe {
    height: 500px !important;
  }
  .story .col50 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .story-cont {
    text-align: center;
    margin-bottom: 30px;
  }

  .story-cont p {
    margin-left: auto;
    margin-right: auto;
  }

  .story-img {
    margin-bottom: 35px;
  }
  .service-isotope .col33{
    max-width: 50%;
    flex: 0 0 50%;
  }
  .filter-btn {
    font-size: 15px;
    padding: 8px 15px;
  }

}

@media (max-width: 767px) {
  .footer .col25 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .foot-brand a {
    margin: 0 auto;
  }

  .social-link {
    justify-content: center;
  }

  .foot-cont li,
  .foot-link li {
    text-align: center;
  }

  .foot-cont li a span,
  .foot-link li a span {
    margin-right: 10px;
  }

  .footer-col p {
    margin-left: auto;
    margin-right: auto;
  }

  .foot-btm-link li {
    margin-right: 20px;
  }

  .footer-bottom {
    padding: 20px 0;
  }
  .banner {
    min-height: 500px;
  }

  .banner .swiper {
    min-height: 520px;
  }

  .swiper_content figure img {
    min-height: 500px;
  }

  .banner .swiper_content .slide_cont {
    top: 18%;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .slide_cont h1 {
    font-size: 34px;
    max-width: 90%;
    margin: 0 auto 20px auto;
  }

  .slide_cont p {
    font-size: 16px;
    max-width: 85%;
    margin: 0 auto 30px auto;
  }

  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    top: 90%;
  }

  .banner .swiper-button-next {
    right: 20px;
  }
  .banner .swiper-button-prev {
    left: 20px;
  }
  .about-img-col {
    flex-direction: column;
    align-items: center;
  }

  .abt-right-img {
    margin-top: 40px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-list {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border: none;
    text-align: center;
  }
  .treatment-cont h2 {
    font-size: 36px;
  }

  .treat-cont {
    top: 50px;
    left: 20px;
  }

  .treat-cont img {
    width: 50px;
    height: 60px;
  }

  .treat-col {
    max-width: 100%;
  }

  .treatment .col25 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  h2 {
    font-size: 34px;
  }
  .opening-hours {
    margin-top: -80px;
  }
  .open-hour-col h3 {
    font-size: 24px;
  }
  .open-hour-col h4,
  .open-hour-col p {
    font-size: 15px;
  }
  .we-do {
    padding: 80px 0;
  }
  .myMarquee .swiper-slide {
    font-size: 45px;
    gap: 14px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 40px;
  }
  .special_treatment .col33 {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .spa-img {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .special-spa {
    flex-direction: column;
  }
  .spa-cont p {
    max-width: 100%;
  }
  .spa-girl img {
    width: 80%;
    border-radius: 200px;
  }
  .spa-girl::before,
  .spa-girl::after {
    display: none;
  }
  .work-main {
    padding: 15px;
  }

  .work-row {
    gap: 40px;
  }

  .work-col {
    max-width: 80%;
  }

  .counter-row {
    padding: 30px 20px;
  }

  .count-numbr {
    font-size: 35px;
  }
  .service {
    padding: 70px 0 40px;
  }
  .service-cont h2 {
    font-size: 28px;
    text-align: center;
  }
  .cmn-tag {
    justify-content: center;
  }
  .service-gal {
    flex-direction: column;
  }
  .img-box {
    width: 90%;
    min-height: 320px;
    margin: 10px 0;
  }
  .img-box:hover {
    width: 95%;
  }
  .img-box h4 {
    font-size: 18px;
    bottom: 10px;
  }
  .pricing .col33 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .price-col {
    padding: 25px 20px;
  }

  .price-img img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .price {
    width: 150px;
    font-size: 17px;
  }

  .price-list {
    margin: 20px 0;
  }

  .price-list li {
    font-size: 13px;
  }

  .pricing-heading h2 {
    font-size: 28px;
  }
  .experienced-specialist .col33 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .specialist-content h2 {
    font-size: 30px;
  }

  .specialist-content p {
    font-size: 15px;
  }

  .specialist-col img {
    min-height: 300px;
  }
  .faq-head h2 {
    font-size: 30px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 16px 18px;
  }

  .accordion-content p {
    font-size: 16px;
  }

  .second-faq-img {
    margin-top: 20px;
  }
  .home-logo {
    padding: 30px 0 90px;
  }

  .home-logo .col20 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }

  .home-logo figure img {
    max-width: 75%;
  }
  .contact {
    padding: 60px 0 70px;
    background-position: right;
  }

  .home-contact-col h2 {
    font-size: 28px;
  }

  .home-contact-img figure {
    max-width: 300px;
  }

  .cmn-tag span img {
    width: 35px;
  }
  .service-banner {
    padding: 150px 0;
  }

  .cmn-ban-content h1 {
    font-size: 30px;
  }
  .cmn-ban-content p {
    font-size: 20px;
  }

  .ban-brdcrumbs {
    flex-wrap: wrap;
  }
  .service-pricing {
    padding: 90px 0;
  }

  .serve-price-heading {
    margin-bottom: 50px;
  }

  .serve-list-inn {
    padding: 20px;
  }

  .serve-pricelist-cont h3 {
    font-size: 22px;
  }

  .couple-cont p,
  .bridal-massage p {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  .book-appoint {
    padding: 60px 0 250px 0;
  }

  .booking-container {
    margin-top: -200px;
    padding: 45px 30px;
  }

  .booking-container h2 {
    text-align: center;
  }

  .progress-step {
    font-size: 14px;
    padding: 8px 0;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-group input,
  .form-group select {
    padding: 16px;
    font-size: 15px;
  }

  .payment-box label {
    font-size: 16px;
  }

  .next-btn,
  .prev-btn {
    padding: 14px 35px;
    font-size: 16px;
  }

  .btn-group {
    gap: 20px;
  }

  /* WORK SECTION */
  .book-work .work-row {
    padding: 45px 30px;
  }
  .cont-details .col33 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .cont-details-in {
    padding: 50px 30px;
  }

  .cont-details-title h2 {
    text-align: center;
  }

  .form-details {
    margin: 30px 0;
    padding: 35px 25px;
  }

  .form-details h3 {
    font-size: 26px;
  }

  iframe {
    height: 420px !important;
  }
  .story {
    padding: 60px 0;
  }

  .story-cont p {
    margin-top: 20px;
  }

  .story-img {
    margin-bottom: 30px;
  }
  .filter-buttons {
    gap: 12px;
  }

  .filter-btn {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .footer-col p,
  .footer-col .news-para {
    font-size: 15px;
  }

  input[type="email"],
  .form-btn {
    padding: 18px 15px;
    font-size: 16px;
  }

  .footer-header {
    font-size: 20px;
  }

  .copy-right {
    font-size: 14px;
  }

  .foot-btm-link li a {
    font-size: 14px;
  }
  .banner {
    min-height: 430px;
  }

  .banner .swiper {
    min-height: 450px;
  }

  .slide_cont h1 {
    font-size: 28px;
  }

  .slide_cont p {
    font-size: 15px;
  }

  .cmn-tag {
    font-size: 16px;
  }

  .cmn-btn {
    padding: 14px 22px;
    font-size: 14px;
  }
  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cmn-gap {
    padding: 50px 0;
  }

  .book-badge {
    max-width: 100%;
    border-right: 25px solid var(--main-pink);
  }

  .phone-icon i {
    font-size: 18px;
  }

  .abt-left-img::after,
  .abt-right-img::after {
    display: none; /* hide decorative borders for small screens */
  }
  .treatment .col25 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .treatment-cont h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .treatment {
    padding: 60px 0 80px;
  }

  .treat-cont {
    top: 70px;
    left: 30px;
  }

  .treat-cont img {
    width: 50px;
    height: 60px;
  }
  .opening-hours .col25 {
    max-width: 100%;
    flex: 0 0 100%;
    border-bottom: 1px solid #ffffff40;
    padding: 20px 0;
  }
  .open-hours-inn {
    padding: 30px 20px;
  }
  .open-hour-col i {
    font-size: 32px;
  }
  .open-hour-col h3 {
    font-size: 20px;
  }
  .do-cont h2 {
    font-size: 28px;
    max-width: 100%;
    padding: 0 10px;
  }
  .myMarquee .swiper-slide {
    font-size: 32px;
    gap: 12px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 32px;
  }
  .special_treatment {
    padding: 60px 0 90px;
  }
  .special-treat-cont h2 {
    font-size: 32px;
  }
  .spa-img img {
    width: 55px;
  }
  .spa-cont h4 {
    font-size: 17px;
  }
  .spa-cont p {
    font-size: 14px;
  }
  .work-inn-heading h2 {
    font-size: 32px;
  }

  .work-cont h4 {
    font-size: 20px;
  }

  .work-cont p {
    font-size: 15px;
  }

  .counter-row .row .col25 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .counter-in {
    padding: 15px 0;
  }
  .img-box {
    width: 100%;
    min-height: 280px;
  }
  .img-box:hover {
    width: 100%;
  }
  .service-cont h2 {
    font-size: 26px;
  }
  .img-box h4 {
    font-size: 17px;
  }
  .pricing {
    padding: 70px 0 45px;
  }

  .pricing-heading h2 {
    font-size: 26px;
  }

  .price-col {
    padding: 20px;
  }

  .price-img img {
    width: 65%;
  }

  .price {
    width: 130px;
    font-size: 16px;
    top: 10px;
  }

  .price-list li {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .price_btn {
    padding: 12px 18px;
  }
  .experienced-specialist .col33 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .experienced-specialist {
    padding: 60px 0 40px;
  }

  .specialist-col img {
    min-height: 260px;
  }

  .specialist-cont {
    padding: 15px 18px;
  }

  .special-name {
    font-size: 18px;
  }

  .specialist-content h2 {
    font-size: 26px;
  }

  .specialist-content p {
    font-size: 14px;
  }

  .cmn-btn {
    padding: 18px 26px;
  }
  .FAQ {
    padding: 50px 0;
  }

  .faq-head h2 {
    font-size: 26px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 14px 16px;
  }

  .accordion-header i {
    font-size: 14px;
  }

  .accordion-content {
    padding: 0 18px;
  }

  .accordion-content p {
    font-size: 15px;
  }

  .faq-col figure img {
    max-width: 300px;
  }
  .home-logo .col20 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .home-logo figure img {
    max-width: 70%;
  }
  .home-contact-col .cmn-tag {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .home-contact-col h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .home-contact-btn {
    flex-direction: column;
    gap: 12px;
  }

  .cmn-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
  }

  .home-contact-img figure {
    max-width: 260px;
  }
  .service-banner {
    padding: 120px 0;
  }

  .cmn-ban-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .cmn-ban-content p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .ban-brdcrumbs li {
    font-size: 14px;
  }
  .serve-list-inn {
    padding: 18px;
  }

  .serve-pricelist-cont h3 {
    font-size: 20px;
  }
  .serve-pricelist-cont p {
    font-size: 14px;
  }
  .serve-price {
    font-size: 18px;
  }
  .serve-price span {
    font-size: 28px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 26px;
  }
  .book-appoint {
    padding: 50px 0 230px 0;
  }

  .book-appoint-hd h2 {
    font-size: 28px;
  }

  .booking-container {
    margin-top: -180px;
    padding: 35px 25px;
  }

  .progress {
    flex-direction: column;
    gap: 10px;
  }

  .progress-step {
    width: 100%;
    border-bottom-width: 6px;
  }

  .next-btn,
  .prev-btn {
    width: 100%;
    margin-top: 10px;
  }

  .btn-group {
    flex-direction: column;
  }

  /* Work section */
  .work-col {
    text-align: center;
  }

  .book-work .work-row {
    padding: 35px 25px;
  }
  .cont-details-in {
    padding: 40px 20px;
  }

  .cont-details-in i {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .cont-details-in h4 {
    font-size: 20px;
  }

  .form-details {
    padding: 30px 20px;
  }

  .form-details h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  input,
  select {
    font-size: 16px;
    padding: 14px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
  }

  iframe {
    height: 350px !important;
  }
  .story-cont p {
    font-size: 15px;
    margin-top: 15px;
  }

  .cmn-btn {
    padding: 16px 24px;
    font-size: 14px;
  }

  .cmn-tag {
    font-size: 18px;
  }

  .story-img {
    margin-bottom: 25px;
  }
  .service-isotope .col33{
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/* Extra small screen fixes */
@media (max-width: 480px) {
  .brand a {
    max-width: 100px;
  }

  .menu-toggle {
    font-size: 24px;
  }
  .foot-btm-link {
    flex-direction: column;
    gap: 10px;
  }

  .foot-btm-link li {
    margin-right: 0;
  }

  .footer-col .news-para {
    margin-bottom: 30px;
  }
  .slide_cont h1 {
    font-size: 24px;
  }

  .slide_cont p {
    font-size: 14px;
  }

  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    top: 88%;
  }

  .banner .swiper-button-next i,
  .banner .swiper-button-prev i {
    font-size: 26px;
  }
  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }

  .cmn-btn {
    padding: 15px 25px;
    font-size: 14px;
  }

  .book-badge {
    max-width: 100%;
  }
  .treatment-cont h2 {
    font-size: 28px;
  }

  .treat-cont {
    top: 55px;
    left: 20px;
  }

  .treat-cont figcaption {
    font-size: 15px;
  }

  .treat-icon {
    right: 15px;
    top: 12px;
    font-size: 14px;
  }
  .cmn-tag {
    font-size: 16px;
  }
  .cmn-tag img {
    width: 28px;
  }
  .myMarquee .swiper-slide {
    font-size: 28px;
    gap: 10px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 28px;
  }
  .special-treat-cont {
    margin-bottom: 50px;
  }
  .special-treat-cont h2 {
    font-size: 28px;
  }
  .spa-girl img {
    width: 90%;
  }
  .special-spa {
    margin-bottom: 40px;
  }
  .work-inn-heading h2 {
    font-size: 28px;
  }

  .work-cont h4 {
    font-size: 18px;
  }

  .count-numbr {
    font-size: 32px;
  }

  .counter-row {
    padding: 25px 15px;
  }
  .img-box {
    min-height: 240px;
  }
  .price-img img {
    width: 60%;
  }
  .price {
    width: 120px;
    font-size: 15px;
  }
  .price-cont h3 {
    font-size: 17px;
  }
  .specialist-col img {
    min-height: 230px;
  }

  .specialist-content h2 {
    font-size: 24px;
  }

  .specialist-content p {
    margin: 18px 0;
  }
  .faq-head h2 {
    font-size: 24px;
  }

  .accordion-header {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  .faq-col figure img {
    max-width: 260px;
  }
  .home-logo .col20 {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .home-logo {
    padding: 25px 0 70px;
  }

  .home-logo figure img {
    max-width: 65%;
  }
  .contact {
    padding: 50px 0 60px;
  }

  .home-contact-col h2 {
    font-size: 22px;
  }

  .cmn-tag span img {
    width: 28px;
  }
  .service-banner {
    padding: 100px 0;
    background-position: top;
  }

  .cmn-ban-content h1 {
    font-size: 22px;
  }
  .cmn-ban-content p {
    font-size: 16px;
  }
  .serve-list-inn {
    padding: 15px;
    gap: 15px;
  }

  .serve-pricelist-cont h3 {
    font-size: 18px;
  }

  .serve-price span {
    font-size: 26px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 24px;
  }

  .cmn-btn {
    padding: 18px 25px;
    font-size: 14px;
  }
  .booking-container {
    padding: 30px 20px;
  }

  .booking-container h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group select {
    padding: 14px;
    font-size: 14px;
  }

  .next-btn,
  .prev-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
  }

  .checkmark {
    width: 25px;
    height: 12px;
  }

  .book-work-hd h2 {
    font-size: 26px;
  }
  .cont-details-in {
    padding: 35px 18px;
  }

  .cont-details-in i {
    font-size: 40px;
  }

  .form-details {
    padding: 25px 15px;
    border-radius: 8px;
  }

  .form-details h3 {
    font-size: 22px;
  }

  input,
  select {
    font-size: 15px;
    padding: 12px;
  }

  iframe {
    height: 300px !important;
  }
  .story {
    padding: 45px 0;
  }

  .story-cont p {
    font-size: 14px;
  }

  .story-img {
    margin-bottom: 20px;
  }

  .cmn-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    width: 45%;      
    text-align: center;
    font-size: 13px;
    padding: 8px 10px;
  }
}
@media (max-width: 375px) {
  .footer-col p {
    font-size: 14px;
  }

  input[type="email"],
  .form-btn {
    font-size: 14px;
    padding: 16px 12px;
  }

  .footer-header {
    font-size: 18px;
  }

  .news {
    font-size: 18px;
  }
  .slide_cont h1 {
    font-size: 22px;
  }
  .slide_cont p {
    font-size: 13px;
  }
  .cmn-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .about-content h2 {
    font-size: 24px;
  }

  .cmn-tag {
    font-size: 16px;
  }

  .phone-icon {
    padding: 12px;
  }

  .book-badge {
    max-width: 100%;
  }
  .treatment-cont h2 {
    font-size: 24px;
  }

  .treat-cont img {
    width: 40px;
    height: 50px;
  }

  .treat-cont {
    top: 50px;
    left: 18px;
  }

  .treat-cont figcaption {
    font-size: 14px;
  }
  h2 {
    font-size: 26px;
  }
  .open-hour-col h4 {
    font-size: 14px;
  }
  .open-hour-col p {
    font-size: 14px;
  }
  .opening-hours {
    margin-top: -50px;
  }
  .myMarquee .swiper-slide {
    font-size: 24px;
    gap: 8px;
  }
  .myMarquee .swiper-slide .leaf {
    width: 24px;
  }
  .special_treatment {
    padding: 50px 0 70px;
  }
  .special-treat-cont h2 {
    font-size: 24px;
  }
  .spa-img img {
    width: 48px;
  }
  .spa-cont h4 {
    font-size: 16px;
  }
  .spa-cont p {
    font-size: 13px;
  }
  .work {
    padding-bottom: 60px;
  }

  .work-inn-heading h2 {
    font-size: 24px;
  }

  .work-col {
    max-width: 100%;
  }

  .work-cont p {
    font-size: 14px;
    line-height: 1.5;
  }

  .count-numbr {
    font-size: 28px;
  }

  .count-title {
    font-size: 14px;
  }
  .service {
    padding: 60px 0 30px;
  }
  .img-box {
    min-height: 210px;
  }
  .img-box h4 {
    font-size: 16px;
  }
  .pricing-heading h2 {
    font-size: 24px;
  }
  .price-img img {
    width: 55%;
  }
  .price {
    width: 110px;
    font-size: 14px;
  }
  .price-col {
    padding: 18px;
  }
  .price-list li {
    font-size: 11px;
  }
  .price_btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .specialist-col img {
    min-height: 200px;
  }

  .special-name {
    font-size: 16px;
  }

  .specialist-content h2 {
    font-size: 22px;
  }

  .cmn-btn {
    padding: 16px 22px;
  }
  .faq-head h2 {
    font-size: 22px;
  }

  .accordion-header {
    font-size: 13px;
    padding: 12px 14px;
  }

  .accordion-content p {
    font-size: 13px;
  }

  .faq-col figure img {
    max-width: 230px;
  }
  .home-logo .col20 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .home-logo figure img {
    max-width: 60%;
  }
  .home-contact-col h2 {
    font-size: 20px;
  }

  .cmn-btn {
    padding: 14px 16px;
    font-size: 13px;
  }
  .service-banner {
    padding: 90px 0;
  }

  .cmn-ban-content h1 {
    font-size: 20px;
  }
  .cmn-ban-content p {
    font-size: 14px;
  }

  .ban-brdcrumbs li {
    font-size: 12px;
  }
  .serve-pricelist-cont h3 {
    font-size: 17px;
  }
  .serve-pricelist-cont p {
    font-size: 13px;
  }

  .serve-price span {
    font-size: 24px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 22px;
  }
}
@media (max-width: 320px) {
  .slide_cont h1 {
    font-size: 20px;
  }
  .slide_cont p {
    font-size: 12px;
  }
  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
  }

  .cmn-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .book-badge {
    max-width: 100%;
  }
  .treatment-cont h2 {
    font-size: 22px;
  }

  .treat-cont {
    top: 45px;
    left: 15px;
  }

  .treat-icon {
    right: 12px;
    top: 10px;
  }

  .treat-cont figcaption {
    font-size: 13px;
  }
  .specialist-col img {
    min-height: 180px;
  }

  .specialist-content h2 {
    font-size: 20px;
  }

  .specialist-cont {
    padding: 12px 15px;
  }

  .special-name {
    font-size: 15px;
  }
  .faq-head h2 {
    font-size: 20px;
  }

  .accordion-header {
    font-size: 12px;
    padding: 10px 12px;
  }

  .accordion-content p {
    font-size: 12px;
  }

  .faq-col figure img {
    max-width: 200px;
  }
  .home-logo {
    padding: 20px 0 50px;
  }

  .home-logo figure img {
    max-width: 55%;
  }
  .home-contact-col h2 {
    font-size: 18px;
  }

  .cmn-tag {
    font-size: 14px;
  }

  .home-contact-img figure {
    max-width: 230px;
  }
  .service-banner {
    padding: 80px 0;
  }

  .cmn-ban-content h1 {
    font-size: 18px;
  }
  .cmn-ban-content p {
    font-size: 13px;
  }
  .serve-list-inn {
    padding: 12px;
  }

  .serve-pricelist-cont h3 {
    font-size: 16px;
  }

  .serve-price span {
    font-size: 22px;
  }

  .couple-cont h2,
  .bridal-massage h2 {
    font-size: 20px;
  }
}
