  :root {
      --dark-bg: #2d2727;
      --light-text: #fff;
      --muted-text: #bbb;
      --accent-pink: #d96ed8;
      --accent-pink-hover: #c455c3;
    }

 .bg-section-menu {
      background: var(--dark-bg);
      color: var(--light-text);
      transition: 0.5s ease-in-out; 
      height: 100%;
    }
/* Override Bootstrap Offcanvas for top-down animation */
#offcanvasMenu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
  transform: translateY(-100%); 
  transition: transform 0.3s ease-in-out;
}

/* When menu is open */
#offcanvasMenu.show {
  transform: translateY(0); /* slide down into view */
  transition: 0.3s ease-in-out;
}

.menu-section{
  background: var(--dark-bg);
  color: var(--light-text);
  transition: 0.5s ease-in-out; 
  height: 100%;
  padding-bottom: 50px;
}



.offcanvas a.nav-link{
  margin: 0;
}
       /* Header */
    .phone-text {
      font-size: 1rem;
      color: white;
      letter-spacing: 1px;
    }
    .phone-number {
      font-size: 1.7rem;
      font-weight: 300;
      color:#129e96;
    }
    .btn-blue {
      background-color:#0b5a89;
      color: white;
      border-radius: 50px;
      padding: 10px 35px;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 1px;
    }
    .btn-pink:hover {
      background-color: var(--accent-pink-hover);
      color: white;
    }

    /* Menu Boxes (Face / Body / Mind) */
    .menu-box {
     background: linear-gradient(315deg, hsla(176, 82%, 71%, 1) 0%, hsla(202, 85%, 29%, 1) 100%);
      height: 200px;
      position: relative;
      margin-bottom: 1rem;
      border-radius: 0px;
      overflow: hidden;
      transition: 0.3s ease;
      cursor: pointer;
      max-width: 300px;
      display: flex;
      align-items: center;
      padding-left: 14px;
    }
    .menu-box:hover, .menu-box.active {
     background: linear-gradient(315deg, hsla(176, 82%, 71%, 1) 0%, hsla(202, 85%, 29%, 1) 100%);
    }
    .menu-box span {
      position: absolute;
      bottom: 15px;
      right: 15px;
      font-size: 1.3rem;
      font-weight: 500;
      letter-spacing: 1px;
    }


.lineA {
    fill: none;
    stroke: #ecc6ec;
    stroke-width: 2px;
    stroke-dasharray: 973px;
    stroke-dashoffset: 973px;
    margin-top: -48px;
}

.border-line {
  width: 100%;
  margin-top: -56px;
}
    .nav-tabs .nav-link {
      color: var(--light-text);
      font-size: 1.5rem;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
      border: none;
    }
    .nav-tabs .nav-link.active {
      color: #129e96;
      border-bottom: 4px solid #129e96;
      background: transparent;
      z-index: 999;
    }

    /* Services List */
    .service-item {
      display: block;
      color: var(--muted-text);
      margin-bottom: 0.6rem;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 300;
      transition: all 0.2s;
    }
    .service-item:hover {
      color: var(--light-text);
      transform: translateX(5px);
    }

    .service-item i{
    font-size: 12px;
    position: relative;
    top: -3px;
    margin: 0 4px 0 10px;
}
    /* Service Sections (hidden by default) */
    .service-section {
      display: none;
    }
    .service-section.active {
      display: block;
    }

    /* Side Links */
    .side-links a {
      display: block;
      color: var(--muted-text);
      margin-bottom: 0.5rem;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 300;
      transition: 0.2s;
    }
    .side-links a:hover {
      color: var(--light-text);
    }

    /* Specials & Shop Boxes */
    .square-box {
     background: linear-gradient(315deg, hsla(176, 82%, 71%, 1) 0%, hsla(202, 85%, 29%, 1) 100%);
      width: 170px;
      height: 170px;
      border-radius: 0px;
      position: relative;
      transition: 0.3s ease;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .square-box:hover {
      transform: translateY(-4px);
    }
    .square-box p {
      position: absolute;
      bottom: 12px;
      left: 0;
      right: 0;
      text-align: center;
      color: #fff;
      font-weight: 500;
      font-size: 1rem;
      margin: 0;
    }
  .cross{
    margin-left: 10px;
  }
    /* Footer */
    .menu-footer {
      margin-top: 2rem;
      padding-top: 2rem;
      text-align: left;
      max-width: 250px;
    }

   .menu-footer{
  position: relative;
}
   .menu-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 2px;      /* height of the border area */
  background: #02d7c8;   /* color of the "border" */
}



    .menu-footer .social a {
      margin: 0 0.8rem;
      font-size: 1.8rem;
      color: var(--muted-text);
      transition: 0.3s;
      color: #02d7c8;
    }
    .menu-footer .social a:hover {
      color: white;
    }
    .nav-tabs{
      border: none;
      position: relative;
      z-index: 999;
    }
    /* Search functionality */
    .search-container {
      position: relative;
      display: flex;
      justify-content: flex-end;
      z-index: 999;
    }
    
    .search-box.expanded {
      max-width: 300px;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      border-radius: 50px;
    }
    
    .search-input {
      border: none;
      background: transparent;
      color: white;
      outline: none;
      width: 0;
      padding: 0;
      transition: all 0.3s ease;
    }
    
    .search-box.expanded .search-input {
      width: 180px;
      padding: 0 10px;
    }
    .search-box {
      margin-right: 10px;
    }
    .search-icon, .search-close {
      cursor: pointer;
      color: var(--muted-text);
      transition: color 0.3s ease;
      font-size: 24px;
    }
    
    .search-icon:hover, .search-close:hover {
      color: var(--accent-pink);
    }
    .fa-circle-xmark{
      color: #ffffff;
      font-size: 40px;
      margin-left: 15px;
    }
    .search-close {
      display: none;
      margin-left: 10px;
    }
    
    .search-box.expanded .search-close {
      display: block;
    }
    .btn-cta{
      font-size: 1.2rem;
      padding: 10px 35px;
      border-radius: 50px;
    }
    
    /* Placeholder for missing images */
    .img-placeholder {
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.8rem;
      text-align: center;
    }
    .logo-main{
      max-width: 250px;
    }
     .logo-main img{
      max-width: 100%;
      height: auto;
      object-fit: contain;
      
    }
    .border-sec{
      border-right: 1px solid #555;
      padding-right: 35px;
    }
.cross img{
  max-width: 60px;
}

    /* Custom slide-up animation */
    .offcanvas.slide-up {
      transition: transform 1000ms ease-in-out, opacity 1000ms ease-in-out;
      will-change: transform, opacity;
    }
    .offcanvas.slide-up.sliding-up {
      transform: translateY(-100%) !important;
      opacity: 0 !important;
    }


.header-service-menu li {
list-style: none;
padding: 5px 0;
}

.header-service-menu li a {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  color: white;
  text-decoration: none;
}
.header-service-menu li a:hover {
  color: #129e96;
 transform: translateY(2px);
}


.header-service-menu li a::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;

  font: var(--fa-font-solid); /* correct for v7 solid icons */
  content: "\f192";            /* dot-circle / record-circle icon */
  color: #129e96;
  font-size: 15px;

  position: absolute;
  left: 0;
  top: 2px;
  line-height: 1;
}











@media (min-width: 1700px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
  }

@media (max-width:1399px) {
.border-sec {
    padding-right: 10px ;
    margin-right: 10px !important;
}
.border-line {
    width: 100%;
    margin-top: -47px;
}
.phone-number {
    font-size: 1.4rem;
}
.btn-pink{
  font-size: 1rem;
}
.btn-cta {
    padding: 8px 35px;
}
}

@media (max-width:1199px) {
.display-mmo{
  display: none;
}
ul#menu-face-menu-list{
  padding-left: 5px;
}

ul#menu-body-menu-list{
  padding-left: 5px;
}

ul#menu-mind-menu-list{
  padding-left: 5px;
}



}



@media (max-width:767px) {
    .menu-box {
    margin: 0 5px;
    width: 33%;
    margin-bottom: 35px;
    }

  .menu-box img{
  max-width: 100%;
  width: 100%;
  object-fit: scale-down;
}
.cross img{
  max-width: 40px;
}
.header-service-menu li a {
    padding-left: 20px;
    font-size: 16px;
}
}

@media (max-width:576px) {

    .service-item {
      font-size: 1rem;

    }
    .side-links a{
      font-size: 1rem;

    }
    .cross {
    margin-left: 10px;
    max-width: 40px;
}

.menu-footer .social a{
  margin: 0 5px !important;
}

.search-button-mb input{
  padding: 10px 15px ;
  border-radius: 50px;
}

.logo-main {
    max-width: 210px;
}
.menu-box span {
    position: absolute;
    right: 14px;
    font-size: 1.1rem;
  }
}