@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


:root {
    --primary-color: #FF1DC2;
    --secondary-color: #940BFF;
    --color-3: #210043;
    --dark-color: #170035;
    --white: white;
    --grey-neutral: #7a7b7d;
    --transparent: #fff0;
    --off-white: #636363;
    --black: #0a0b0d;
    --body-color: #0b021b;
    --font-heading: "Manrope", sans-serif;
    --font-body: "Manrope", sans-serif;
    --font-size-body: 16px;
    --font-weight-heading: 600;
    --semi-bold: 500;
    --font-weight-body: 400;
    --line-height-body: 1.4;
}
body {
    background-color: var(--body-color);
    color: var(--white);
    font-family: var(--font-body);
    font-size:var(--font-size-body);
    line-height: var(--line-height-body);
    overflow-x: hidden;
}
h1,h2,h3,h4 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-heading);
    line-height: var(--line-height-body);
}
h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--semi-bold);
}p{
     margin:0;
     padding:0;
 }
a{
  text-decoration: none;
  color: var(--white);
}
a:hover{
  color: inherit;
}
section{
  padding: 80px 0;
  position:relative;
}
img {
    max-width: 100%;
    height:auto;
}
@media(min-width:1600px){
.container{
    max-width: 1500px;
  }
}
@media(min-width:1800px){
  .container{
    max-width: 1700px;
  }
}
/*****************scrollbar*********/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#FF1DC2, #940BFF, #210043);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#FF1DC2, #940BFF, #210043);
}
body::-webkit-scrollbar {
  transition: all 0.3s ease-in-out;
}
/*****************scrollbar*********/

/*****Cursor**********/

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  left: -10px;
  top: -10px;
}
@media(max-width:991px){
    .cursor-dot,
    .cursor-outline {
        display:none;
    }
    }
/*****Cursor**********/

/*********loader*****/
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* Or gradient if you want */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
/* From Uiverse.io by Pradeepsaranbishnoi */ 
/* The loader container */
.loader {
  width: 200px;
  height: 200px;
  perspective: 200px;
}


/* The dot */
.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: 100px;
  border: 40px outset var(--primary-color);
  transform-origin: 50% 50%;
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  background-color: transparent;
  animation: dot1 1000ms cubic-bezier(.49,.06,.43,.85) infinite;
}

.dot:nth-child(2) {
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  border-width: 30px;
  border-color: var(--secondary-color);
  animation-name: dot2;
  animation-delay: 75ms;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
}

.dot:nth-child(3) {
  width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-left: -80px;
  border-width: 20px;
  border-color: var(--color-3);
  animation-name: dot3;
  animation-delay: 150ms;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
}

@keyframes dot1 {
  0% {
    border-color: var(--primary-color);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color: #ff1ac2;
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color: var(--primary-color);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}

@keyframes dot2 {
  0% {
    border-color: var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.2);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color: var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color: var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.2);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}

@keyframes dot3 {
  0% {
    border-color:  var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }

  50% {
    border-color:  var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.8);
    transform: rotateX(20deg) rotateY(20deg) rotateZ(50deg) translateZ(0px);
  }

  100% {
    border-color:  var(--secondary-color);
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transform: rotateX(24deg) rotateY(20deg) rotateZ(0deg) translateZ(-25px);
  }
}

/********btn all***************/
.btn-primary1 {
    display: flex;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 40px;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(15deg,  #170035, #210043, #940BFF, #FF1DC2, #940BFF, #210043, #170035) no-repeat;
    background-size: 300%;
    color: #fff;
    border: none;
    background-position: left center;
    box-shadow: 0 2px 2px rgba(148, 11, 255, 0.5),   
    0 0px 2px rgba(148, 11, 255, 0.6),     
    0 0 0px rgba(148, 11, 255, 0.4);
    transition: background .8s ease;
    min-width: 160px;
    /* text-align: center; */
    justify-content: center;
    height: 50px;
    max-width: 180px;
    align-items: center;
}

.btn-primary1:hover {
  background-size: 320%;
  background-position: right center;
}

.btn-primary1:hover svg {
  fill: #fff;
}

.btn-primary1 svg {
  width: 23px;
  fill: #f09f33;
  transition: .3s ease;
}


.btn-2 {
  width: 165px;
  height: 62px;
  cursor: pointer;
  color: #fff;
  font-size: 17px;
  border-radius: 1rem;
  border: none;
  position: relative;
  background: #100720;
  transition: 0.1s;
}

.btn-2::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: radial-gradient( circle farthest-corner at 10% 20%,  var(--primary-color) 17.8%, var(--secondary-color) 100.2% );
  filter: blur(15px);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}

.btn-2:hover {
  transform: scale(0.9) rotate(3deg);
  background: radial-gradient( circle farthest-corner at 10% 20%,  var(--primary-color) 17.8%, var(--color-3) 100.2% );
  transition: 0.5s;
}


.btn-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-weight: bold;
  cursor: pointer;
  color: rgb(37, 37, 37);
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.btn-3:hover {
  background: rgb(193, 228, 248);
  color: rgb(33, 0, 85);
}

.btn-3:active {
  transform: scale(0.97);
}
.btn-4 {
  padding: 0.75em 2em;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 29, 194, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-4:hover::before {
  transform: scaleX(1);
}

.btn-4:hover {
  color: #fff;
  box-shadow: 0 10px 25px rgba(148, 11, 255, 0.4);
}
.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hoverEffect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(
    90deg,
    rgba(222, 0, 75, 1) 0%,
    rgba(191, 70, 255, 1) 49%,
    rgba(0, 212, 255, 1) 100%
  );
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 0.5;
}

.btn-3:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.btn-5 {
    border: none;
    padding: 12px 18px;
    height: 40px;
    min-width: fit-content;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #940BFF;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: block; */
    /* align-content: center; */
} .btn-5:hover {
        color: #940BFF;
        background: #fff;
    }
    /********btn all***************/

.footer-haut {
    color: #fff;
    position: relative;
    overflow: hidden;
    padding:80px 0;
    background: #000;
}
    .footer-haut * {
        position: relative;
        z-index: 1;
    }


.footer-logo{
    max-height:100px;
    margin-bottom:25px;
}

.footer-icon {
    color: #ccc;
    font-size: 1.1rem;
}

    .footer-icon:hover {
        color: #fff;
    }
.nav-bar-logo {
    object-fit: contain;
    width: 100px;
    height: auto;
    display: block;
}
.footer-inner {
    background: #000;
}

.jarallax-container {
    border-radius: 20px;
}


    /***********title & semi title************/
    .main-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #fff; /* neutral dark text */
        margin-bottom: 2rem;
        text-align: center;
    }

.highlight-word {
  background: linear-gradient(90deg,  #FF1DC2, #940BFF, #940BFF);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* animation: shimmer 3s infinite linear; */
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}


/* .main-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(135deg, #940BFF, #FF1DC2);
  border-radius: 2px;
  animation: pulseBar 2s infinite ease-in-out;
} */

@keyframes pulseBar {
  0%, 100% {
    transform: scaleX(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1.3);
    opacity: 1;
  }
}
.semi-title {
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  --border-right: 6px;
  --text-stroke-color: rgba(255,255,255,0.6);
  --animation-color: var(--secondary-color);
  --fs-size: 20px;
  width: max-content;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: var(--font-heading);
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
  margin-bottom: 15px;
}

.actual-text {
  display: inline-block;
}

.hover-text {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: width 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
  white-space: nowrap; /* Prevent line break */
}

.semi-title:hover .hover-text {
  width: 100%;
  filter: drop-shadow(20px 35px 50px var(--animation-color));
}


/*****************Header*********/
.new-header {
    margin-top: 0;
    transform: translateY(50px);
    z-index: 2;
    position: relative;
    margin-bottom: 50px;
}
.navbar {
    background-color: transparent;
    padding: 20px 20px;
    z-index: 11;
}

.navbar-nav .nav-link {
    color: white;
    margin-right: 25px;
    font-weight: 600;
    font-size: 20px;
}

  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }

  .btn-outline-light {
    border-radius: 25px;
    font-weight: bold;
  }

.custom-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #0b021b;
    z-index: 1050;
    transform: translateX(100%); /* completely outside viewport */
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .custom-menu.active {
        transform: translateX(0); /* slide in */
    }
.userNav p {
    color :#fff;
}
.userNav{
    display:flex;
    gap:2px;
    align-items:center;
}
.user-icon-main {
    display: flex;
    align-items: center;
}
.custom-menu a {
    color: white;
    font-size: 24px;
    margin: 15px 0;
    text-decoration: none;
    font-weight: 600;
}

  .custom-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7486%) hue-rotate(218deg) brightness(96%) contrast(103%);
}
  @media (min-width: 992px) {
    .custom-menu,
    .navbar-toggler {
      display: none !important;
    }
  }
  .navbar-brand {
  transition: transform 0.3s ease;
}
  .navbar-brand:hover {
    transform: scale(1.03);
}
header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0b021b; /* Or any background to avoid transparency */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 111;
}
.address-header {
    display: flex;
    max-width: 200px;
    font-size: 14px;
    align-items: center;
    color: #ccc;
}
    .address-header img{
        width:50px;
    }
.new-header .nav-link {
    /* background: transparent; */
    border-radius: 16px;
    color: #ccc;
    font-weight: 600;
    font-size: 16px;
    /* padding: 18px 0px; */
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: none;
    transition: 0.3s ease;
    /* min-width: 120px; */
    margin: auto;
    width: 120px;
    padding: 0;
}
    .new-header .nav-link .icon {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        background-color: #272a32;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 8px;
        transition: 0.3s ease;
        border: 6px solid #1e1f28;
        z-index: 2;
    }

.new-header .label-container {
    display: flex;
    flex-direction: column;
    background: #1e1f28;
    width: 100%;
    height: 110px;
    padding: 35px 12px 12px;
    transform: translateY(-44px);
}
.navbar-expand-lg .navbar-nav {
    gap: 8px;
}
.new-header .navbar-expand-lg .navbar-nav .nav-link {
    padding:0 !important;
}
/* Specific to the label-container inside the first tab */
.new-header .nav-item:first-child .nav-link .label-container {
    border-top-left-radius: 20px;
}

.new-header .nav-item:last-child .nav-link .label-container {
    border-bottom-right-radius: 20px;
}

.new-header .nav-link.active .label-container {
    background: var(--secondary-color);
}

.new-header .main-label {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.new-header .sub-label {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
}

.new-header .nav-link.active {
    background: transparent;
    color: #fff;
}

    .new-header .nav-link.active .icon {
        background: var(--color-3);
        border: 6px solid var(--secondary-color);
    }

    .new-header .nav-link.active .main-label,
    .new-header .nav-link.active .sub-label {
        color: #fff;
    }

    /* Remove bootstrap underline */
    .new-header .nav-link.active::after {
        display: none;
    }
.userNav{
    display:flex;
    font-size:12px;
    align-items:center;
}
.new-header .container-fluid {
    background: #272a32;
    border-radius: 10px;
    height: 100px;
    padding: 0 30px;
}
.search-container {
    min-width: 420px;
    /* max-width: 450px; */
    height: 55px;
    border-radius: 6px;
    background-color: transparent;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-left: 30px;
    position: relative;
}
.search-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: white;
    font-size: 16px;
    overflow: hidden;
    height: 20px;
}

.search-label {
    color: #fff;
    white-space: nowrap;
    margin-right: 6px;
    user-select: none;
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
    width: 100%;
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.animated-placeholder {
    position: absolute;
    left: calc(65px + 16px);
    overflow: hidden;
    height: 20px;
    width: 280px;
    color: #fff;
    pointer-events: none;
    user-select: none;
    font-size: 16px;
}

.scroll-wrapper {
    position: relative;
}

.scroll-item {
    height: 20px;
    line-height: 20px;
    white-space: nowrap;
}

/*****************Header*********/
/******Banner******/
.de-gradient-edge-bottom {
    z-index: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.spacer-double {
  width: 100%;
  height: 60px;
  display: block;
  clear: both;
}
.z-3 {
  z-index: 3;
}
.relative, .position-relative {
  position: relative;
}
.spacer-half {
  width: 100%;
  height: 15px;
  display: block;
  clear: both;
}
.text-light h1 {
  color: #fff !important;
}
.text-light h1 {
  color: #fff !important;
}
.fs-120 {
  font-size: 120px;
}
.no-bg {
  background: none !important;
}
.countdown-s2 {
  display: inline-block;
}
.absolute, .abs {
  position: absolute;
}
.start-10 {
  left: 10%;
}
.start-20 {
  left: 20%;
}
.top-10 {
  top: 10%;
}
.top-40 {
  top: 40%;
}
.w-30 {
  width: 30%;
}
.w-20 {
  width: 20%;
}
.abs-middle {
  top: 50%;
  transform: translateY(-50%);
}
.end-10 {
  right: 10%;
}
.hero-subheading-wrap_home {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-radius: 1.5rem;
  flex-flow: row;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
  margin: 30px 0;
}
/*.banner{
  margin-top: -110px;
}*/
.banner {
 /* position: relative;*/
  color: white;
  background: linear-gradient(
    -45deg,
    var(--secondary-color),
    var(--color-3),
    var(--black),
    var(--color-3),
    var(--secondary-color)
  );
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  overflow: hidden; 
  min-height: 100vh;
}
/*.banner .main-title{
  font-size: 60px;
  margin-bottom: 2px;
  letter-spacing: -2px;
}
.banner h4{
color: #a2a2a2;
text-align: left;
}
.banner .main-title::after{
  display: none;
}*/
.app-img{
  max-width: 60%;
  margin: auto;
  display: block;
  animation: upDown 2s infinite alternate;
}
/* Background animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px); 
  }
}

/*.banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: spinGlow 50s linear infinite;
  z-index: 0;
}
*/
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  z-index: 0;
}

/* Rotation animation */
@keyframes spinGlow {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}


.sentence {
  font-size: 30px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
   font-weight: bold;
}

.animated-word {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: bold;
  transition: opacity 0.4s, transform 0.4s;
  opacity: 1;
}

/* Animation classes */
.word-out {
  opacity: 0;
  transform: translateY(-30%);
  transition: opacity 0.4s, transform 0.4s;
}

.word-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
}

.padding-global.relative-index-2 {
  color: var(--white);
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

/* .value-component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0a0b0d;
  background: linear-gradient(135deg, #FF1DC2, #940BFF, #210043);
  border-radius: 3.125rem;
  grid-template-rows: auto;
  min-height: 37.5rem;
  display: grid;
  position: sticky;
  top: 3.75rem;
  overflow: hidden;
  padding: 3px;
}
.value-component._2 {
  z-index: 2;
  position: sticky;
  top: 5rem;
}
.value-component._3 {
  z-index: 3;
  top: 6.25rem;
}
.value-component._4 {
  z-index: 4;
  top: 7.5rem;
}
.value-component._2 {
  z-index: 2;
  border-radius: 3.125rem;
  flex-direction: row;
  grid-template-rows: auto;
  align-items: center;
  display: grid;
  position: sticky;
  top: 5rem;
}
.value-content {
  max-width: 30rem;
  align-self: center;
    justify-self: center;

}
.value-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}


.gradient-border{
background-color: #000;
display: grid;
border-radius: 3.125rem;

grid-template-rows: auto;
grid-template-columns: 1fr 1fr;
grid-auto-columns: 1fr;
min-height: 37.5rem;
display: grid;
position: sticky;
top: 3.75rem;
overflow: hidden;
width: 100%;
} */

/*****About us start*****/
.abs-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-dark {
  background: #111111 !important;
}
.z-2 {
  z-index: 2;
}
.w-60 {
  width: 60%;
}
.end-5 {
  right: 5%;
}
.w-80 {
  width: 80%;
}
.logo-img{
  max-width: 150px;
}







/**********About***********/
.section-about{
  padding: 80px 0;
}
.section-about .main-title::after, .section-home-team .main-title::after{
 margin-left: 12px;
}


/*******************faq sectionn**********************/
/* .faq-section {
  background: radial-gradient(circle at top left, #2a2a3c, #0f0f1f);
  color: white;
} */
.faq-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

/* .faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(130deg, var(--secondary-color), var(--color-3), var(--dark-color) var(--primary-color));
  background-size: 400% 400%;
  animation: animateGradient 15s linear infinite;
  z-index: -1;
  opacity: 0.15;
  filter: blur(80px);
  transform: translate(-25%, -25%);
  pointer-events: none;
  transition: opacity 0.3s ease;
} */

@keyframes animateGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.accordion-item:hover {
  transform: translateY(6px);
  box-shadow: 0 2px 2px #0000001a;
}
/* Remove arrow */
.accordion-button::after {
  display: none;
}
.custom-accordion .accordion-button {
  background-color: transparent;
  color: white;
  padding: 1rem 1.5rem;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
}
.custom-accordion .accordion-icon {
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}
/* Icon wrapper */
.icon-wrap {
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-image: linear-gradient(#0e0e1a, #0e0e1a),
                    linear-gradient(135deg, var(--secondary-color), var(--color-3));
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.icon {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.4s ease;
}
.accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
  margin-bottom: 25px;
  transition: box-shadow .3s, transform .3s;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .05) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .05) 50%, rgba(255, 255, 255, 0) 100%);
}
/* Change + to − when opened */
.accordion-button:not(.collapsed) .icon::before {
  content: "−";
}
.accordion-button:not(.collapsed){
  border-radius: 0;
}
.accordion-button.collapsed .icon::before {
  content: "+";
}
.accordion-button.collapsed{
  border-radius: 8px;
}
.accordion-item:not(:first-of-type) {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.accordion-body{
  color: #fff;
  padding-top: 0;
}



/**********feature************/

.features-card {
  transform-origin: 50% 0;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 15px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: sticky;
  top: 150px;
}
.features-card.fourth {
  background-color: #302c3f;
  top: 195px;
}
.features-card.second {
  background-color: #302c3f;
  margin-bottom: 30px;
  top: 165px;
}
.features-card.third {
  background-color: #302c3f;
  margin-bottom: 15px;
  top: 180px;
}
.features-card.first {
  background-color: #302c3f;
  margin-bottom: 45px;
}
.features-card.fourth {
  top: 195px;
}
.features-card.second {
  margin-bottom: 30px;
  top: 165px;
}
.features-card.third {
  margin-bottom: 15px;
  top: 180px;
}
.features-card.first {
  margin-bottom: 45px;
}
.features-left {
  flex-direction: column;
  align-items: flex-start;
  max-width: 450px;
  display: flex;
  position: sticky;
  top: 150px;
}
.features-right {
  grid-row-gap: 200px;
  flex-direction: column;
  width: 400px;
  display: flex;
  position: relative;
}
.features-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.features-card-img {
  margin-bottom: 30px;
}




/**********************************/
/* tabs */
	/* ================================================== */
	
	.de_tab .de_nav {
    overflow: hidden;
    padding-left: 0;
    margin: 0;
    padding: 0;
    font-weight:bold;
    }
    
    .de_tab .de_nav li {
    float: left;
    list-style: none;
    background: #EEE;
    margin-right: 5px;
    }
    .de_nav li.active{
      background-color: var(--secondary-color);
    }
    .de_tab .de_nav li span {
    padding: 8px 16px 8px 16px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    display: block;
    background: #f5f5f5;
    text-decoration: none;
    color: #646464;
    font-size: 13px;
    cursor: pointer;
    }
    
    .de_tab.tab_steps .de_nav{
    text-align:center;	
    }
    .de_tab.tab_steps .de_nav li{
    background:none;
    display:inline-block;
    float:none;
    margin:0 30px 0px 30px;
    }
    
    .de_tab.tab_steps .de_nav li span {
    padding:30px 0 30px 0;
    color:#222;
    font-family:"Dosis";
    font-size:16px;
    border-radius:120px;
    -moz-border-radius:120px;
    -webkit-border-radius:120px;
    line-height:120px;
    width:180px;
    height:180px;
    text-align:center;
    text-transform:uppercase;
    }
    
    .de_tab.tab_steps.square .de_nav li span{
    border-radius:0;
    -moz-border-radius:0;
    -webkit-border-radius:0;
    }
    
    .de_tab.tab_steps .de_nav li span:hover{
    background:#000;
    border:none;
    color:#fff;
    }
    
    .de_tab.tab_steps .de_nav li .v-border{
    height:60px;
    border-left:solid 1px rgba(255,255,255,.3);
    display:inline-block;
    margin-bottom:-5px;	
    }
    
    .de_tab.tab_steps.dark .de_nav li .v-border{
    border-left:solid 1px rgba(0,0,0,.3);
    }
    
    .de_tab .de_nav li span {
    border:none;
    background:#222;
    }
    
    .de_tab .de_nav li:first-child span {
    border-left: 1px solid #ddd;
    }
    
    .de_tab .de_nav li:first-child span {
    border-left: 1px solid #404040;
    }
    
    
    .de_tab .de_tab_content {
    border: 1px solid #ddd;
    padding: 15px 20px 20px 20px;
    margin-top: -1px;
    background: #fff;
    }
    
    .de_tab .de_tab_content {
    border: 1px solid #404040;
    background: #27282b;
    }
    
    .de_tab.tab_steps .de_tab_content {
    background:0;
    padding:0;
    border:none;
    padding-top:30px;
    border-top:solid 1px rgba(255,255,255,.4);
    }
    
    .de_tab.tab_steps.dark .de_tab_content {
    border-top:solid 1px rgba(0,0,0,.4);
    }
    
    .de_tab .de_nav li.active span {
    background: #FFF;
    border-bottom: 1px solid #fff;
    color: #222;
    margin-bottom: -3px;
    }
    
    .de_tab .de_nav li.active span .v-border{
    display:none !important;
    }
    
    .de_tab .de_nav li.active span {
    background: #27282b;
    border-bottom: 1px solid #27282b;
    color: #ccc;
    }
    
    .de_tab.tab_steps .de_nav li.active span {
    background:none;
    color: #ffffff;
    border:solid 1px rgba(255,255,255,.6);
    }
    
    .de_tab.tab_steps.dark .de_nav li.active span {
    background:none;
    color: #333;
    border:solid 1px rgba(0,0,0,.8);
    }
    
    /* new added */
    .de_tab.tab_steps.tab_6 .de_nav li span{
    padding:20px 0 20px 0;
    font-size:14px;
    line-height:70px;
    width:120px;
    height:120px;
    }
    
    
    .de_tab.tab_style_4 .de_tab_content {
    border: none;
    background: none;
    padding: 0;
    border-top: none;
  }
  .text-light .de_tab.tab_style_4 .de_tab_content {
    border-top: none;
  }
  .de_tab.tab_style_4 .de_nav {
    text-align: center;
    background: none;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 0;
    /*border: solid 1px #333;*/
  }
  .de_tab.tab_style_4 .de_nav.de_nav_dark li{
    background:#202020;
  }
  .de_tab.tab_style_4 .de_nav.de_nav_dark li h3,
  .de_tab.tab_style_4 .de_nav.de_nav_dark li:hover h3 span{
    color:#ffffff !important;
  }
  .de_tab.tab_style_4 .de_nav.de_nav_dark li h4{
    color:rgba(255,255,255,.5);
  }
  .de_tab.tab_style_4 .de_nav li img {
    width: auto;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .7;
  }
  .de_tab.tab_style_4 .de_nav li.active img {
    width: auto;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
  }
  .de_tab.tab_style_4 .de_nav li {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
    padding: 15px 30px 15px 30px;
    min-width: 150px;
    margin: 0;
    /*border-right: solid 1px #333;*/
  }
  .de_tab.tab_style_4 .de_nav li span {
    margin: 0;
    padding: 0;
    background: none !important;
    border: none;
    width: auto;
    display: inline-block;
  }
  .de_tab.tab_style_4 .de_nav li:last-child {
    border-radius: 0 5px 5px 0;
    border-right: none;
  }
  .de_tab.tab_style_4 .de_nav li:first-child {
    border-radius: 5px 0 0 5px;
  }
  .de_tab.tab_style_4 .de_nav li:hover {
    background: #ddd;
  }
  .de_tab.tab_style_4 .de_nav li.active, .de_tab.tab_style_4 .de_nav li.active span {
    background: var(--secondary-color);
    color: #fff;
  }
  .text-light .de_tab.tab_style_4 .de_nav li.active {
    color: #fff;
  }
  .de_tab.tab_style_4 .de_nav li.active h3, .de_tab.tab_style_4 .de_nav li.active h4, .de_tab.tab_style_4 .de_nav li.active h4 span {
    color: #fff;
  }
  .tab_style_4 h3, .de_tab.tab_style_4 .de_nav li span {
    margin: 0;
    font-size: 22px !important;
    font-weight: 600;
  }
  .tab_style_4 h4 {
    margin: 0;
    font-size: 12px;
  }
    
  
    .tab-small-post ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    
    .tab-small-post ul li {
    min-height: 60px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px #eeeeee;
    }
    
    .tab-small-post ul li{
    border-bottom: solid 1px #404040;
    }
    
    .tab-small-post ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    }
    
    .tab-small-post ul li img {
    position: absolute;
    }
    
    .tab-small-post ul li span {
    display: block;
    padding-left: 64px;
    }
    
    .tab-small-post ul li span.post-date {
    font-size: 11px;
    }
    
    .de_tab.timeline.nav_4 li{
    display:inline-block;
    text-align:center;
    background:none;
    width:24%;
    }	
    
    .de_tab.timeline.nav_4 li span{
    background:none;
    border:none;
    margin-top:20px;
    font-family:"Dosis";
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    }
    
    .de_tab.timeline.nav_4 .dot{
    display:block;
    width:8px;
    height:8px;
    background:#fff;
    opacity:1;
    margin:0 auto;
    border-radius:8px;
    margin-top:1px;
    }
    
    .de_tab.timeline.nav_4 .dot:before,
    .de_tab.timeline.nav_4 .dot:after {
      content: "";
      position: absolute;
      height: 5px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      top: 0;
      width:24%;
    }
    
    .de_tab.timeline.nav_4  li:last-child .dot:before,
    .de_tab.timeline.nav_4 li:last-child .dot:after {
     border-bottom: none;
    }
    
    .de_tab.timeline li .num{
    font-size:20px;
    }
    
    .de_tab.timeline .de_tab_content{
    background:none;
    border:none;
    padding-top:30px;
    }
    
    .de_tab .navigation_arrow{
    text-align:center;
    }
    /* schedule */

.schedule-item {
	padding: 40px 0 30px 0;
	border-bottom: solid 1px #eee;
  display: flex;
  align-items: center;
}
.dark .schedule-item {
	padding: 40px 0 30px 0;
	border-bottom: solid 1px rgba(255,255,255,.1);
}
.schedule-listing:nth-child(even) {
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .65) 50%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .65) 50%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .65) 50%, rgba(255, 255, 255, 0) 100%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}

.dark .schedule-listing:nth-child(even) {
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .05) 50%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .05) 50%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(229, 229, 229, .05) 50%, rgba(255, 255, 255, 0) 100%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}	

/* .schedule-item>div {
	float: left;
} */
.schedule-item .sc-time {
	font-weight:bold;
	width: 160px;
	font-size:14px;
}
.schedule-item .sc-pic {
	width: 120px;
}
.schedule-item .sc-pic img {
	width: 90px;
	padding:5px;
	height: auto;
  border-radius: 50%
}
.schedule-item:hover .sc-pic img{
  background-color: var(--secondary-color)
}
.schedule-item .sc-name {
	font-weight: normal;
	font-size: 14px;
	width: 160px;
}
.schedule-item .sc-name h4 {
	font-size: 14px;
	margin: 0;
	line-height: 1.6em;
}
.schedule-item .sc-name span {
	font-weight: normal;
	font-size: 12px;
}
.schedule-item .sc-info {
	float: none;
	display: inline-block;
  text-align: left;
  width: calc(100% - 650px);
}
.sc-info p{
  margin: 0;
}
.sc-tickit{
  float: none;
	display: inline-block;
  text-align: right;
  width:120px;
}
.schedule-item .sc-info h3 {
	font-size:18px !important;
	margin-bottom: 10px;
	font-weight:500;
}
.de_tab.tab_style_4 .de_nav.de_nav_dark li:hover{
  background-color: var(--secondary-color);
}




/********Teastimonial********/


strong {
  font-weight: 700;
}

.wrapper {
  padding-left: 20px;
}

.masonry {
  max-width: 960px;
  margin: 0 auto;
}

.masonry .item {
  width: 300px;
  float: left;
  background: f9f1e5;
  border: 2px solid #333;
  border-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.author {
  text-align: center;
  text-transform: uppercase;
  background: #ABB45A;
  color: #fff;
  margin-top: 0;
  padding: 1rem 0;
  border-bottom: 2px solid #333;
  border-color: rgba(0, 0, 0, 0.5);
}

.mark {
  position: absolute;
  color: #EF6724;
  font-size: 2rem;
  left: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

.quote {
  padding-right: 1rem;
  padding-left: 4rem;
  font-style: italic;
}


/********our-feature********/
/* .our-feature{
  padding: 80px 0;
}
.card-container {
  perspective: 1000px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  width: 300px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card-title {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-description {
  color: #d1d1d1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.card-button {
  background-color: #1f1f1f;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-button:hover {
  background-color: #333333;
} */




/*************/

/* Glowing background circles */
.card-wrapper{
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  padding: 25px;
}
.card-wrapper:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15),
    0 0 0 var(--primary-color),
    0 0 10px var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
}
.card-wrapper p{
  font-size: 14px;
  color: #a2a2a2;
  font-family: var(--font-body);
}
.glow-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(30px);
  transition: transform 0.5s ease;
}

.glow-orange {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  bottom: 50px;
  left: 20px;
}

.glow-blue {
    width: 3rem;
    height: 3rem;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
}
/* Hover animation */
.card-wrapper:hover .glow-orange {
  transform: translate(30px, 30px);
}

.card-wrapper:hover .glow-blue {
  transform: translate(2.5rem, -2.5rem);
}
.card-title1{
  font-weight: bold;
  margin: 20px 0;
  font-size: 20px;
  font-family: var(--font-heading);
}




/******other section*******/

.team-intro-wrapper {
    justify-content: center;
    align-items: flex-start;
    max-width: 110em;
    min-height: 75svh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}
.team-text-wrapper {
    grid-row-gap: 1em;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 35em;
    height: 100%;
    position: absolute;
}
.team-text-sticky {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 75svh;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    position: sticky;
    top: 0;
}
.team-title-wrapper {
    margin-bottom: .6em;
}
.text-hide {
    text-align: center;
}
.team-intro-title {
    letter-spacing: .01em;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}
.copy-medium {
    padding-bottom: 0;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.2;
}
.team-images-wrapper {
    justify-content: space-between;
    width: 100%;
    display: flex;
}
.team-images-column {
    grid-row-gap: 3em;
    mix-blend-mode: luminosity;
    flex-direction: column;
    width: 100%;
    max-width: 35%;
    padding-left: 4.5em;
    padding-right: 4.5em;
    display: flex;
}
.team-member-item.is-center {
    align-self: center;
}
.team-member-item.is-right {
    align-self: flex-end;
}
.team-member-wrapper {
    width: 10em;
    height: 10em;
    font-size: 1.3em;
    position: relative;
    box-shadow: 0 44px 5.2em #0000004f;
    overflow: hidden;
  clip-path: polygon(
  50% 0%, 70% 10%, 90% 35%, 
  85% 70%, 60% 90%, 30% 100%, 
  10% 80%, 0% 40%, 20% 15%
);
border-radius: 20px;

}
.team-member-wrapper.is-medium {
    font-size: .8em;
}

.team-member-image {
  opacity: 1;
  mix-blend-mode: luminosity;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
border-radius: 20px;
clip-path: polygon(
  50% 0%, 70% 10%, 90% 35%, 
  85% 70%, 60% 90%, 30% 100%, 
  10% 80%, 0% 40%, 20% 15%
);


  transition: all 0.6s ease-in-out;

  animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}
.section-team{
  background: linear-gradient(
    -45deg,
    var(--secondary-color),
    var(--color-3),
    var(--black),
    var(--color-3),
    var(--secondary-color)
  );
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 130px;
  margin-top: -110px;
}
.best-tickit h2{
font-size: 30px;
text-align: left;
}

/*************tab sectionn****************/
.custom-tabs {
    display: flex;
    margin: 2rem auto;
    gap: 1.5rem;
}
.custom-tabs .nav-item{
width: 100%;
}
    .custom-tabs .nav-tabs {
        border-bottom: none;
        justify-content: flex-start;
        gap: 1rem;
        background: transparent;
    }
        .custom-tabs .nav-tabs .nav-link {
            color: #bbb9b9;
            background: #23212b;
            border: none;
            border-radius: 1.5rem;
            padding: 1.1rem 2.5rem;
            position: relative;
            font-size: 1.15rem;
            font-weight: 500;
            transition: color 0.2s, background 0.2s, box-shadow 0.2s;
            z-index: 1;
            overflow: hidden;
            width: 100%;
        }
            .custom-tabs .nav-tabs .nav-link:before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 1.5rem;
                padding: 2px;
                background: linear-gradient(90deg, var(--secondary-color), var(--primary-color),var(--secondary-color));
                -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                -webkit-mask-composite: xor;
                mask-composite: exclude;
                z-index: -1;
                transition: opacity 0.2s;
                opacity: 0.5;
            }
            .custom-tabs .nav-tabs .nav-link.active,
            .custom-tabs .nav-tabs .nav-link:hover {
                color: #fff;
                background: #2e2c38;
                box-shadow: 0 4px 24px 0 rgba(160,103,255,0.12);
            }
                .custom-tabs .nav-tabs .nav-link.active:before,
                .custom-tabs .nav-tabs .nav-link:hover:before {
                    opacity: 1;
                }
    .custom-tabs .tab-content {
        background: #23212b;
        border-radius: 1.5rem;
        padding: 2rem 1.5rem;
        min-height: 320px;
        box-shadow: 0 4px 24px 0 rgba(160,103,255,0.08);
        transition: box-shadow 0.2s;
    }

    .custom-tabs .tab-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 0.8rem;
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        margin-right: 1rem;
        font-size: 1.25rem;
        color: #fff;
        box-shadow: 0 2px 8px 0 rgba(160,103,255,0.10);
        transition: background 0.2s;
    }
    .custom-tabs .nav-tabs .nav-link.active .tab-icon,
    .custom-tabs .nav-tabs .nav-link:hover .tab-icon {
        background: linear-gradient(135deg, ) var(--primary-color) 0%, var(--secondary-color 100%);
    }
     
    @media (max-width: 600px) {
      .custom-tabs {
        max-width: 100%;
        padding: 0 0.5rem;
      }
        .custom-tabs {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 420px;
            margin: 2rem auto;
        }
        .custom-tabs .tab-content {
            padding: 1.2rem 0.7rem;
        }
        .custom-tabs .nav-tabs .nav-link {
            padding: 0.9rem 1.2rem;
            font-size: 1rem;
        }
    }


.best-tickit .w-background-video > video {
  width: auto;
    height: auto;
    max-width: 300px;
}
/***********animated bg*************/
.custom-bg-section {
  background-color: #0f0d1a;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: rotate 10s linear infinite;
  z-index: -1;
}

/* Circle 1 */
.circle1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color), var(--secondary-color));
  top: 100px;
  left: 100px;
}

/* Circle 2 */
.circle2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,  var(--primary-color),var(--secondary-color));
  bottom: 150px;
  right: 150px;
  animation-direction: reverse;
}
.circle3 {
  width: 350px;
  height: 300px;
  background: radial-gradient(circle, var(--color-3), var(--secondary-color));
  top: 100px;
  left: 100px;
}
.circle4 {
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, var(--color-3), var(--secondary-color));
  top: 30%;
  right: 100px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

    /*********testimonial start**********/
    .testimonial-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border: 1px solid #302c3f;
    background-color: #1d1a27;
    border-radius: 8px;
    flex-direction: column;
    padding: 32px;
    transition: all .3s;
    display: flex;
    margin-bottom: 25px;
}
.star-wrapper {
    justify-content: space-between;
    align-items: stretch;
    width: 30%;
    display: flex;
}
.testimonial-card:hover {
    box-shadow: 0 24px 64px #c548ff45;
}
.testimonial-avatar {
    background-color: #f7f9fd;
    border-radius: 100%;
    flex: none;
    width: 64px;
    height: 64px;
    overflow: hidden;
    margin-right: 15px;
}
.testimonial-card p{
  color:#beafbf;
}



/**********download-app*****/
.appStore-img{
  max-width: 180px;
  margin: 30px 0 20px;
}
.qr-img{
  max-width: 180px;
}
.download-app h6.main-title{
  font-size: 24px;
  margin-bottom: 0;
}
.download-app {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle at center, var(--color-3), var(--primary-color));
  opacity: 0.3;
  filter: blur(120px);
  border-radius: 50%;
  animation: rotateBg 30s linear infinite;
  z-index: 0;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}


.jarallax-img {
  filter: blur(60px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*********slider banner***********/
 /* Swiper container full screen */
.explore-event-swiper {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    margin-top: -110px;
}

    /* Each slide */
    .explore-event-swiper .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        overflow: hidden;
        padding-top: 140px;
    }

    /* Background image with blur using a pseudo element */
        .explore-event-swiper .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(12px);
            transform: scale(1.1);
            z-index: 0;
            transition: background-image 0.5s ease;
        }

    /* Content card */
    .explore-event-swiper .slide-content {
        position: relative;
        /* z-index: 2;
      background: rgba(0, 0, 0, 0.6); */
        padding: 2rem 3rem;
        border-radius: 16px;
        max-width: 900px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        user-select: none;
        margin: 25px 0 50px;
    }

.explore-event-swiper .slide-content h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.explore-event-swiper .slide-content p {
    margin: 0.3rem 0;
    font-size: 1.1rem;
}

.explore-event-swiper .slide-hosts {
    margin: 0.8rem 0;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
}

    .explore-event-swiper .slide-hosts span {
        background: #222;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        user-select: text;
    }

    .get-tickets-btn {
      margin-top: 1.5rem;
      background: #fff;
      color: #222;
      border: none;
      border-radius: 24px;
      padding: 0.75rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      user-select: none;
      display: inline-block;
      text-decoration: none;
    }

   .get-tickets-btn:hover, .get-tickets-btn:focus {
    background: #0b021b;
    color: #fff;
    outline: none;
}

    /* Swiper navigation buttons */
.explore-event-swiper .swiper-button-next,
.explore-event-swiper .swiper-button-prev {
    color: #fff;
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
    user-select: none;
}

    .explore-event-swiper .swiper-button-next:hover,
    .explore-event-swiper .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.8);
        color: #000;
    }

    /* Swiper pagination bullets */
.explore-event-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: background 0.3s;
}

.explore-event-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

    /* Responsive */
    @media (max-width: 600px) {
        .explore-event-swiper .slide-content {
            max-width: 90vw;
            padding: 1.5rem 2rem;
        }
            .explore-event-swiper .slide-content h1 {
                font-size: 1.5rem;
            }
            .explore-event-swiper .slide-content p,
            .explore-event-swiper .slide-hosts span,
            .get-tickets-btn {
                font-size: 1rem;
            }
      .get-tickets-btn {
        width: 100%;
        padding: 0.75rem 0;
      }
    }

    /*********Dropdownn**********/
.dropdown-bar {
    display: flex;
    gap: 10px;
    background-color: #3a3a3a;
    padding: 8px 12px;
    border-radius: 12px;
    width: fit-content;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: transparent;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-btn:hover {
  background-color: #505050;
}
.dropdown-content {
    position: absolute;
    top: 38px;
    left: 0;
    background: #2a2a2a;
    border-radius: 10px;
    padding: 5px 0;
    min-width: 150px;
    display: none;
    flex-direction: column;
    z-index: 100;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.dropdown-content .dropdown-item {
  padding: 8px 12px;
  color: white;
  cursor: pointer;
}

.dropdown-content .dropdown-item:hover {
  background-color: #444;
}

.dropdown-content.city-dropdown {
  min-width: 200px;
}
.city-search {
    width: 90%;
    margin: 5px auto;
    padding: 8px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
  cursor: pointer;
  margin-bottom: 20px;
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,1) 25%, rgba(0,0,0,0) 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: white;
}

.card-profile {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  animation: rotate 4s linear infinite;
}

.card-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-date {
  position: absolute;
  top: 12px;
  left: 60px;
  background-color: black;
  border-radius: 4px;
  padding: 4px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.card-date .month {
  display: block;
  color: #fff;
  font-size: 10px;
}

.card-date .day {
  font-size: 14px;
}

.card-info {
  margin-top: auto;
}
.event-detail-banner{
  position: relative;
  overflow: hidden;
  margin-top: -110px;
  min-height: 100vh;
  padding-top: 0;
}
.event-detail-banner .slide-content {
box-shadow: none;
}

.event-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}

.event-location {
  font-size: 14px;
  color: #aaa;
  margin: 0;
}

.swiper-slide.blur-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }

  .blur-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2); /* Optional tint */
    z-index: 1;
  }
   .slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 30px;
  }

  .sticky-container{
     position: sticky;
  top: 2rem;
  background-color: #1c1030;
  padding: 30px 20px;
  border-radius: 12px;
  }
  .info-event{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cbcbcb;
  }
  .info-event i{
    margin-right: 15px;
  }
  .host-followers{
    display: flex;
    align-items: center;
    margin-top: 20px;
    border: 1px solid #a7a6a6;
    border-radius: 8px;
    padding: 15px;
    
  }
  .host-followers img{
    margin-right: 18px;
    width: 80px;
  }
  .host-followers *{
color: #cbcbcb;
  }
  .all-event-details *{
color: #cbcbcb;
  }
  .event-detail-banner .info-event{
    margin-bottom: 10px;
    color: #fff;
  }
  .swiper-pagination {
    margin-top: 20px;
  }


  /******************Float iconnnn*********************/
.float-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0c021c, var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

    .float-contact:hover {
      transform: scale(1.1);
    }

    .float-contact i {
      font-size: 24px;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 29, 194, 0.6);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(255, 29, 194, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 29, 194, 0);
      }
    }


    /************modal*************/
.glass-modal {
    background: #0f1012b8;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: white;
    border-radius: 16px;
    padding: 10px 30px;
}
        .glass-modal .modal-header{
            border:none;
            padding:25px;
            padding-bottom:0;
        }

        .glass-modal .modal-content {
            border: none;
        }
.glass-modal .modal-body{
    padding:25px;
}
.glass-modal .modal-body h5 {
    font-size: 1.1rem;
    line-height: 1.5;
}
/*.glass-modal .form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255,255,253,.2);
}*/
.btn-close {
    background: none !important;
    z-index: 111;
}


.ticket-container {
  padding: 1em 0;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  margin: 10px 0;
}

.counter-btn {
    width: 2.2em;
    height: 2.2em;
    display: flex;
    color: #a40ef6;
    border-radius: 50%;
    align-items: center;
    font-weight: 900;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.counter-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#ticketCount {
  min-width: 1.5em;
  text-align: center;
}

#totalPrice {
  transition: all 0.3s ease-in-out;
  color: #fff;
}



.feature-section {
  background-color: var(--color-3);
}

.highlight {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05); /* translucent base */
  backdrop-filter: blur(12px);           /* actual glass blur */
  -webkit-backdrop-filter: blur(12px);   /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.feature-card h5{
   font-family: "Outfit", sans-serif;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 29, 194, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.icon-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin: 0 auto;
}

.pricing-section {
    background: linear-gradient(124deg, #210043 5%, #940BFF 50%, #000 100%);
    background-color: var(--color-3);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glass-card {
  max-width: 600px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease-in-out;
}

.glass-card .compare-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
 .glass-card1 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /****************team***************/
   .main-team{
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .profile-card{
     position: relative;
     font-family: sans-serif;
     width: 220px;
     height: 220px;
     background: #fff;
     padding: 30px;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
     margin: 0 25px;
   }
   .profile-card:hover{
     border-radius: 10px;
     height: 260px;
   }
   .profile-card .img{
     position: relative;
     width: 100%;
     height: 100%;
     transition: .6s;
     z-index: 99;
   }
   .profile-card:hover .img{
     transform: translateY(-60px);
   }
   .img img{
     width: 100%;
     border-radius: 50%;
     box-shadow: 0 0 22px #3336;
     transition: .6s;
   }
   .profile-card:hover img{
     border-radius: 10px;
   }
   .caption{
     text-align: center;
     transform: translateY(-80px);
     opacity: 0;
     transition: .6s;
   }
   .profile-card:hover .caption{
     opacity: 1;
   }
   .caption h3{
     font-size: 21px;
     font-family: sans-serif;
   }
   .caption p{
     font-size: 15px;
     color: #0c52a1;
     font-family: sans-serif;
     margin: 2px 0 9px 0;
   }
   .caption .social-links a{
     color: #333;
     margin-right: 15px;
     font-size: 21px;
     transition: .6s;
   }
   .social-links a:hover{
     color: #0c52a1;
   }

   
/* Card container */
.card-border {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  padding: 2px; /* for the border thickness */
  border-radius: 10px;
  animation: borderAnimation 4s linear infinite;
  display: inline-block;
  margin-bottom: 30px;
}

.card-team {
  border-radius: 10px;
  background: rgba(11, 2, 27, 1);
  backdrop-filter: blur(50px);
  color: white;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.card-border:hover  {
  box-shadow: 0 12px 40px rgba(255, 29, 194, 0.15);
}
/* Gradient border animation */
@keyframes borderAnimation {
  0% {
    border-image-source: linear-gradient(0deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  }
  50% {
    border-image-source: linear-gradient(180deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
  }
  100% {
    border-image-source: linear-gradient(360deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  }
}

/* Background image behind content */
.card-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/bg/11.jpg') center/100% 100% no-repeat;
  filter: blur(15px);
  z-index: -1;
  opacity: 0.3;
   transform: scaleY(-1);
}

/* Image styling */
.img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.img-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}
/* Text styling */
.name-team {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.position {
  text-align: center;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-team {
  font-size: 0.9rem;
  text-align: center;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Social Icons */
.social-team {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-team {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.social-team a:nth-child(1) .icon-team {
  transition-delay: 0s;
}
.social-team a:nth-child(2) .icon-team {
  transition-delay: 0.1s;
}
.social-team a:nth-child(3) .icon-team {
  transition-delay: 0.2s;
}

.card-team:hover .icon-team {
  transform: translateX(0);
  opacity: 1;
}

.icon-team i {
  font-size: 1.2rem;
}
.about-hero .main-title{
  font-size: 40px;
}
#revenuePieChart{
    width:300px !important;
    height:300px !important;
    margin:auto;

}

/*********Career*********/
.job-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.custom-dropdown {
    position: relative;
    width: 200px;
}

    .custom-dropdown select {
        appearance: none;
        width: 100%;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        background-color: var(--color-3);
        color: white;
        border: 2px solid var(--secondary-color);
        cursor: pointer;
        outline: none;
    }

    .custom-dropdown::after {
        content: '\25BC';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        pointer-events: none;
    }

select option {
    background-color: var(--color-3);
    color: white;
}

    select option:hover {
        background-color: var(--primary-color);
        color: black;
    }

.category {
    margin-top: 2rem;
}

.category-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.job-listing {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    position: relative;
    border: 2px solid var(--secondary-color);
}

    .job-listing:hover::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        z-index: -1;
    }

    .job-listing:hover {
        box-shadow: 0 0 15px rgba(255, 29, 194, 0.4);
    }

.job-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.job-meta {
    font-size: 0.9rem;
    color: #ccc;
}


.contact-section {
    padding: 4rem 1rem;
}

    .contact-section h3 {
        color: #fff;
        margin-bottom: 1rem;
    }

    .contact-section .single-contact {
        margin: 1rem 0;
    }

        .contact-section .single-contact a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            transition: transform 0.3s;
        }

        .contact-section .single-contact i {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
            transition: all 0.3s ease;
            position: relative;
            animation: pulse 2s infinite;
        }

        .contact-section .single-contact p {
            margin: 0;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contact-section form input,
    .contact-section form textarea {
        padding: 15px 20px;
        border: none;
        border-radius: 8px;
        background-color: var(--color-3);
        color: white;
        resize: none;
    }

        .contact-section form input::placeholder,
        .contact-section form textarea::placeholder {
            color: white;
            opacity: 0.7;
        }

        .contact-section form input:focus,
        .contact-section form textarea:focus {
            outline: none;
            background-color: var(--secondary-color);
        }

.p-policy h1, .p-policy h2 {
    color: #fff;
    font-weight: 900;
}
.p-policy h1{
    font-size:50px;
    font-weight:900;
    font-family:var(--font-heading);
}
.p-policy p, .p-policy ul li {
    color: #ccc;
    font-size:18px;
}
.p-policy .section-block {
    margin-bottom: 2rem;
}

@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.swiper-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #26262654;
    overflow: hidden;
    padding: 0;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    backdrop-filter: blur(20px);
    /* border-radius: 20px; */
    /* width: min(1100px, 100%); */
    box-shadow: 0 1px 0 1px rgba(255, 255, 255, 0.1) inset, 0 1px 0 0 rgba(255, 255, 255, 0.2) inset, 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 70px;
}

.swiper-section .info {
    flex: 1;
    padding: 0 50px;
    text-align: justify;
    color: #fff;
}

    .swiper-section .info p {
        font-weight: 500;
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

.movie-night {
    background: linear-gradient(225deg, #ff3cac, #784ba0, #2b86c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #784ba0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

    .btn:hover {
        animation: gelatine 0.5s 1;
    }

@keyframes gelatine {
    0%, 100% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95, 1.05);
    }

    50% {
        transform: scale(1.05, 0.95);
    }

    75% {
        transform: scale(0.98, 1.02);
    }
}

/* Swiper Styles */
.swiper-venue {
    flex: 1;
    width: 300px;
    height: 500px;
    padding: 50px 0;
}

    .swiper-venue .swiper-slide {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

        .swiper-venue .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* Custom Venue Slide Styles */
.venue-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0.6) 70%,rgba(0,0,0,0.3) 90%,rgba(0,0,0,0) 100%);
    color: #fff;
}
.venue-card{
    width:300px !important;
    height:400px;
}
    .venue-card img{
        height:100%;
        width:100%;
        object-fit:cover;
    }

    .offer-tag {
        background: linear-gradient(135deg, var(--secondary-color), var(--color-3));
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        display: inline-block;
    }

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 29, 194, 0.6), 0 0 20px rgba(148, 11, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 29, 194, 0.8), 0 0 30px rgba(148, 11, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 29, 194, 0.6), 0 0 20px rgba(148, 11, 255, 0.4);
    }
}
.venue-info h2 {
    margin: 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.rating-cuisine {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.location {
    font-size: 0.8rem;
    color: #ccc;
}

/* Background Animation */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

    .circles li {
        position: absolute;
        list-style: none;
        display: block;
        border-radius: 50%;
        opacity: 0.4;
        animation: animate 25s linear infinite;
        background: radial-gradient( circle, var(--primary-color), var(--secondary-color), var(--color-3) );
        filter: blur(10px);
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column-reverse;
        padding: 30px 10px;
    }

    .info {
        padding: 0 15px;
        text-align: center;
    }

  /*  .swiper {
        width: 90%;
        height: 420px;
    }*/

    .btn {
        margin-top: 10px;
    }
}




.pubs-section {
    padding: 50px 20px;
    color: white;
    text-align: center;
}

.text-center h4 {
    font-weight: 500;
    color: #ccc;
    margin-bottom: 8px;
}

.highlight-word {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.pubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pub-card {
    background: #ffffff0f;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #555555;
    color: white;
    text-align: left;
    box-shadow: 0 0 20px rgba(255, 29, 194, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pub-card:hover {
        transform: translateY(-5px);
    }
.pub-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
    .pub-info h3 {
        font-size: 18px;
        margin-bottom: 0px;
        font-weight: 600;
    }
    .pub-info p {
        font-size: 14px;
        margin-bottom: 0;
        color: #fff;
    }

.location {
    font-size: 0.8rem;
    color: #ddd;
}

.see-all {
    text-align: center;
    margin-top: 10px;
}
.see-all-card {
    text-align: center;
    margin: 35px 0 20px;
}
.pub-card .btn-see-all {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .pub-card .btn-see-all:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }
.pub-info img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
}
.pub-card h3.pub-title{
    font-size:20px;
    margin-bottom:20px;
    font-weight:700;
}

.mood-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    height: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .mood-card img {
        position: absolute;
        bottom: -5px;
        right: 0px;
        max-height: 150px;
        object-fit: contain;
        opacity: 0.9;
    }
    .mood-card h5 {
        z-index: 2;
        font-size: 22px;
        font-weight: 600;
        width:50%;
        text-align:left;
    }
    .mood-card:hover {
        transform: translateY(-5px);
        box-shadow: rgba(255, 29, 194, 0.4) 0px 0px 30px;
    }
/* Gradient backgrounds */
.gradient-1 {
    background: linear-gradient(135deg, #61104b 0%, #570140 0%, #190727 50%, #0b021b 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34005d 0%, #24003f 50%, #000 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #400073 0%, #400073 30%, #24003f 50%, #0b021b 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #400073 0%, #400073 30%, #24003f 50%, #0b021b 100%);
}

.gradient-5 {
    background: linear-gradient(135deg, #400073 0%, #400073 30%, #24003f 50%, #0b021b 100%);
}

.gradient-6 {
    background: linear-gradient(135deg, #400073 0%, #400073 30%, #24003f 50%, #0b021b 100%);
}
.res-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .res-card:hover {
        transform: scale(1.03);
    }
    .res-card .card-body {
        text-align: left;
        background-color: #414142;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .res-card  .text-muted.small {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        max-width: 100%;
    }
    .res-card .card-title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        max-width: 100%;
        color: #cacbcc;
        text-transform:capitalize;
    }

.res-card .card-img-top {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.image-container {
    position: relative;
}

.offer-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, var(--secondary-color), var(--color-3));
    border-radius: 16px;
    z-index: 2;
}

.ad-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    color: #ccc;
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 5px;
}
.filter-btn{
    border:1px solid #555;
    padding:10px 20px;
    border-radius:50px;
    margin-right:10px;
    margin-bottom:20px;
}




    .container .side-info {
        margin: 20px 0;
    }

        .container .side-info span {
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 16px;
            color: #717171;
        }

        .container .side-info h1 {
            text-transform: capitalize;
            letter-spacing: 0.8px;
            font-family: "Roboto", sans-serif;
            font-weight: 900;
            font-size: 56px;
            background-color: #005baa;
            background-image: linear-gradient(45deg, #005baa, #000000);
            background-size: 100%;
            background-repeat: repeat;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            -moz-background-clip: text;
            -moz-text-fill-color: transparent;
        }

        .container .side-info hr {
            display: block;
            background: #005baa;
            height: 4px;
            width: 20%;
            margin: 18px 0;
        }

/*    .container a {
        display: inline-block;
        text-decoration: none;
        text-transform: uppercase;
        color: #717171;
        font-weight: 500;
        background: #fff;
        border-radius: 50px;
        border: 2px solid #c2c2c2;
        padding: 8px 16px;
        margin-top: 20px;
        transition: 0.3s ease-in-out;
    }*/
/*
        .container a:hover {
            border: 2px solid #005baa;
            color: #005baa;
        }
*/
/*    .container .swiper {
        width: 100%;
    }
*/
.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-hero.swiper-pagination {
    bottom: 20px !important;
}

.swiper-hero .swiper-slide {
    width: 300px;
    /* height: 450px; */
    border: 4px solid #a6a8ab;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}

    .swiper-hero .swiper-slide h2 {
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 10px;
        padding: 0 0 0 24px;
        text-transform: uppercase;
    }

    .swiper-hero .swiper-slide p {
        color: #dadada;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        padding: 0 24px;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .swiper-hero .swiper-slide a {
        margin: 20px 25px 50px !important;
        padding: 8px 16px !important;
        font-size: 14px;
        border: none;
    }

        .swiper-hero .swiper-slide a:hover {
            border: none;
        }

  /*  .swiper-slide div {
        display: none;
        opacity: 0;
        padding-bottom: 10px;
    }
*/
/*.swiper-slide-active div {
    display: block;
    opacity: 1;
}
*/
.slide-one {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url(https://github.com/MdRasen/Landing-Page-Using-SwiperJS/blob/main/Landing%20Page%20Using%20SwiperJS/assets/car1.jpg?raw=true) no-repeat 50% 50% / cover;
}

.slide-two {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url(https://github.com/MdRasen/Landing-Page-Using-SwiperJS/blob/main/Landing%20Page%20Using%20SwiperJS/assets/car2.jpg?raw=true) no-repeat 50% 50% / cover;
}

.slide-three {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url(https://github.com/MdRasen/Landing-Page-Using-SwiperJS/blob/main/Landing%20Page%20Using%20SwiperJS/assets/car3.jpg?raw=true) no-repeat 50% 50% / cover;
}

.slide-four {
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url(https://github.com/MdRasen/Landing-Page-Using-SwiperJS/blob/main/Landing%20Page%20Using%20SwiperJS/assets/car4.jpg?raw=true) no-repeat 50% 50% / cover;
}

/* Responsive Design */
@media (min-width: 800px) {
   

        .container .side-info {
            margin-bottom: 20px;
        }
}

@media (max-width: 500px) {
    .container .side-info h1 {
        font-size: 46px;
    }

    .container .side-info p {
        font-size: 14px;
    }
}

.offer-img {
    max-width: 300px;
    margin-top: -200px;
    margin-bottom: 50px;
}
.bg-curve {
    background: #170035;
    border-top-left-radius: 1000px;
    border-top-right-radius: 1000px;
}
section.bg-curve {
    margin-top: 80px;
}

.filterModal{

}

.custom-check input[type="checkbox"],
.custom-radio input[type="radio"] {
    accent-color: #940BFF;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.custom-radio input[type="radio"] {
    border-radius: 50%;
}

.form-check {
    display: flex;
    /* align-items: center; */
    margin-bottom: 12px;
    gap: 15px;
}
    .form-check label {
        margin-bottom: 0;
        font-weight: 500;
    }

.nav-pills .nav-link.active {
    background-color: transparent;
    border-left: 4px solid #940BFF;
    color: white;
    font-weight: 600;
}

.nav-pills .nav-link {
    color: #aaa;
    border-radius: 0;
    text-align: left;
}
.filterModal .modal-dialog {
    max-width: 650px !important;
}
.mySwiper {
    position: relative;
    margin-bottom: 35px;
}
    .mySwiper .swiper-slide {
        max-height: 600px;
    }
    .mySwiper .swiper-slide {
        min-height: 620px;
    }

        .mySwiper .swiper-slide img {
            height: 620px;
            object-fit: cover;
        }

        .mySwiper .swiper-slide video {
            height: 620px;
            object-fit: cover;
        }
    .mySwiper .swiper-pagination {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        z-index: 10;
    }
.offer-tab-list .nav-link {
    color: rgba(255, 255, 255, 0.5);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent !important;
}

    .offer-tab-list .nav-link:hover {
        color: rgba(255, 255, 255, 0.8);
        border-bottom:none;
    }

    .offer-tab-list .nav-link.active {
        color: #ffffff;
        border-bottom: 3px solid #ffffff;
        opacity: 1;
    }
.offer-tab-list{
    border-bottom:none ;
}
.swiper-hero {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

    .swiper-hero .swiper-wrapper {
        align-items: center;
    }
    .swiper-hero .swiper-slide {
        transition: transform 0.3s ease;
    }

.venue-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.club-tab {
    color: white;
    /* padding-top: 20px; */
    padding-bottom: 24px;
    gap: 8px;
    border:none;
}
.tab-content{
    padding:25px 0;
}
.tab-pane .direction-sec .white-icon {
    width: 60px;
}
.club-tab .nav-tabs {
    border: none;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.pub-detail-price{
    font-size:24px;
}
.direction-sec{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    gap:15px;
}
    .direction-sec p{
        font-size:18px;
    }
    .club-tab .nav-item {
        flex: 1;
    }

    .club-tab .nav-link {
        background: transparent;
        border-radius: 16px;
        color: #ccc;
        font-weight: 600;
        font-size: 16px;
        padding: 18px 0px;
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
        border: none;
        transition: 0.3s ease;
        margin:auto;
    }

        .club-tab .nav-link .icon {
            width: 75px;
            height: 75px;
            border-radius: 14px;
            background-color: #272a32;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: -30px;
            transition: 0.3s ease;
            border: 6px solid #1e1f28;
            z-index: 2;
        }
    .club-tab .label-container {
        display: flex;
        flex-direction: column;
        background: #1e1f28;
        padding: 35px 9px 10px;
        width:100%;
        height:100px;
    }
    /* Specific to the label-container inside the first tab */
    .club-tab .nav-item:first-child .nav-link .label-container {
        border-top-left-radius: 20px;
    }
    .club-tab .nav-item:last-child .nav-link .label-container {
        border-bottom-right-radius: 20px;
    }

        .club-tab .nav-link.active .label-container {
            background: var(--secondary-color);
        }
    .club-tab .main-label {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 2px;
    }

    .club-tab .sub-label {
        font-size: 11px;
        font-weight: 400;
        color: #aaa;
    }

    .club-tab .nav-link.active {
        background: transparent;
        color: #fff;
    }

        .club-tab .nav-link.active .icon {
            background: var(--color-3);
            border: 6px solid var(--secondary-color);
        }

        .club-tab .nav-link.active .main-label,
        .club-tab .nav-link.active .sub-label {
            color: #fff;
        }
.detail-title{
    max-width: 75%;
}
/* Remove bootstrap underline */
.club-tab .nav-link.active::after {
    display: none;
}
    .club-tab .search-bar .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: none;
        background: #1e1f28;
        color: #fff;
    }

    .club-tab .search-bar {
        max-width: 550px;
        margin: auto;
        display: flex;
        gap: 12px;
        align-items: center;
    }

        .club-tab .search-bar input::placeholder {
            color: #a6a8ab;
            font-weight: 600;
        }
.search-bar-input {
    position: relative;
    width: calc(100% - 61px);
}

.search-bar input {
    border-radius: 10px !important;
    height: 60px;
    padding: 0 25px 0 45px;
    z-index: 2;
    width: 100%;
    background: #1e1f28;
    border: none;
}
.club-tab .search-bar .search-icon {
    background-color: transparent;
    color: #a6a8ab;
    position: absolute;
    cursor: pointer;
    left: 10px;
    right: auto;
    top: 19px;
    border: none;
    z-index: 21;
}
.detail-right-card{
    border:1px solid #555;
    padding:30px;
    border-radius:10px;
}
    .detail-right-card p{
        margin-bottom:10px;
    }
    .detail-right-card .badge {
        padding: 8px 15px;
        margin: 0 0 10px;
        font-size: 14px;
        font-weight: 500;
    }
.restaurant-tabs {
    background: #272a32;
    padding: 30px;
    border-radius: 15px;
}

.restaurant-tabs .card {
    background: transparent;
    margin-right: 15px;
    height: 90px
}
/*.restaurant-tabs .club-tab .label-container {
    width: 100%;
    padding:35px 20px 20px;
}*/
.restaurant-tabs .club-tab .nav-link {
    padding: 0;
    width: 100%;
}
.club-tab .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(146deg) brightness(121%) contrast(121%);
}
.myOfferSwiper {
    max-width: 400px;
    margin: 30px auto 40px;
}
    .myOfferSwiper .swiper-wrapper {
        align-items: stretch; /* make all slides match tallest */
    }
    .myOfferSwiper .swiper-pagination {
        bottom: -35px;
    }  .myOfferSwiper .offer-slider-card {
        height: 160px;
    }
.myOfferSwiper .offer-slider-card {
    padding:20px;
    display:flex;
    border-radius:15px;
}
.guestOptions{
    max-width:275px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:20px;
}
.guest-radio {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    line-height: 50px;
    font-weight: 600;
    background: transparent;
    font-size: 26px;
    transition: all 0.3s ease-in-out;
}

    .guest-radio input[type="radio"] {
        display: none;
    }

        .guest-radio input[type="radio"]:checked + span {
            background: var(--secondary-color);
            color: white;
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 4px;
        }

    .guest-radio span {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
    }

.time-radio {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #555;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    cursor: pointer;
    background-color: #595968;
    color: #ccc;
    transition: 0.3s;
}

    .time-radio input[type="radio"] {
        display: none;
    }
        .time-radio input[type="radio"]:checked + span {
            /* background: linear-gradient(135deg, #5F0A87, #A4508B); */
            color: #fff;
            display: block;
            width: 100%;
            height: 100%;
            background: var(--secondary-color);
        }

    .time-radio.disabled {
        pointer-events: none;
        /* opacity: 0.4; */
        background-color: #333435;
        color: #424143;
    }

        .time-radio.disabled span {
            background-color: #2c2c2c;
            color: #777;
        }

    /* Optional hover effect for normal (non-disabled) */
    .time-radio:not(.disabled):hover span {
        background-color: var(--secondary-color);
    }

    .time-radio span {
        display: block;
        width: 100%;
        height: 100%;
    }
.dateSlotGroup{
    margin-bottom:20px;
    gap:15px;
}
.date-title img{
    width:25px;
}
.date-radio {
    position: relative;
    display: inline-block;
    width: 85px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #555;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    background-color: #1a1a1a;
    color: #ccc;
    transition: 0.3s;
}

    .date-radio input[type="radio"] {
        display: none;
    }

  

    .date-radio .day {
        font-size: 14px;
        color: #ccc;
    }

    .date-radio .date {
        font-size: 20px;
        color: #fff;
    }

    .date-radio input[type="radio"]:checked + .date-content {
        background: linear-gradient(135deg, #5F0A87, #A4508B);
        color: #fff;
    }

        .date-radio input[type="radio"]:checked + .date-content .day,
        .date-radio input[type="radio"]:checked + .date-content .date {
            color: #fff;
        }

.date-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

/* swiper track */
.date-swiper {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}
    .date-swiper .swiper-slide {
        border-radius: 0;
        box-shadow: none;
        display:flex;
        justify-content:center;
    }
    /* hide internal nav but keep them in DOM so we can trigger clicks */
    .date-swiper .swiper-button-prev,
    .date-swiper .swiper-button-next {
        position: absolute;
        width: 0;
        height: 0;
        opacity: 0;
        pointer-events: none;
    }
.date-title{
    display:flex;
    gap:15px;align-items:center;
    color:#fff;
    margin-bottom:20px;font-size:18px;
}
/* your existing date box style (kept) */
.date-radio {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #555;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    background: #2f3042;
    color: #ccc;
    transition: .25s;
}
    .date-radio input {
        display: none;
    }

    .date-radio .date-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .date-radio .day {
        font-size: 13px;
        color: #ddd;
    }

    .date-radio .date {
        font-size: 20px;
        color: #fff;
    }

    .date-radio input:checked + .date-content {
        background: #940BFF;
        color: #fff;
    }

        .date-radio input:checked + .date-content .day,
        .date-radio input:checked + .date-content .date {
            color: #fff;
        }



/* outside nav buttons */
.date-nav {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

    .date-nav:hover {
        background: rgba(0,0,0,.55);
    }


.date-radio {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .date-radio input[type="radio"] {
        display: none;
    }

.date-content {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .date-content .day {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .date-content .date {
        display: block;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
    }

/* Selected state */
.date-radio input[type="radio"]:checked + .date-content {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.date-radio:hover .date-content {
    background: var(--secondary-color);
    transform: translateY(-2px);
}






.bg-purple {
    background: linear-gradient(135deg, #5F0A87, #A4508B);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.modern-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .modern-radio input[type="radio"]:checked {
        border-color: transparent;
        background: linear-gradient(135deg, #5F0A87, #A4508B);
    }

        .modern-radio input[type="radio"]:checked::before {
            content: "";
            position: absolute;
            top: 4px;
            left: 4px;
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
        }
.tab-content .explore-event-swiper{
    margin-top:0;
}

.select-ticket-card {
    padding: 20px;
    background: #ffffff14;
    border-radius: 16px;
    color: #fff;
    margin-bottom:18px;
}

    .select-ticket-card h6 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

.ticket-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-right-card .ticket-card {
    background-color: #1E1E1E;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom:20px;
}

    .ticket-card:hover {
        background-color: var(--secondary-color);
    }

    .ticket-card.active {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
    }
.detail-right-card .ticket-info .ticket-type {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.detail-right-card .ticket-info {
    text-align: left;
}

.detail-right-card .ticket-info .ticket-desc {
    font-size: 12px;
    color: #bbb;
    margin: 2px 0 0;
}

.detail-right-card .ticket-price p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.detail-right-card .ticket-price small {
    font-size: 12px;
    color: #999;
    display: block;
}

/*.myMenuSwiper {
    margin: 20px 0;
    padding:30px 0;
}

    .myMenuSwiper .swiper-wrapper {
        display: flex;
    }

    .myMenuSwiper .swiper-slide {
        text-align: center;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .myMenuSwiper .swiper-slide:hover {
            transform: translateY(-5px);
        }

        .myMenuSwiper .swiper-slide .menu-img {
            max-width: 150px;
            height: 120px;
            object-fit: cover;
            border-radius: 4px;
        }
        .myMenuSwiper .swiper-slide h5 {
            margin-top: 10px;
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }*/

.myMenuSwiper {
    width: 100%;
    padding: 40px 0;
    overflow:hidden;
}
    .myMenuSwiper .swiper-slide, .single-menu {
        width: 200px !important;
    }

.myMenuSwiper .menu-img {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    object-fit: cover;
}
    .myMenuSwiper .menu-img:hover {
        transform: scale(1.05);
    }

/* Swiper Navigation buttons style */
    .myMenuSwiper .swiper-button-prev,
    .myMenuSwiper .swiper-button-next {
        color: white;
        background: rgba(0, 0, 0, 0.4);
        padding: 25px;
        border-radius: 50%;
        transition: background 0.3s;
    }

        .myMenuSwiper .swiper-button-prev:hover,
        .myMenuSwiper .swiper-button-next:hover {
            background: rgba(0, 0, 0, 0.7);
        }


.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

    .masonry-gallery .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        display: block;
    }

        .masonry-gallery .gallery-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: 0.3s ease;
        }

        .masonry-gallery .gallery-item:hover img {
            transform: scale(1.05);
        }
/*#near .banner{
    margin-top:-310px;
    padding-top:300px
}*/
.event-img img{
    max-width:500px;
}
.event-detail-banner .slide-content {
    padding-top:120px;
}

.offer-radio {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #444;
    padding: 1rem;
    position: relative;
}

    .offer-radio:hover {
        border-color: #aaa;
    }

    /* Checked state style */
    .offer-radio input[type="radio"]:checked + .custom-radio-indicator,
    .offer-radio input[type="radio"]:checked {
        border-color: #c814e2;
        background-color: #9d0dfa17;
    }

/* Optional indicator on the right */
.custom-radio-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #aaa;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s ease;
}

.offer-radio input[type="radio"]:checked + .custom-radio-indicator {
    border-color: #c814e2;
    background: radial-gradient(#c814e2 40%, transparent 41%);
}
.cart-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: #130225;
    padding: 25px;
    max-width: 700px;
    margin: 30px auto;
}

/* Floating Timer */
.booking-timer {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f4f0ff;
    padding: 10px 0;
    z-index: 999;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


/* Ticket Items */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .ticket-item .ticket-info h6 {
        margin-bottom: 0.25rem;
    }

.ticket-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .ticket-counter .count {
        font-size: 1.1rem;
        width: 30px;
        text-align: center;
    }
.form-control {
    background: transparent;
    border-radius: 6px;
    border: 1px solid #fff;
    height: 45px;
    padding: 20px;
    color: #fff;
}
    .form-control:focus {
        color: #fff;
        background-color: transparent;
        border-color: #fff;
        outline: 0;
        box-shadow: none;
    }
.btn-close i{
    color:#fff;
}
.count{
    margin:0 15px;
}
.ticket-action{
    display:flex;
    align-items:center;
}
    .ticket-action .minus, .ticket-action .plus{
        height: 40px;
        width: 40px;
        border-radius: 50%;
        padding:5px;
        font-size:20px;
    }
.loginModal .modal-header {
    border-bottom: none !important;
    position: absolute;
    right: 0;
}
.loginModal h5{
    font-weight:700;
    letter-spacing:.5px;
}
.loginModal .glass-modal{
    padding:0;
}
.modal-footer {
    border-top: none !important;
}
.logo-area {
    background: linear-gradient(-45deg, var(--secondary-color), var(--color-3), var(--black), var(--color-3), var(--secondary-color));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
    .logo-area p{
        font-size:14px;
        margin-top:10px;
    }
.loginModal .modal-body {
    padding: 30px;
}
    .loginModal .modal-body p{
        font-size:14px;
        margin-bottom:15px;
    }
    .loginModal .modal-body input::placeholder{
        color:#fff;
    }
.otp-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border 0.1s;
    background: transparent;
    color: #fff;
}

    .otp-box:focus {
        border: 3px solid #fff;
        box-shadow: 0 0 5px rgba(64, 0, 115, 0.5);
    }

.otp-inputs {
    gap: 10px;
}
.btn-close:focus {
    box-shadow: none !important;
}

.photos-grid-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

/* LEFT: Item 1 */
.item-1 {
    flex: 1 1 50%;
    min-height: 100%;
}

/* RIGHT: Item 2, 3, 4 stacked */
.right-column {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-2 {
    height: calc(50% - 10px);
}

.bottom-two {
    display: flex;
    gap: 20px;
    height: calc(50% - 10px);
}

.item-3,
.item-4 {
    flex: 1;
}

/* Shared card style */
.card-box {
    background-color: #222;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .card-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .card-box a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .card-box:hover {
        background-color: #333;
        transform: translateY(-3px);
        cursor: pointer;
    }

/* ✅ Mobile Layout */
@media (max-width: 580px) {
    .photos-grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

        .photos-grid-container > * {
            flex: unset;
            height: 150px;
        }

    .right-column,
    .bottom-two {
        display: contents;
    }
    .item-2 {
        height: 100%;
    }
}

.near .banner .swiper-pagination{
    bottom:-10px;
}
.near-hero{
    padding:40px 0;
}
.all-pubs{
    padding:0;
}
.swiper-hero {
    padding-top: 0;
    padding-bottom: 0px;
}
.masonry {
    column-count: 3;
    column-gap: 1rem;
    padding: 1rem;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .masonry-item:hover {
        transform: scale(1.02);
    }

    .masonry-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry {
        column-count: 1;
    }
}

.single-detail{
    margin-bottom:25px;
}
    .single-detail h5{
        font-weight:600;
        margin-bottom:20px;
    }
    .club-reviews .club-review {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .club-reviews .review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 6px;
    }

    .club-reviews .user-info {
        display: flex;
        flex-direction: column;
    }

        .club-reviews .user-info strong {
            font-size: 16px;
            color: #fff;
        }

        .club-reviews .user-info .meta {
            font-size: 12px;
            color: #777;
        }

    .club-reviews .badge {
        background-color: #006a43;
        color: white;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 10px;
    }

    .club-reviews .time {
        font-size: 12px;
        color: #aaa;
        margin-left: auto;
        padding-left: 10px;
    }

    .club-reviews .review-text {
        margin: 6px 0 0 0;
        font-size: 14px;
        line-height: 1.5;
    }
.single-detail .myMenuSwiper {
    margin: 0;
    padding: 0 0 30px;

}
.right-badge{
    display:flex;
    flex-direction:column;
    border: 1px solid #ccc;
    border-radius:8px;
    align-items:center;
    font-size:14px;
}
    .right-badge .badge {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding: 6px 8px;
        margin-bottom: 0;
    }

.ticket-wrapper {
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
}
.timeOfferModal .ticket-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(89 89 104);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
    text-align: center;
    font-size: 14px;
}

    .timeOfferModal .ticket-card:hover {
        border-color: #aaa;
    }
.ticket-card.active {
    background: #920bfc;
}
.table-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #929497;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
}
    .table-card.active {
        background: #ff1dc2;
    }
    .table-card p{
        font-size:14px;
        text-align:center;
    }

    .timeOfferModal .ticket-left p {
        font-weight: 600;
        margin: 0;
    }

.timeOfferModal .ticket-left small {
    font-size: 12px;
    color: #aaa;
}

.timeOfferModal .ticket-right {
    display: flex;
    align-items: center;
    gap: 10px;
}


.ticket-container {
    width: 400px;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    -webkit-mask: radial-gradient(circle at 0 149px, transparent 13px, white 14px), radial-gradient(circle at 100% 149px, transparent 13px, white 14px);
    mask: radial-gradient(circle at 0 149px, transparent 13px, white 14px), radial-gradient(circle at 100% 149px, transparent 13px, white 14px);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
    padding: 0;
    margin-right: 30px;
    margin:auto;
}
    .ticket-container .ticket-top {
        padding: 24px 18px 24px 30px;
        border-bottom: 1px dashed #000;
        position: relative;
    }

    .ticket-container .booking-ref {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: 20px; */
    }

    .ticket-container .qr-code {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ticket-container .qr-pattern {
        width: 70px;
        height: 70px;
        background-image: radial-gradient(circle at 10% 20%, white 2px, transparent 2px), radial-gradient(circle at 30% 10%, white 2px, transparent 2px), radial-gradient(circle at 50% 30%, white 2px, transparent 2px), radial-gradient(circle at 70% 15%, white 2px, transparent 2px), radial-gradient(circle at 90% 25%, white 2px, transparent 2px), radial-gradient(circle at 15% 50%, white 2px, transparent 2px), radial-gradient(circle at 35% 60%, white 2px, transparent 2px), radial-gradient(circle at 55% 70%, white 2px, transparent 2px), radial-gradient(circle at 75% 65%, white 2px, transparent 2px), radial-gradient(circle at 85% 80%, white 2px, transparent 2px), radial-gradient(circle at 20% 80%, white 2px, transparent 2px), radial-gradient(circle at 40% 85%, white 2px, transparent 2px), radial-gradient(circle at 60% 90%, white 2px, transparent 2px);
        background-size: 20px 20px;
    }

    .ticket-container .ref-info {
        text-align: left;
        flex: 1;
        margin-left: 20px;
    }

    .ticket-container .ref-label {
        font-size: 12px;
        color: #000;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .ticket-container .ref-number {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        letter-spacing: 0.5px;
    }
    .ticket-container .ref-description {
        font-size: 10px;
        color: #666;
        margin-top: 4px;
        line-height: 1.3;
        font-weight: 600;
    }

    .ticket-container .ticket-bottom {
        padding: 24px 18px 24px 30px;
        width: 100%;
    }

    .ticket-container .event-name {
        font-size: 20px;
        text-align: left;
        font-weight: 700;
        color: #000;
        margin-bottom: 8px;
        line-height: 1;
    }
    .ticket-container .ticket-type {
        font-size: 14px;
        color: #666;
        margin-bottom: 24px;
        font-weight: 600;
        text-align:left;
    }

    .ticket-container .price {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin-bottom: 24px;
    }

    .ticket-container .detail-item {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 12px;
    }

    .ticket-container .detail-icon {
        width: 30px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: brightness(0) saturate(100%) invert(30%) sepia(67%) saturate(4757%) hue-rotate(299deg) brightness(99%) contrast(109%);
    }

    .ticket-container .detail-text {
        font-size: 14px;
        color: #000;
        font-weight: 500;
    }

.counter {
    display: flex;
    align-items: center;
    gap: 4px;
    /* border: 1px solid #ccc; */
    border-radius: 6px;
    background: #1e1e1e;
    padding: 8px;
}
    .counter button {
        /* width: 30px; */
        /* height: 30px; */
        /* border-radius: 50%; */
        /* border: none; */
        background: transparent;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
        border: none;
    }

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.total-bar {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-top: 10px;
}
.accordion-button {
    background: transparent;
    border-radius: 10px !important;
    color: #fff;
}
    .accordion-button:focus {
        z-index: 3;
        border-color: #fff;
        outline: 0;
        box-shadow: none !important; 
    }
    .accordion-button:not(.collapsed) {
        background-color: transparent;
        box-shadow: none !important;
        color: #fff;
    }
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.list-group-item {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px !important;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}
    .list-group-item + .list-group-item {
        border-top-width: 1px !important;
    }
.cart-card h6{
    margin-bottom:20px;
}
.start-form{
    font-size:12px;
    color:#ccc;
}
.event-guide .guide-item {
    text-align: center;
    font-size: 16px;
    display: flex;
    gap: 15px;
    font-weight: 500;
    align-items:center;
}

    .event-guide .guide-item i {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
        color: #fff;
        background: #ffffff33;
        padding: 8px;
        border-radius: 5px;
    }

.see-all-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

    .see-all-link:hover {
        text-decoration: underline;
    }

.event-guide .modal-header {
    border-bottom: none;
}

.event-guide .modal-body .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
    .event-guide .modal-body .info-item i {
        display: flex;
        font-size: 20px;
        margin-bottom: 4px;
        color: #fff;
        background: #ffffff33;
        padding: 8px;
        border-radius: 5px;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }
.event-guide .modal-body .label {
    font-size: 12px;
    color: #aaa;
}

.event-guide .modal-body .value {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}


.single-detail .lineup {
    display: flex;
    gap: 25px;
    margin-top: 12px;
    flex-wrap: wrap;
}

    .single-detail .lineup .single-lineup {
        text-align: center;
        width: 150px;
    }

        .single-detail .lineup .single-lineup img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .single-detail .lineup .single-lineup p {
            margin-top: 15px;
            font-size: 16px;
            color: #f0f0f0;
            font-weight: 600;
        }
.event-detail-right-card i{
    font-size:24px;
    width:40px;
    display:flex;
    justify-content:center;
}
.event-detail-right-card p{
    font-size: 18px;
    font-weight:500;
}


.cart-page {
    --secondary-color: #940BFF;
    --color-3: #210043;
    --dark-color: #170035;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 30px;
    padding-bottom: 30px;
}

    .cart-page h2,
    .cart-page h4 {
        color: #f0f0f0;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    /* Badge with secondary color */
    .cart-page #cart-counter {
        background-color: var(--secondary-color);
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        vertical-align: middle;
        padding: 0.35em 0.8em;
    }

    /* Table styles */
    .cart-page table.table {
        border-collapse: separate !important;
        border-spacing: 0 12px;
        width: 100%;
        color: #e0e0e0;
    }

        .cart-page table.table thead th {
            color: #bbb;
            font-weight: 600;
            border-bottom: none !important;
            border-top: none !important;
            background-color: transparent !important;
            padding-bottom: 0.8rem;
            white-space: nowrap;
        }
        .cart-page table.table tbody td {
            background-color: #ffffff14;
            border: none !important;
            border-radius: 8px;
            padding: 1rem 1.25rem;
            vertical-align: middle;
            transition: background-color 0.3s ease;
        }

        .cart-page table.table tbody tr:hover td {
            background-color: #2c1340;
        }

        .cart-page table.table tbody td:nth-child(1) {
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }

        .cart-page table.table tbody td:not(:nth-child(1)) {
            text-align: center;
            font-size: 0.95rem;
        }

    /* Quantity input */
    .cart-page .quantity-input {
        background-color: #2b2b2b;
        border: 1.5px solid #444;
        color: #ddd;
        border-radius: 6px;
        max-width: 70px;
        margin: auto;
    }

        .cart-page .quantity-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 6px var(--secondary-color);
            background-color: #2b2b2b;
            color: #f0f0f0;
        }

    /* Remove button */
    .cart-page .btn-remove {
        background-color: #ff4b5c;
        border: none;
        padding: 0.35rem 0.9rem;
        font-weight: 600;
        border-radius: 20px;
        transition: background-color 0.3s ease;
        color: #fff;
        box-shadow: 0 2px 6px rgba(255, 75, 92, 0.4);
        cursor: pointer;
    }

        .cart-page .btn-remove:hover {
            background-color: #c9414e;
            box-shadow: 0 4px 12px rgba(201, 65, 78, 0.7);
        }

    /* Summary text */
    .cart-page .text-end p,
    .cart-page .text-end h5 {
        color: #ccc;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .cart-page .text-end h5 {
        font-size: 24px;
        color: #fff;
    }
    /* Offers container */
    .cart-page .offers {
        background-color: #ffffff14;
        border-radius: 12px;
        padding: 1.5rem 1.75rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 6px 12px rgb(0 0 0 / 0.5);
    }
/***new-cart***/

.new-cart, .pre-order-sec, .table-prep, .summary {
    z-index: 1;
    position:relative;
}
    .new-cart .cart-item {
        background-color: #ffffff0f;
        border: 1px solid #2a2a2a;
    }
    .new-cart .summary {
        background-color: #ffffff0f;
        border: 1px solid #2a2a2a;
    }
.new-cart .quantity {
    display: inline-flex;
    align-items: center;
    background-color: #1c1c24;
    border-radius: 8px;
    overflow: hidden;
    padding: 4px 8px;
    border: 1px solid #57585b;
}

        .new-cart .quantity button {
            background: transparent;
            border: none;
            color: #bfbfc7;
            font-size: 20px;
            padding: 4px 10px;
            cursor: pointer;
            transition: color 0.2s ease;
        }

            .new-cart .quantity button:hover {
                color: #fff;
            }

    .new-cart .qty-input {
        width: 40px;
        text-align: center;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 16px;
        -moz-appearance: textfield; 
        
    }

        .new-cart .qty-input::-webkit-outer-spin-button,
        .new-cart .qty-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .new-cart .coupon-input {
        background-color: #ffffff0f;
        color: #fff;
        border: 1px solid #57585b;
    }

        .new-cart .coupon-input:focus {
            background-color: #2a2a2a;
            color: #fff;
        }


.apply-coupon-area{
    position:relative;
    margin-bottom:25px;
}
    .apply-coupon-area .form-control {
        background: #fff;
        border-radius: 6px;
        border: 1px solid #fff;
        height: 45px;
        color: #58595b;
    }
        .apply-coupon-area .form-control::placeholder {
            color: #58595b;
        }
        .apply-coupon-btn {
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 12px;
            /* padding: 5px; */
            height: 35px;
        }
.offers ul.offer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

    .offers ul.offer-list li.offer-item {
        background-color: #cec2e414;
        margin-bottom: 0.6rem;
        padding: 0.7rem 1rem;
        border-radius: 8px;
        color: #ddd;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.25s ease, color 0.25s ease;
        user-select: none;
    }

.offers ul.offer-list li.offer-item:hover,
.offers ul.offer-list li.offer-item:focus {
    background-color: var(--secondary-color);
    color: #fff;
    outline: none;
}
.offers .applied-offers {
    border-radius: 10px;
    padding: 15px 0;
    margin-top: 1rem;
    color: #bbb;
}

    .offers .applied-offers h5 {
        margin-bottom: 0.75rem;
        color: #fff;
        font-weight: 700;
    }

.offers ul.applied-offers-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .offers ul.applied-offers-list li {
        padding: 15px 20px;
        font-weight: 600;
        color: #ccc;
        border-radius: 6px;
        background: #8383832e;
    }
.mt-128{
    margin-top:128px;   
}
/* Coupon form */
/*    .cart-page #coupon-code {
        background-color: #2b2b2b;
        color: #ddd;
        border: 1.5px solid #444;
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }*/
.cart-page #coupon-code:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px var(--secondary-color);
    outline: none;
    background-color: #2b2b2b;
    color: #f0f0f0;
}

    .cart-page #coupon-form button {
        min-width: 110px;
    }

    .cart-page .coupon-message {
        font-weight: 600;
        margin-top: 0.5rem;
        min-height: 1.2rem;
    }

    /* Payment form styling */
    .cart-page .payment {
        background-color: #ffffff14;
        border-radius: 12px;
        padding: 1.5rem 1.75rem;
        box-shadow: 0 6px 12px rgb(0 0 0 / 0.5);
        margin-bottom: 1.5rem;
    }

    .cart-page #payment-form label,
    .cart-page #payment-form .form-check-label {
        color: #ddd;
        font-weight: 600;
    }

    .cart-page #payment-form input[type="text"],
    .cart-page #payment-form input[type="month"],
    .cart-page #payment-form input[type="password"] {
        background-color: #2b2b2b;
        color: #eee;
        border: 1.5px solid #444;
        border-radius: 8px;
        padding: 0.45rem 0.75rem;
        transition: border-color 0.3s ease;
    }

        .cart-page #payment-form input[type="text"]:focus,
        .cart-page #payment-form input[type="month"]:focus,
        .cart-page #payment-form input[type="password"]:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 8px var(--secondary-color);
            outline: none;
            background-color: #2b2b2b;
            color: #fff;
        }

    .cart-page #payment-form .form-check-input:checked {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

 
    .cart-page .quantity-input::-webkit-inner-spin-button,
    .cart-page .quantity-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* Responsive */

.cart-page .quantity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 130px;
    margin: auto;
}
.cart-page .btn-qty {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .cart-page .btn-qty:hover,
    .cart-page .btn-qty:focus {
        background-color: #7c0dcc;
    }

.cart-page .quantity-input {
    width: 40px;
    text-align: center;
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.2rem 0.3rem;
    height: 30px;
}


.checkout-page {
    color: #e0e0e0;
    padding-top: 30px;
    padding-bottom: 30px;
}

    .checkout-page h2,
    .checkout-page h4 {
        color: #f0f0f0;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    /* Order summary table similar to cart style */
    .checkout-page table.order-summary-table {
        border-collapse: separate !important;
        border-spacing: 0 12px;
        width: 100%;
        color: #e0e0e0;
    }

        .checkout-page table.order-summary-table thead th {
            color: #bbb;
            font-weight: 600;
            border-bottom: none !important;
            border-top: none !important;
            background-color: transparent !important;
            padding-bottom: 0.8rem;
        }

        .checkout-page table.order-summary-table tbody td {
            background-color: #1e162d;
            border: none !important;
            border-radius: 8px;
            padding: 1rem 1.25rem;
            vertical-align: middle;
            transition: background-color 0.3s ease;
        }

        .checkout-page table.order-summary-table tbody tr:hover td {
            background-color: #3600aa;
        }

        .checkout-page table.order-summary-table tbody td:nth-child(1) {
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
        }

        .checkout-page table.order-summary-table tbody td:not(:nth-child(1)) {
            text-align: center;
            font-size: 0.95rem;
        }

    /* Summary text */
    .checkout-page .text-end p,
    .checkout-page .text-end h5 {
        color: #ccc;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .checkout-page .text-end h5 {
        font-size: 1.3rem;
        color: #fff;
    }

    /* Applied offers container */
    .checkout-page .applied-offers {
        background-color: #1e162d;
        border-radius: 12px;
        padding: 1.5rem 1.75rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 6px 12px rgb(0 0 0 / 0.5);
        color: #bbb;
    }

        .checkout-page .applied-offers h4 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }

    .checkout-page ul.applied-offers-list {
        list-style: none;
        padding-left: 1.25rem;
        margin: 0;
    }

        .checkout-page ul.applied-offers-list li {
            padding: 0.4rem 0;
            font-weight: 600;
            color: #ccc;
        }

    /* Payment form styling - same as cart page */
    .checkout-page .payment {
        background-color: #1e162d;
        border-radius: 12px;
        padding: 1.5rem 1.75rem;
        box-shadow: 0 6px 12px rgb(0 0 0 / 0.5);
        margin-bottom: 1.5rem;
    }

    .checkout-page #checkout-payment-form label,
    .checkout-page #checkout-payment-form .form-check-label {
        color: #ddd;
        font-weight: 600;
    }

    .checkout-page #checkout-payment-form input[type="email"],
    .checkout-page #checkout-payment-form input[type="tel"],
    .checkout-page #checkout-payment-form input[type="text"],
    .checkout-page #checkout-payment-form input[type="month"],
    .checkout-page #checkout-payment-form input[type="password"] {
        background-color: #2b2b2b;
        color: #eee;
        border: 1.5px solid #444;
        border-radius: 8px;
        padding: 0.45rem 0.75rem;
        transition: border-color 0.3s ease;
    }

        .checkout-page #checkout-payment-form input[type="email"]:focus,
        .checkout-page #checkout-payment-form input[type="tel"]:focus,
        .checkout-page #checkout-payment-form input[type="text"]:focus,
        .checkout-page #checkout-payment-form input[type="month"]:focus,
        .checkout-page #checkout-payment-form input[type="password"]:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 8px var(--secondary-color);
            outline: none;
            background-color: #2b2b2b;
            color: #fff;
        }

    .checkout-page #checkout-payment-form .form-check-input:checked {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    /* Payment submit button */
  
      
/* Responsive */
@media (max-width: 991.98px) {
    .checkout-page .col-lg-7,
    .checkout-page .col-lg-5 {
        width: 100%;
    }

    .checkout-page .row {
        flex-direction: column;
        gap: 2rem;
    }
}
.arrow-button {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: #fff;
    border: none;
}

.offer-slider-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid white;
    border-radius: 16px;
    background: var(--body-color);
    color: white;
    overflow: hidden;
    min-height: 130px;
    backdrop-filter: blur(8px); /* optional: for frosted glass effect */
    z-index: 1;
}

    /* Top-right and Bottom-left blurred gradient circles */
    .offer-slider-card::before,
    .offer-slider-card::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(45px);
        z-index: 0;
        opacity: 0.6;
    }

    .offer-slider-card::before {
        width: 100px;
        height: 100px;
        background: var(--secondary-color);
        top: -30px;
        right: -30px;
    }

    .offer-slider-card::after {
        width: 120px;
        height: 120px;
        background: var(--color-3);
        bottom: -40px;
        left: -40px;
    }
.bank-offers-section {
    padding: 1rem 0;
}
.bank-offers > *{
    flex:auto;
}

.bank-offers-section .section-title {
    color: white;
    font-weight: 600;
}

    .bank-offers-section .bank-offers {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .bank-offers-section .bank-offer-card {
        position: relative;
        padding: 1rem;
        border: 1px solid white;
        border-radius: 12px;
        background: transparent;
        color: white;
        overflow: hidden;
        backdrop-filter: blur(8px);
        z-index: 1;
        flex-shrink: 0; 
    }

        /* Gradient circle decorations */
        .bank-offers-section .bank-offer-card::before,
        .bank-offers-section .bank-offer-card::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(45px);
            z-index: 0;
            opacity: 0.5;
        }

        .bank-offers-section .bank-offer-card::before {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            top: -25px;
            right: -25px;
        }

        .bank-offers-section .bank-offer-card::after {
            width: 100px;
            height: 100px;
            background: var(--color-3);
            bottom: -30px;
            left: -30px;
        }
.bank-offer-card h6{
    font-size:14px;
}
.bank-offer-card p {
    font-size: 12px;
}

@media (max-width:991px){
    .cart-page .quantity-counter {
        margin:0;
        max-width: 130px;
        margin-left: auto;
    }
}
.main-title-wrapper button {
    display: none;
}
.gradient-bar{
    display:none;
}
.search-bar.sticky {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    z-index: 1052;
    background-color: #0b021b;
    padding: 10px 0 15px;
    width: 100%;
}
   
    .search-bar {
        transition: all 0.3s ease;
    }
/*.restaurant-tabs .tab-pane {
    height: 200px; 
}*/
/*.swiper-wrapper {
    display: flex !important;
}

.myOfferSwiper {
    max-width: 100%;
    overflow: hidden;
}*/
/*.swiper {
    width: 100% !important;
}
*/
/* Sort Button */
.sort-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--color-3));
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    z-index:100;
    height:40px;
}

    /* Sort Icon */
    .sort-btn i {
       font-size:18px;
    }

/* Dropdown */
.sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--color-3));
    color: #fff;
    padding: 10px;
    border-radius: 10px !important;
    margin-top: 5px;
    width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index:20;
}

    .sort-dropdown h6 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        border-bottom: 1px solid #fff3;
        padding-bottom: 5px;
    }

    .sort-dropdown button {
        background: transparent;
        border: none;
        color: white;
        padding: 8px;
        text-align: left;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .sort-dropdown button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
.ticket-total{
    font-size:20px;
    font-weight:500;
}
.all-offers {
    width: 100%;
    padding: 0 20px;
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #ffffff0f;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #57585b;
}
    
    .all-offers button {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 20px;
    }
/* Offcanvas Background and Text */
#userProfileCanvas {
    /* background: linear-gradient(135deg, #3d046a 0%, #210043 50%, #2a005c 100%); */
    color: white;
    background: var(--secondary-color);
}
.offcanvas-body {
    padding: 45px 25px;
}
    /* Offcanvas Header */
    #userProfileCanvas .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Avatar Circle */
    #userProfileCanvas .avatar {
        width: 64px;
        height: 64px;
        line-height: 64px;
        background-color: var(--secondary-color);
        color: white;
        font-size: 22px;
        border-radius: 50%;
        text-align: center;
        font-weight: bold;
        margin: 0 auto;
    }

    /* Text Under Avatar */
    #userProfileCanvas .user-name {
        margin-top: 10px;
        margin-bottom: 0;
        font-weight: bold;
    }

    #userProfileCanvas .user-phone {
        color: #cccccc;
        font-size: 0.875rem;
    }

    /* Divider Line */
    #userProfileCanvas hr {
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* Menu List */
    #userProfileCanvas ul {
        list-style: none;
        padding-left: 0;
    }
        #userProfileCanvas ul li a {
            display: block;
            padding: 10px 0;
            color: #fff;
            text-decoration: none;
            transition: color 0.2s ease;
            font-weight: 500;
            /* background: #ffffff1c; */
            margin-bottom: 10px;
            border-radius: 6px;
            padding: 12px 15px;
        }

            #userProfileCanvas ul li a:hover {
                color: #fff;
            }
                #userProfileCanvas ul li a:hover i{
                    color:#fff;
                }
        #userProfileCanvas ul li i {
            margin-right: 8px;
            color: #fff;
            transition: color 0.2s ease;
            width: 20px;
        }
        #userProfileCanvas ul li p{
            color:  #fff;
        }
        /* Logout Red Highlight */
        #userProfileCanvas ul li a.text-danger {
            color: #ff4d4d;
        }

/* Accordion only inside glass-modal */
.glass-modal .accordion .accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.glass-modal .accordion .accordion-button {
    background-color: transparent;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
    box-shadow: none;
}

    .glass-modal .accordion .accordion-button:not(.collapsed) {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .glass-modal .accordion .accordion-button::after {
        filter: invert(1);
    }

.glass-modal .accordion .accordion-body {
    padding: 1rem;
    color: #ddd;
}
.glass-modal::before {
    content: "";
    position: absolute;
    inset: 0; /* full cover */
    border-radius: 16px; /* must match parent radius */
    padding: 1px; /* border thickness */
    background: linear-gradient(45deg, #ff00ff, #8000ff); /* gradient colors */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.card-container {
    border: 1px solid #e6e6e6;
    padding: 20px;
    border-radius: 10px;
    background: transparent;
    /* font-family: sans-serif; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    text-align: left;
    margin-bottom: 15px;
}

.payment-icons img {
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}


.card-form .card-row {
    display: flex;
    gap: 10px;
}

    .card-form .card-row input {
        flex: 1;
    }



.card-note {
    font-size: 12px;
    color: #ccc;
    margin-top: 10px;
}


.section-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.bank-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.bank-radio {
    position: relative;
}

    .bank-radio input[type="radio"] {
        display: none;
    }

.bank-card {
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff0d;
}

    .bank-card img {
        height: 24px;
        margin-bottom: 5px;
    }

    .bank-card span {
        font-size: 12px;
    }

.bank-radio input[type="radio"]:checked + .bank-card {
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 6px rgba(0, 170, 255, 0.3);
}

.dropdown-wrapper {
    width: 100%;
}

#bankSelect {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    appearance: none;
}


.upi-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: bold;
}

    .upi-radio input[type="radio"] {
        accent-color: #00aaff;
    }

.upi-box {
    /* border: 1px solid #fff; */
    /* border-radius: 8px; */
    padding: 10px 0;
    background-color: transparent;
}

.upi-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

    .upi-icons img {
        width: 40px;
        height: 25px;
        object-fit: contain;
    }

.upi-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
    .upi-input-group button{
        height:45px;
    }

    .upi-input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }

.add-upi-btn {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

    .add-upi-btn:hover {
        background-color: #e63939;
    }

.upi-hint {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}
.wallet-section {
    font-family: Arial, sans-serif;
}

.wallet-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    width: 180px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    margin-bottom: 16px;
    transition: border 0.3s;
}

    .wallet-card.selected {
        border: 2px solid #00aaff;
        background-color: #f3fbff;
    }

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .wallet-header img {
        /* width: 32px; */
        height: 32px;
        background: #fff;
    }

.wallet-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #00aaff;
    color: #00aaff;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    display: none;
}

.wallet-card.selected .wallet-check {
    background-color: #00aaff;
    color: white;
}

.wallet-name {
    margin-top: 6px;
    font-weight: bold;
}

.wallet-link {
    color: #ff4d4d;
    font-size: 14px;
    font-weight: bold;
    margin-top: 4px;
}
.wallet-info {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.wallet-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

    .wallet-input.error {
        border-color: #ff4d4d;
    }

.phone-input-group {
    display: flex;
    gap: 10px;
}

    .phone-input-group select {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .phone-input-group input {
        flex: 1;
    }

.error-msg {
    color: #ff4d4d;
    font-size: 12px;
    margin-bottom: 10px;
}

.wallet-submit {
    width: 100%;
    background-color: #ff4d4d;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

    .wallet-submit:hover {
        background-color: #e53935;
    }
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.accordion-arrow {
    display: inline-block;
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
/* Rotate arrow when accordion is open */
.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(-135deg);
}


.user-icon-main {
    width: 54px;
    height: 54px;
    padding: 0;
    background:transparent;
    border:none;
}
.user-icon-main i{
    font-size:22px;
}
.form-control::placeholder{
    color:#fff;
}
.dob-input{
    position:relative;
}
    .dob-input i {
        position: absolute;
        right: 16px;
        font-size: 20px;
        top: 16px;
    }
#checkoutModal .glass-modal{
    max-width:600px;
    margin:auto;
}






.profile-settings {
    color: #fff;
    position:relative;
}

    .profile-settings .profile-card {
        background-color: var(--color-3);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }


        .profile-settings .form-control:focus {background-color:transparent;
            border-color: var(--secondary-color);
            box-shadow: 0 0 5px var(--secondary-color);
            color: #fff;
        }

    .profile-settings .btn-primary {
        background-color: var(--secondary-color);
        border: none;
    }

        .profile-settings .btn-primary:hover {
            background-color: #7a00cc;
        }

    .profile-settings .btn-outline-primary {
        border-color: var(--secondary-color);
        color: var(--secondary-color);
    }

        .profile-settings .btn-outline-primary:hover {
            background-color: var(--secondary-color);
            color: #fff;
        }

    .profile-settings .profile-pic img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid var(--secondary-color);
    }

.add-ons-modal {
    background: #1c1c2e;
    color: white;
    border-radius: 12px;
    border: 1px solid rgba(148, 11, 255, 0.4);
}

    .add-ons-modal .modal-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .add-ons-modal .modal-title {
        font-weight: 700;
    }

.section-title {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
}

.table-btn {
    width: 100%;
    background: #940BFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

.drink-list .drink-item {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 8px;
    padding: 15px 20px 15px 25px;
    margin-top: 12px;
    border: 1px solid #ccc;
    justify-content: space-between;
}
    .drink-list .drink-item img {
        width: 50px;
        height: 80px;
        object-fit: contain;
        margin-right: 10px;
    }
.drink-list .drink-info{
    max-width:220px;
}
.drink-list .drink-info h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.drink-list .drink-info p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 4px;
    font-weight:300;
}

.price-row {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    gap: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 6px;
}

    .qty-control button {
        background: #1c1c2e;
        border: 1px solid #666;
        border-radius: 6px;
        color: white;
        width: 28px;
        height: 28px;
        padding: 0;
        font-size: 16px;
    }

.proceed-btn {
    width: 100%;
    background: #940BFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    color: white;
}


/*******Payment tab start*********/
.payment-tabs {
    color: #fff;
}

    .payment-tabs .title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .payment-tabs .subtitle {
        font-size: 0.9rem;
        color: #ccc;
        margin-bottom: 15px;
    }

    /* Tabs Navigation */
    .payment-tabs .nav-tabs {
        border: none;
        margin-bottom: 20px;
        gap:15px;
    }

        .payment-tabs .nav-tabs .nav-link {
            border: none;
            background: #333;
            color: #fff;
            padding: 12px 20px;
            border-radius: 6px;
            margin-right: 10px;
            transition: 0.3s;
            width:100%;
            font-size:14px
        }

            .payment-tabs .nav-tabs .nav-link:hover {
                background: #444;
            }

            .payment-tabs .nav-tabs .nav-link.active {
                background: var(--secondary-color);
                color: #fff;
            }
        .payment-tabs .nav-tabs .nav-item{
            flex:1;
        }
        /* UPI Section */
        .payment-tabs .upi-section .upi-icons {
            display: flex;
            gap: 10px;
        }

        .payment-tabs .upi-section .upi-icons img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

    .payment-tabs .upi-section .upi-input-group {
        display: flex;
        gap: 10px;
    }


       /* .payment-tabs .upi-section .upi-input-group button {
            background: var(--secondary-color);
            border: none;
            padding: 8px 15px;
            color: white;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }
*/
           

    .payment-tabs .upi-section .upi-hint {
        font-size: 0.8rem;
        color: #bbb;
        margin-top: 8px;
    }
    .payment-tabs label{
        font-size:12px;
        margin-bottom:10px;
    }
    /* Credit Card Section */
    .payment-tabs .card-preview .card-mock {
        background: var(--secondary-color);
        color: white;
        padding: 20px 30px;
        border-radius: 15px;
        position: relative;
        min-height: 190px;
        max-width: 350px;
        margin: auto;
    }
.card-logo{
    max-width:70px;
}

.payment-tabs .card-preview .card-mock .left {
    font-weight: 500;
    font-size: 20px;
}

        .payment-tabs .card-preview .card-mock .card-number {
            font-size: 1.2rem;
            margin-top: 40px;
            letter-spacing: 2px;
        }

        .payment-tabs .card-preview .card-mock .card-expiry {
            margin-top: 10px;
            font-size: 16px;
        }

  /*  .payment-tabs .card-form input {
        background: #222;
        border: 1px solid #666;
        border-radius: 6px;
        color: #fff;
        padding: 8px 10px;
    }*/

        .payment-tabs .card-form input::placeholder {
            color: #aaa;
        }

    .payment-tabs .card-form .btn-5 {
        background: var(--secondary-color);
        border: none;
        width: 100%;
        padding: 10px;
        color: white;
        font-size: 1rem;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 10px;
        transition: 0.3s;
    }

        .payment-tabs .card-form .btn-5:hover {
            background: #822cc7;
        }

    /* Net Banking Section */
    .payment-tabs .bank-options {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

        .payment-tabs .bank-options .bank-radio {
            background: #222;
            border-radius: 8px;
            padding: 10px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

            .payment-tabs .bank-options .bank-radio:hover {
                background: #333;
            }

            .payment-tabs .bank-options .bank-radio input {
                display: none;
            }

            .payment-tabs .bank-options .bank-radio span {
                font-size: 0.9rem;
            }

    .payment-tabs select {
        background: #222;
        border: 1px solid #666;
        color: #fff;
        border-radius: 6px;
        padding: 8px 10px;
        width: 100%;
    }

/*********** ticket-preview-modal start *************/
.ticket-preview-modal .ticket-content {
    background: linear-gradient(180deg, #1c0034, #3b0076);
    color: #fff;
    border-radius: 15px;
}

    .ticket-preview-modal .ticket-content .modal-title {
        color: #fff;
        font-weight: bold;
    }

    .ticket-preview-modal .ticket-content .booking-status {
        color: #ccc;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .ticket-preview-modal .ticket-content .welcome-text {
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

.ticket-preview-modal .ticket-wrapper {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .ticket-preview-modal .ticket-wrapper .ticket-qr::before {
        content: "";
        position: absolute;
        top: 0;
        right: -12px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: #1a1a1a;
        border-radius: 50%;
    }

    .ticket-preview-modal .ticket-wrapper .ticket-qr::after {
        content: "";
        position: absolute;
        bottom: -12px;
        right: -12px;
        width: 24px;
        height: 24px;
        background: #1a1a1a;
        border-radius: 50%;
    }
.ticket-preview-modal .welcome-text {
    margin-bottom: 20px;
}

.ticket-preview-modal .ticket-wrapper .ticket-qr {
    background: #fff;
    padding: 20px;
    text-align: center;
    flex: 1;
    position: relative;
    border-right: 4px dashed transparent;
    border-image: repeating-linear-gradient( to bottom, black 0, black 4px, transparent 4px, transparent 12px ) 1;
    z-index: 2;
}
    .ticket-preview-modal .ticket-wrapper .ticket-qr img {
        width: 120px;
        height: 120px;
    }

    .ticket-preview-modal .ticket-wrapper .ticket-qr .booking-ref {
        font-size: 0.8rem;
        margin-top: 10px;
        color: #666;
    }

    .ticket-preview-modal .ticket-wrapper .ticket-qr .booking-code {
        font-size: 1rem;
        font-weight: bold;
    }

    .ticket-preview-modal .ticket-wrapper .ticket-qr .booking-note {
        font-size: 0.7rem;
        color: #666;
        margin-top: 5px;
    }


.ticket-preview-modal .ticket-wrapper .ticket-info {
    flex: 1;
    background: #f7f7f7;
    padding: 20px;
}

    .ticket-preview-modal .ticket-wrapper .ticket-info .venue-name {
        font-size: 1.2rem;
        font-weight: bold;
        color: #000;
    }
.ticket-preview-modal .ticket-detail span {
    color: #000;
}

.ticket-preview-modal .ticket-wrapper .ticket-info .ticket-type {
    color: #777;
    margin-bottom: 5px;
}

.ticket-preview-modal .ticket-wrapper .ticket-info .ticket-price {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.ticket-preview-modal .ticket-wrapper .ticket-info .ticket-detail {
    font-size: 0.9rem;
    margin-bottom: 8px;
}


/**********ticket-preview-modal end************/



.offers-slider {
    padding: 50px 0;
    /* margin: 20px 0; */
    max-width: 90%;
    margin: auto;
}

    .offers-slider .new-offer-card {
        width: 190px;
        height: 280px;
        background: linear-gradient(180deg, #a835ff, #5b00b4);
        color: white;
        text-align: center;
        padding: 20px;
        font-family: Arial, sans-serif;
        border-radius: 15px;
        position: relative;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        border: 2px solid #fff;
    }
.offerSwiper .swiper-button-next, .offerSwiper .swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #58595b;
}
    .offerSwiper .swiper-button-next::after, .offerSwiper .swiper-button-prev::after {
        font-size: 20px;
    }
    /* Ticket-style round cuts */
    .offers-slider .new-offer-card::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 20px; /* half height */
        background: #0b021b;
        border-radius: 40px 40px 0 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        border-top: 2px solid #fff;
        bottom: -3px;
    }
        .offers-slider .new-offer-card::before {
            content: "";
            position: absolute;
            width: 40px;
            height: 20px;
            background: #0b021b;
            border-radius: 0 0 40px 40px;
            left: 50%;
            top: -3px;
            transform: translateX(-50%);
            z-index: 2;
            border-bottom: 2px solid #fff;
        }

       /* .offers-slider .new-offer-card::before {
            top: -23px;
        }

        .offers-slider .new-offer-card::after {
            bottom: -20px;
        }*/

        /* Text styles */
        .offers-slider .new-offer-card h3 {
            font-size: 22px;
            font-weight: bold;
            margin: 0;
        }

            .offers-slider .new-offer-card h3 span {
                color: #ff5eea;
            }

        .offers-slider .new-offer-card .divider {
            width: 80%;
            height: 2px;
            background: repeating-linear-gradient( to right, transparent, transparent 4px, #fff 4px, #fff 8px );
            margin: 10px auto;
        }

        .offers-slider .new-offer-card h1 {
            font-size: 70px;
            margin: 15px 0 5px;
        }

            .offers-slider .new-offer-card h1 span {
                color: #ff5eea;
            }

        .offers-slider .new-offer-card p {
            font-size: 24px;
            letter-spacing: 1px;
            margin: 0;
        }

.offerSwiper {
    overflow: hidden;
}
.menu-img{
    border-radius:30px;
    border:1px solid #ccc;
}

.offerSwiper .swiper-slide {
    width: 230px !important; 
}
#map {
    z-index:2;
}

.newOfferSwiper  {
    overflow:hidden;
}
    .newOfferSwiper .swiper-slide {
        width: 180px !important;
    }
.explore-event-swiper .event-img img {
     max-width: 100%;
}
.new-offer-card h3, .new-offer-card h1 {
    font-weight: bold;
    background: linear-gradient(to right, #fff 40%, #ff66ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
}
.newOfferSwiper  .swiper-slide-prev {
    transform: scale(.8);
}


body {
    margin: 0;
    position: relative;
    color: #fff;
    background-attachment: fixed;
}

    body::before {
        content: "";
        position: fixed;
        inset: -50%; 
        width: 200%;
        height: 200%;
        animation: moveGradient 15s infinite linear;
        filter: blur(100px);
        z-index: 0;
    }

@keyframes moveGradient {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(25%, -25%) rotate(90deg);
    }

    50% {
        transform: translate(-20%, 25%) rotate(180deg);
    }

    75% {
        transform: translate(25%, 25%) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.gradient-page-1::before {
    background: radial-gradient(circle at 30% 30%, rgb(59 18 111), transparent 70%), radial-gradient(circle at 70% 70%, rgb(15 7 32), transparent 70%), radial-gradient(circle at 50% 50%, rgb(122 10 213), transparent 80%);
}

.gradient-page-2::before {
    background: radial-gradient(circle at 20% 40%, rgba(255,200,0,0.5), transparent 70%), radial-gradient(circle at 80% 60%, rgba(255,0,100,0.5), transparent 70%), radial-gradient(circle at 60% 20%, rgba(0,200,255,0.4), transparent 80%);
}

.gradient-page-3::before {
    background: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.4), transparent 80%), radial-gradient(circle at 80% 30%, rgba(255,100,0,0.5), transparent 70%), radial-gradient(circle at 30% 70%, rgba(200,0,255,0.5), transparent 80%);
}

.gradient-page-4::before {
    background: radial-gradient(circle at 20% 20%, rgba(150,0,255,0.5), transparent 70%), radial-gradient(circle at 70% 80%, rgba(0,255,150,0.5), transparent 70%), radial-gradient(circle at 40% 60%, rgba(255,255,0,0.4), transparent 80%);
}
.top-picks{
    z-index:1;
    position:relative;
}
.res-card .card-body small {
    color: #ccc;
    font-size:12px;
}
.white-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(146deg) brightness(121%) contrast(121%);
}
.swiper-slide-prev{
    right:0 !important; 
}
.myTimeSwiper {
    height: 250px; /* joto height chai set koro */
}

.myTimeSwiper {
    height: 300px; /* control visible area */
    width: 250px; /* 2 column fit */
}

    .myTimeSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Scope everything so it doesn't affect other swipers */
.time-select-swiper {
    --slot-bg: #3a3b40;
    --slot-text: #dfe3ea;
    --slot-active: #7a31ff;
    --slot-disabled: 0.5;
    width: 100%;
    max-width: 560px; /* adjust to your layout */
    margin-inline: auto;
}

    .time-select-swiper .myTimeSwiper {
        height: 300px; /* 3 rows visible; adjust if needed */
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }

    .time-select-swiper .swiper-slide {
        /* each slide is one ROW with 4 items */
        display: flex;
        align-items: center;
        padding: 0 8px;
    }

    .time-select-swiper .time-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

.myDateSwiper {
    height: 300px; /* control visible area */
    width: 250px; /* 2 column fit */
}

    .myDateSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Scope everything so it doesn't affect other swipers */
.date-select-swiper {
    --slot-bg: #3a3b40;
    --slot-text: #dfe3ea;
    --slot-active: #7a31ff;
    --slot-disabled: 0.5;
    width: 100%;
    max-width: 560px; /* adjust to your layout */
    margin-inline: auto;
}

.date-select-swiper .myDateSwiper {
    height: 300px; /* 3 rows visible; adjust if needed */
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

    .date-select-swiper .swiper-slide {
        /* each slide is one ROW with 4 items */
        display: flex;
        align-items: center;
        padding: 0 8px;
    }

    .date-select-swiper .date-row {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    /* Keep your label+input structure */
    .time-select-swiper .time-radio {
        display: block;
        width: 100%;
    }

        .time-select-swiper .time-radio input {
            display: none;
        }

            .time-select-swiper .time-radio span:active {
                transform: scale(0.98);
            }

        .time-select-swiper .time-radio input:checked + span {
            background: var(--secondary-color);
            color: #fff;
            box-shadow: 0 0 0 2px rgba(122,49,255,.35) inset;
        }

        .time-select-swiper .time-radio input:disabled + span {
            opacity: var(--slot-disabled);
            cursor: not-allowed;
        }

.time-select-swiper .time-nav-btn, .date-select-swiper .time-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    line-height: 36px;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(4px);
    cursor: pointer;
    width: 32px;
    height: 32px;
}

    .time-select-swiper .time-nav-btn:hover, .date-select-swiper .time-nav-btn:hover {
        background: rgba(255,255,255,0.18);
    }

/* Responsive tweak: on very small screens allow 2 columns per row */
@media (max-width: 420px) {
    .time-select-swiper .time-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.addOnsModal .modal-dialog{
    max-width:1000px;
}

.QTY {
    display: inline-flex; 
    align-items: center;
    gap: 6px; 
}

    .QTY::before {
        content: "";
        width: 10px;
        height: 10px;
        background: #940bff;
        border-radius: 50%;
        display: inline-block;
        flex: 0 0 10px;
    }

.selected-drinks {
    max-height: 400px; /* scroll area */
    overflow-y: auto;
    background: #1f2128; /* dark background */
    padding: 12px;
    border-radius: 8px;
}

    .selected-drinks .drink-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border:none;
        border-radius: 0;
        border-bottom: 2px solid rgba(255,255,255,0.5) !important;
    }

        .selected-drinks .drink-item:last-child {
            border-bottom: none;
        }

    .selected-drinks .drink-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        color: #fff;
        font-size: 14px;
        max-width: 60%;
    }

    .selected-drinks .drink-name {
        margin: 0;
        font-weight: 500;
        line-height: 1.4;
        max-width: 200px;
        color: #fff;
    }

    .selected-drinks .counter {
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .selected-drinks .drink-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
    }

        .selected-drinks .drink-meta .price {
            font-weight: 600;
        }

        .selected-drinks .drink-meta .volume {
            position: relative;
            padding-left: 16px; 
        }

            .selected-drinks .drink-meta .volume::before {
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                width: 10px;
                height: 10px;
                background: #940bff;
                border-radius: 50%;
                transform: translateY(-50%);
            }
.all-cart-items .cart-item {
    background: #565759;
}

.order-summery table td {
    padding: 18px 12px;
    background-color: #58595b;
    border-bottom-width: 0;
    box-shadow: none;
    border-radius: 6px;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
    font-weight: 500;
}
.order-summery table th {
    padding: 14px;
    background-color: transparent;
    border-bottom-width: 0;
    box-shadow: none;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
    font-weight: 400;
}
.order-summery .table {
    border-spacing: 0 10px;
    border-collapse: separate;
}
.order-summery .offers ul.offer-list li.offer-item {
    background-color: #58595b;
    padding: 18px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    user-select: none;
    
}
    .order-summery .offers ul.offer-list li.offer-item strong {
        font-size: 18px;
    }

.sub-total-area {
    width: 250px;
    margin: auto;
}
    .sub-total-area .d-flex {
        align-items:center;
    }
        .sub-total-area .d-flex h6, .sub-total-area .d-flex h5 {
            width: 90px;
            text-align: right;
            margin-right: 10px;
        }
            .sub-total-area .d-flex h5{
                font-size:20px;
            }
            .sub-total-area .d-flex p {
                padding: 6px;
                margin-bottom: 6px;
                background: #58595b;
                width: 150px;
                text-align: center;
                border-radius: 5px;
            }
.download-ticket button {
    margin-bottom: 15px;
    width: 170px;
}
.qr-footer {
    text-align: center;
    width: 160px;
    margin-left: auto;
}
.qr-footer img {
    width: 100px;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 10px;
}
.qr-footer p{
    font-size:12px;
}
.new-footer-links{
    list-style:none;
    display:flex;
    align-items:center;
    margin-bottom:0;
    gap:25px;
    padding-left:0;
}
    .new-footer-links a {
        font-size: 18px;
        letter-spacing: .6px;
        font-weight: 500;
    }
    .new-footer-icon-list {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 30px;
        justify-content: center;
    }
.footer-logo-links{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}
.new-footer-copyright p {
    font-size: 14px;
    letter-spacing: 1px;
    color:#ccc;
    max-width:60%;
}
.footer-inner{
    padding: 0 30px;
}
.c-divider {
    position: relative;
    border: none;
    height: 5px;
    margin: 20px auto;
    width: 70%;
}

    .c-divider::before,
    .c-divider::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        display: block;
    }

    .c-divider::before {
        background: linear-gradient( to right, rgba(0, 0, 0, 0), 
        black, 
        rgba(0, 0, 0, 0) 
        );
        height: 5px; 
        bottom: 0;
    }

    .c-divider::after {
        background: radial-gradient( at 50% 0%, rgba(0, 0, 0, 0.25),
        transparent 40% );
        height: 12px; 
        top: 100%;
    }
.selectClubTicket .ticket-card {
    background-color: #1E1E1E;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.selectClubTicket .ticket-card:hover {
    background-color: var(--secondary-color);
}

.selectClubTicket .ticket-card.active {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.selectClubTicket .ticket-info .ticket-type {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.selectClubTicket .ticket-info {
    text-align: left;
}

    .selectClubTicket .ticket-info .ticket-desc {
        font-size: 12px;
        color: #bbb;
        margin: 2px 0 0;
    }

.selectClubTicket .ticket-price p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.selectClubTicket .ticket-price small {
    font-size: 12px;
    color: #999;
    display: block;
}
#otpError {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

#loginBtn{
    margin-left:15px;
}
._failed {
    border-bottom: solid 4px red !important;
}

    ._failed i {
        color: red !important;
    }

._success {
    box-shadow: 0 15px 25px #00000019;
    padding: 45px;
    width: 100%;
    max-width:500px;
    text-align: center;
    margin: 40px auto;
    border-bottom: solid 4px #28a745;
    background: #ffffff17;
    border-radius: 8px; 
    position:relative;
    z-index:2;
}

    ._success i {
        font-size: 55px;
        color: #28a745;
    }

    ._success h2 {
        margin-bottom: 12px;
        font-size: 40px;
        font-weight: 500;
        line-height: 1.2;
        margin-top: 10px;
        color: #fff;
    }
    ._success p {
        margin-bottom: 0px;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }

.filter-card {
    background: #1e0d2b40;
    color: #fff;
    border: 2px solid #940bff;
}

.order-card {
    background: linear-gradient(145deg, #2a00520f, #17002940);
    border: 1px solid #940bff;
    color: #fff;
}

    .order-card .price {
        font-weight: 600;
        color: #ffea00;
    }

.btn-invoice {
    background: #940BFF;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
}

.status {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
}

    .status.booked {
        background: #004d40;
        color: #aefaff;
    }

    .status.completed {
        background: #333;
        color: #fff;
    }

    .status.inprocess {
        background: #ff9800;
        color: #fff;
    }

/* keep your checkbox design */
.custom-check input[type="checkbox"] {
    accent-color: #940BFF;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
#userQrCode img{
    margin:auto;
}
.hero-slider {
    width: 100%;
}

    .hero-slider .container {
        max-width: 1200px;
    }

    .hero-slider .swiper {
        width: 100%;
        height: 550px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .hero-slider .swiper-slide {
        width: 100%;
        height: 100%;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .hero-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.swiper-pagination-bullet {
    background: white;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #ff5c5c;
    opacity: 1;
}


.point-wallet-card {
    position: relative;
    background: #141318;
    border-radius: 16px;
    padding: 40px 40px;
    overflow: hidden;
    z-index: 1;
}

    /* gradient border effect */
    .point-wallet-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px; /* border thickness */
        background: linear-gradient( 135deg, var(--secondary-color), var(--primary-color), var(--secondary-color) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: -1;
    }

    .point-wallet-card h5 {
        color: #b0a7ff;
        font-weight: 400;
        margin-bottom:20px;
    }

    .point-wallet-card .wallet-balance {
        font-size: 2rem;
        font-weight: 600;
        margin: 10px 0 25px;
    }

.point-wallet-card .btn {
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 500;
}

    .point-wallet-card .btn-transfer, .btn-redeem {
        background: linear-gradient(90deg, #7a0eff, #a049ff);
        border: none;
        color: #fff;
    }

.transaction-card {
    background: rgb(20 19 24);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index:1;
}
    .transaction-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 1px; /* border thickness */
        background: linear-gradient( 135deg, var(--secondary-color), var(--primary-color), var(--secondary-color) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: -1;
    }

        .point-wallet-card .transaction-card small {
            color: #b5b5b5;
        }

.transaction-value.plus {
        color: #4aff88;
        font-weight: 600;
    }

 .transaction-value.minus {
        color: #ff4a4a;
        font-weight: 600;
    }



.landing-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.login-btn {
    background: transparent;
    border: 1px solid #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

    .login-btn:hover {
        background: rgba(255,255,255,0.2);
    }

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    flex-wrap: wrap;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #7209b7;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .cta-btn:hover {
        background: #ffe5f4;
    }

.hero-image img {
    max-width: 500px;
    /* width: 100%; */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 0.4rem;
    }

        .footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-image img {
        margin-top: 2rem;
    }
}
.update-profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.update-profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.haut-logo {
    width: 100px;
    margin-bottom: 10px;
}

.profile-pic-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

    .profile-pic-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid white;
    }

.camera-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #a020f0;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid white;
}

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        color: #ccc;
    }

    .input-icon input {
        width: 100%;
        padding: 12px 45px 12px 40px;
        border-radius: 10px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 14px;
    }

        .input-icon input::placeholder {
            color: #bbb;
        }

.action-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #9d00ff;
    border: none;
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

    .action-btn:hover {
        background: #b92eff;
    }

.update-btn {
    width: 100%;
    background: #9d00ff;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

    .update-btn:hover {
        background: #b92eff;
    }


/* Global SweetAlert2 Custom Styling */
.swal2-popup {
   padding:25px !important;
}

/* Title styling */
.swal2-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

/* Button styling */
.swal2-confirm,
.swal2-cancel {
    border: none;
    padding: 12px 18px;
    height: 40px;
    min-width: fit-content;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #940BFF;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

    .swal2-confirm:hover,
    .swal2-cancel:hover {
        color: #940BFF;
        background: #fff;
    }
.orderList {
    max-height: 400px;
    overflow: auto;
}