/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

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

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

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

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




/*** Navbar ***/
.navbar.sticky-top {
    /* top: -100px; */
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #700b2d;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#700b2d;
}


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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

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


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color:#ce3c83;
    border: 10px solid #ce3c83;
}

/* @media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


 .carousel-inner img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        
        @media (max-width: 768px) {
            .carousel-inner img {
                height: 250px;
            }
        }

        @media (min-width: 768px) and (max-width: 992px) {
            .carousel-inner img {
                height: 400px;
            }
        }

        @media (min-width: 992px) {
            .carousel-inner img {
                height: 500px;
            }
        } */
.page-header {
    background:url(../img/subpage.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color:#700b2d;
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color:#700b2d;
}

.portfolio-inner .portfolio-text .btn:hover {
    background:#700b2d;
    color: var(--light);
}


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

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

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

.team-item .team-social .btn {
    background: var(--light);
    color:#700b2d;
}

.team-item .team-social .btn:hover {
    background:#700b2d;
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonials-wrap {
			padding: 40px 0;
      background-color: #700B2D;
		}
		.heading-section {
			text-align: center;
		}
		.sub-heading {
			font-family: 'Lato', sans-serif;
		    font-size: 12px;
		    display: block;
		    font-weight: 600;
		    color: #700B2D;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		}
		.heading-section h2 {
			font-size: 28px;
		    font-weight: 600;
		    padding-top: 10px;
		    padding-bottom: 15px;
		}
		.testimonial-box {
		    display: block;
		    position: relative;
		    padding: 30px 20px;
		    background: #fff;
		    border: 1px solid rgba(0,0,0,.03);
		    border-radius: 5px;
		    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
		}
		.user-img {
		    width: 80px;
		    height: 80px;
		    border-radius: 50%;
		    position: relative;
			min-width: 80px;
			background-size: 100%;
		}

		.carousel-testimonial .item {
			padding: 30px 10px;
		}
		.quotee {
			position: absolute;
		    top: -23px;
		    color: black;
		    font-size: 27px;
		}
		.name {
			margin-bottom: 0;
		    line-height: 14px;
		    font-size: 17px;
		    font-weight: 500;
		}
		.position {
			color: #adadad;
			font-size: 14px;
		}
		.carousel-testimonial .owl-nav {
			text-align: center;
		}
		.carousel-testimonial .owl-nav button.owl-next, 
		.carousel-testimonial .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.carousel-testimonial .owl-nav button {
			outline: none;
			padding: 0;
		}
		.carousel-testimonial .owl-nav button.owl-next span, 
		.carousel-testimonial .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.carousel-testimonial .owl-nav button.owl-next.disabled, 
		.carousel-testimonial .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}
    .custom-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top:10px;
}

.custom-prev,
.custom-next {
    background-color: white;
    color: #700B2D;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
   background-color: white;
    color: #700B2D;
}
@media (max-width: 767px) {
  .testimonial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-box .user-img {
    margin: 0 auto 15px;
  }

  .testimonial-box .text {
    padding-left: 0 !important;
  }

  .quotee {
    position: static;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .carousel-testimonial .item {
    padding: 10px 5px;
  }

  .heading-section h2 {
    font-size: 20px;
  }

  .custom-prev,
  .custom-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-box {
    padding: 20px 10px;
  }

  .name {
    font-size: 14px;
  }

  .quotee {
    font-size: 20px;
  }
}@media (max-width: 767px) {
  .carousel-testimonial .item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .testimonial-box {
    width: 100% !important;
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .testimonial-box:not(:first-child) {
    display: none !important;
  }
}

.owl-prev, .owl-next {
    font-size: 0 !important;  /* Hides the "prev" and "next" text */
}

.owl-nav button {
    font-size: 0 !important;  /* In case buttons show default text */
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-family: "Ubuntu", sans-serif;
}

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

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

.copyright {
    color: var(--light);
    background: #700b2d;
}

.copyright a {
    color: #FFFFFF;
}

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

.navbar {
    min-height: 100px !important;
}

.navbar-brand img {
    max-height: 80px;
    margin: 5px 0;
    margin-top: 40px;
}

.navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
}
  h2 span {
    color: #700b2d; /* Custom golden tone */
  }

  .btn-warning {
    background-color: #D4A017;
    border: none;
  }

  .btn-warning:hover {
    background-color: #c49114;
  }

  
    .form-container {
      max-width: 400px;
      margin: 0px auto;
      background: #1c1c1c;
      color: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .form-container h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .form-container p {
      font-style: italic;
      color: #ff4da6;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .form-container input[type="text"],
    .form-container input[type="email"],
    .form-container input[type="tel"] {
      width: 100%;
      padding: 12px 15px;
      margin: 10px 0;
      border: none;
      border-radius: 10px;
      font-size: 16px;
    }

    .form-container input[type="submit"] {
      background: #ff0080;
      color: white;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .form-container input[type="submit"]:hover {
      background: #e60073;
    }

    @media (max-width: 768px) {
      .form-container {
        margin: 20px;
        padding: 20px;
      }
    }

       .section-title {
      color: #700b2d;
      font-weight: 700;
      text-align: center;
      margin-top: 20px;
      font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3.9px;
    }

    .card h5 {
      color:#700b2d;
      font-weight: 600;
      font-size:19px;
    }

    .card p {
      font-size: 14px;
      color: #333;
    }

    .price-list {
      font-weight: 500;
      margin-top: 10px;
      line-height: 27px;
    }

    .btn-primary {
      background-color: #700b2d;
      color:white;
      border: none;
    }

    .btn-primary:hover {
      background-color: #700b2d;
            color:white;

    }

    .service-card img {
      /* height: 220px; */
      object-fit: cover;
    }

    .content{
            font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    color:#cd3e84;
    }
.cards{
        border-radius: 7px;
}
    strong{
        color:black;
        font-weight: 700;;
    }

    .we{
      background-color:#700B2D;
              background-image: url('../img/side2.png'); 
        background-position: top right; 
        background-repeat: no-repeat; 
        background-attachment:local; 
        width: 100%;
        margin-top: -50px;;
   
    }
@media only screen and (max-width: 767px) {
  .we {
    background-image: none !important;
        /* background-image: 50% auto; */

  }
  .sidex1{
        background-image: none !important;
        /* background-image: 50% auto; */

  }
  .ok{
         background-image: none !important;
        /* background-image: 50% auto; */

  }
  .sidex {
     background-image: none !important;
        /* background-image: 50% auto; */

  }
}
/* 
     .we{
      background-color:#F5F5F5;
           background-image: url('../img/side2.png'); 
        background-position: top right; 
        background-repeat: no-repeat; 
        background-attachment:local; 
        width: 100%;
        margin-top: -50px;;
    } */
  .appointment-section {
    background-image: url('../img/side4.png'); 
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
        background-attachment:fixed; 
        width: 100%;
        /* height: 100vh;  */
        /* margin-top: -50px;; */
        opacity: 1px;;

} .appointment-section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
      background-attachment: fixed;
    z-index: 1; */
  }

  .appointment-section .container {
    position: relative;
    z-index: 2;
  }

  .appointment-section .btn-white-outline {
    background-color: #fff;
    color: #a00074;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .appointment-section p,
  .appointment-section h2 {
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .appointment-section {
      padding: 60px 15px;
    }
  }

  

.section_all {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: #700b2d;
}
.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}
.text_custom {
    color: #00bd2a;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #00bd2a;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}

.img_about{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
    /* background: white; */
    /* padding: 10px; */
    max-width: 100%;
    border-right: 10px solid #ffffff;
     border-bottom: 10px solid #ffffff;
}


.img_about1{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
    /* background: white; */
    /* padding: 10px; */
    max-width: 100%;
    border-right: 10px solid #700B2D;
     border-bottom: 10px solid #700B2D;
}


/* 



 .pricing-sectionn {
      padding: 60px 0;
      background-color: #f9f9f9;
      text-align: center;
    }

    .cardd {
      border-radius: 20px;
      overflow: visible;
      border: none;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      position: relative;
      padding-top: 60px;
      background-color: white;
      border-bottom: 4px solid #700b2d;
    }

    .card-img-top {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .card-body {
      padding: 25px;
    }

    .price {
      font-size: 26px;
      font-weight: 700;
      color: #700b2d;
      margin-top: 10px;
    }

    .card-title {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .features {
      text-align: left;
      padding-left: 0;
      list-style: none;
      margin: 15px 0;
    }

    .features li {
      margin-bottom: 8px;
    }

    .purchase-btn {
      background-color: #e91e63;
      color: white;
      border: none;
      border-radius: 30px;
      padding: 8px 25px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .purchase-btn:hover {
      background-color: #700b2d;
    } */



 .pricing-sectionn {
      padding: 60px 0;
      background-color: #f9f9f9;
      text-align: center;
    }

    .cardd {
      border-radius: 20px;
      overflow: visible;
      border: none;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      position: relative;
      padding-top: 60px;
      background-color: white;
      border-bottom: 4px solid #700b2d;
    }

    .card-img-tops {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .card-body {
      padding: 25px;
    }

    .price {
      font-size: 20px;
      font-weight: 700;
      color: #700b2d;
      margin-top: 10px;
    }

    .card-titlee {
      font-size: 25px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .features {
      text-align: center;
      padding-left: 0;
      list-style: none;
      margin: 15px 0;
    }

    .features li {
      margin-bottom: 8px;
      color:black;
    }

    .purchase-btn {
      background-color: #700b2d;
      color: white;
      border: none;
      border-radius:7px;
      padding: 8px 25px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .purchase-btn:hover {
      background-color: #700b2d;
    }

    @media (max-width: 576px) {
.sec{
        margin-top: 10px;
}

}

.plan-duration {
  background-color:#700b2d; /* semi-transparent black */
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 10px auto;
  max-width: 90%;
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
}

.plan-duration strong {
  color: #ff69b4; /* pink highlight */
}

/* Optional: Add spacing between cards for mobile */
@media (max-width: 576px) {
  .card {
    margin-bottom: 20px;
  }
}


.health-benefits {
  padding: 80px 20px;
  background-color: #fdf6fb;
  text-align: center;
    background-image: url('img/spa_section.html');


}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.section-title span {
  color: #9b59b6;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.benefit-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 250px;
}

.benefit-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.benefit-box i.icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #9b59b6;
}

.benefit-box h5 {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #333;
}

.benefit-box p {
  font-size: 14px;
  color: #666;
}

.center-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #f1e2f8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .benefits-grid {
    flex-direction: column;
  }

  .center-image {
    margin: 30px 0;
  }
}
.float-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: #25d366; /* WhatsApp green as default */
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.float-icons a.call-float {
  background-color: #032b66; /* Call button blue */
}

.float-icons a:hover {
  transform: scale(1.1);
  background-color: #25d366;
}

.float-icons a.call-float:hover {
  background-color: #032b66;
}

.float-icons i {
  font-size: 24px;
}


.sideee{
         background-image: url('../img/bg-1.png'); 
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
        /* background-attachment:fixed;  */
        width: 100%;
        /* height: 100vh;  */
        margin-top: -50px;;
        opacity: 0.1px;;
}



.sidex{
 
      /* background-color:#700B2D; */
              background-image: url('../img/sidess1.png'); 
        background-position: top right; 
        background-repeat: no-repeat; 
        background-attachment:local; 
        width: 100%;
        /* margin-top: 10px; */
        margin-bottom:70px;
        
   
 
}



.sidex1{
    background-image: url('../img/sides3.png'); 
        background-position: top left; 
        background-repeat: no-repeat; 
        background-attachment:local; 
        width: 100%;
        margin-top: -70px;;
}

    .service-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #fefcf9;
    }

    .service-section h2 {
      /* font-family: 'Playfair Display', serif; */
      font-size: 2rem;
      margin-bottom: 50px;
      color: #2f2f2f;
    }

    .service-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .service-box {
      background: #ffffff;
      border-radius: 16px;
      padding: 30px 20px;
      max-width: 240px;
      flex: 1 1 200px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background-color: #fef4f1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrapper img {
      width: 60px;
      height: 60px;
    }

    .service-box h3 {
      /* font-family: 'Playfair Display', serif; */
      font-size: 1.2rem;
      margin: 10px 0;
      color: #700b2d;
    }

    .service-box p {
      font-size: 0.9rem;
      color: #777;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .service-section h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 480px) {
      .service-container {
        flex-direction: column;
        align-items: center;
      }
    }


    
.testimonial-item {
    background: #e9b13d;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background:#000000;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #000000 !important;
    box-shadow: 0 0 30px #DDDDDD;
}



.counter-section {
  background-image: url('../img/side2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 20px; */
  color: white;
  text-align: center;
  position: relative;
}

.counter-overlay {
  background-color: #700b2d; 
  background-image: url('../img/bgs-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 20px; */
  /* color: white; */
  text-align: center;
  position: relative;
  padding: 30px 10px;
  opacity: 0.1px;
          background-attachment:fixed; 

}

.counters {
display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 30px;
}

.counter-box {
  flex: 1 1 200px;
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
}

.counter-box p {
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive Image Handling */
@media only screen and (max-width: 767px) {
  .counter-section {
    background-image: none;
  }

  .counter-number {
    font-size: 32px;
  }

  .counter-box p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .counters {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    grid-template-rows: repeat(2, auto); /* 2 rows */
  }
}


.plus {
  font-size: 40px;
  font-weight: bold;
  margin-left: 2px;
}


.footers{

  background-image: url('../img/bgs-24.png'); 
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
  position: relative;
 border-top: 1px dashed #700B2D;
    width: 100%;
  opacity: 0.1px;

}

.secc{
      /* position: relative; */
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
    /* background-color: #700b2d; */
}


  .faq-section {
    padding: 60px 20px;
  }
  .faq-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .faq-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .accordion-button {
    font-weight: 600;
    color: #333;
  }
  .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #700B2D;
  }
  .container-fluids {
    position: relative;
    z-index: 1;
}

.container-fluids::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bubble.html");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* Only the background will be semi-transparent */
    z-index: -1; /* Put the background behind the content */
}


.we {
  position: relative;
  z-index: 1;
  width: 100%;
}


.we::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bubble3.html");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  opacity: 0.15;
  z-index: -1; 
}

  .service-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      gap: 30px;
    }

    .service-image {
      flex: 1 1 300px;
      max-width: 450px;
    }

    .service-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .service-content {
      flex: 1 1 300px;
      max-width: 500px;
      background-color: #fff7f5;
      padding: 25px;
      border-radius: 10px;
      border: 1px solid #d6b3a8;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .service-content h2 {
      font-size: 26px;
      margin-bottom: 15px;
      color: #803000;
    }

    .service-content p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .service-content ul {
      list-style-type: none;
      padding: 0;
      font-size: 16px;
    }

    .service-content li {
      margin: 8px 0;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .service-section {
        flex-direction: column;
        text-align: center;
      }

      .service-content {
        text-align: left;
      }
    }
.ok{
 position: relative;
z-index: 1;
width: 100%;
  margin-top:-48px;
background-image:url('../img/spa4.png'), url('../img/spass4.png') ;
  background-position: top left,  bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto; 
       
}


.ok::before{
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-16.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
  opacity: 0.15;
  z-index: -1; 
}
     .aroma-section {
      padding: 60px 0;
           
    }
    .aroma-image {
      width: 100%;
      border-radius: 10px;
           border-bottom: 10px solid #700B2D;
                border-left: 10px solid #700B2D;


    }

    .aroma-images {
      width: 100%;
      border-radius: 10px;
           border-bottom: 10px solid #700B2D;
                border-right: 10px solid #700B2D;


    }

    
    .aroma-content-box {
      background-color: #fff;
      /* border: 1px solid #d2b4a0; */
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    .aroma-title {
      color: #700b2d;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .aroma-description {
      color: #444;
      font-size: 16px;
      margin-bottom: 20px;
    }
    .aroma-price-list li {
      font-weight: 600;
      color: #2f2f2f;
      margin-bottom: 10px;
    }

    .contacts {
  background: #fff; /* optional: white background for better shadow effect */
  padding: 30px; /* optional: add some padding inside */
  border-radius: 8px; /* optional: rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* subtle shadow */
}


.okk{
  height:170px;
  border-radius: 10px;;
}

.oks{
    /* background-color: #700b2d;  */
  background-image: url('../img/bgx.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
  position: relative;

  opacity: 0.1px;
          background-attachment:fixed;
          margin-top:-50px; 
          /* margin-bottom:0px; */
}


.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); */
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    margin-top:40px;
}
    .okks{
  background-image: url('../img/bgs-26.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
          background-attachment:fixed;

  text-align: center;
  position: relative;
  margin-top:-50px;

       
}

.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.gallery-content {
    font-size: 0.8em;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 9999;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px rgba(225, 225, 225, 0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px;
    top: 45%;
    cursor: pointer;
    font-size: 24px;
    border-radius: 3px;
    transition: opacity 0.3s ease;
}
.lightbox-prev {
    left: 10px;
}
.lightbox-next {
    right: 10px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.5%;
        margin-bottom: 5px;
    }
    .lightbox-content {
        width: 90%;
        height: auto;
        margin-top: 10%;
    }
}
.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 9999; /* High value to stay on top */
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000; /* Higher than lightbox */
}

.lightbox-close:hover {
    opacity: 0.7;
}


/* General Styles */
.blog {
  padding: 20px;
}

.containerx {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-container {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s;
}

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

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-bodyy {
  padding: 15px;
}

.card-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}

.card-badge-blue {
  background-color: #3498db;
}

.card-badge-purple {
  background-color: #9b59b6;
}

.card-badge-pink {
  background-color: #e91e63;
}

.card-bodyy h1 {
  font-size: 18px;
  margin: 10px 0;
}

.card-subtitle {
  font-size: 14px;
  color: #555;
}

.card-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.card-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-info {
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media screen and (max-width: 480px) {
  .card-container {
    max-width: 100%;
  }
}
.card-body a{
  text-align: center;
}

.blog-section {
  background: #e9f1fa;
  padding: 40px 20px;
}

.blog-container {
  background: #fff;
  max-width: 1100px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog-container h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.blog-meta {
  font-size: 14px;
  color: #0073e6;
  margin-bottom: 20px;
}

.blog-container h2 {
  margin-top: 25px;
  font-size: 22px;
  color: #000;
}

.blog-container p {
  line-height: 1.6;
  margin-top: 10px;
}


.tooltip {
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  margin-right: 10px;
  color: #000;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

