body {
      width: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
    }
    .wrapper {
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .circle-container {
      width: 250px;
      height: 250px;
      position: absolute;
      left: -135px;
      bottom: 50px;
    }
    /* Outer item container */
    .box {
      width: 75px;   /* bigger container */
      height: 75px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      opacity:0;
      visibility:hidden;
     }
     .box svg, .box .box-text{
         transition: transform 0.2s ease, color 0.2s ease;
     }
     .box .box-text{
         opacity:0;
         visibility:hidden;
     }

     /*.box.prev-active svg{
         transform:rotate(315deg);
     }
     .box.next-active svg{
         transform: rotate(227deg);
     }*/
     .box.prev-active .box-text{
             transform: rotate(-45deg);
            left: 45px;
            top: -30px;
     }
     .box.next-active .box-text{
        transform: rotate(-135deg);
        top: -32px;
        left: -57px;
     }
     .box.open{
      opacity:1;
      visibility:visible;
     }
    /* Outer red circles */
    .red-box {
      background: #F61719;
      width: 60px;   /* increased size */
      height: 60px;
      border-radius: 50%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .red-box svg{
      width: 40px;
      height: 40px;
      transform: rotate(270deg);
    }
    svg.style-svg{
      width: 100px;
      height: 100px;
    }
    .box-text {
      color: #fff;
      font-size: 14px;   /* slightly bigger for readability */
      font-weight: 500;
      text-align: left;
      z-index: 2;
      white-space: nowrap;
      transform: rotate(-90deg);
      position: absolute;
      top: -47px;
        width: 62px;
        left: 0px;
    }
    .center-circle{
      position:relative;
    }
    .plus-minus{
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    }
    .explore-text{
      position: absolute;
      left: 170%;
      width: 115px;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      line-height: 18px;
    }
    .total-menu{
      width: 205px;
      height: 350px;
      position: fixed;
      left: 5px;
      bottom: -75px;
      z-index: 99;
    }
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3); /* semi-transparent black, adjust if needed */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 5; /* should be below your circular menu but above background */
}
.total-menu {
  z-index: 20; /* higher than overlay */
}
.box.current .box-text{
    font-weight:900;
}
.box.current .red-box{
      border: 1px solid #fff;
}
.page-overlay{
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
  background: #0000007d;
  opacity: 0;
  z-index: 9;
}
/* Ripple element */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.4);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
.next-nav,
.prev-nav {
  position: relative;
  z-index: 9999; /* always on top */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.next-nav svg,
.prev-nav svg {
  pointer-events: none; /* don't block clicks */
}

.next-nav span,
.prev-nav span {
  pointer-events: none; /* text won't block either */
}
.circle-container {
  touch-action: none;
}

.box,
.box-text {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Keyframes for ripple animation */
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.cta-holder .book-btn .cta-icon{
  display: none;
}
.prev-nav, .next-nav{
  transition: 0.5s ease all;
}
.final-cta, .book-cta-holder{
  position:fixed!important;
}
@media (max-width: 760px) {
  .total-menu{
        transform: scale(0.8);
        left: -4px;
        bottom: -95px;
  }
    .plus-minus {
        left: -20px;
        width: 50px;
        height: 87px;
}
.explore-text {
    left: 65px;
}
.cta-holder .book-btn .cta-icon{
  display: block;
}
}
@media (min-width: 700px) {
  /*body{
    width: 420px!important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #000;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .wrapper {
    width: 420px;
    left: 50%;
    transform: translateX(-50%);
  }
  .prev-nav, .next-nav{
    bottom:75px;
  }*/
}