:root {
  --primary-purple: #9c67a3;
  --secondary-purple: #73579c;
  --dark-purple: #c875ab;
  --light-purple: #f3e2ef;
  --light: #fff;
}
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
header,
main,
nav,
section {
  display: block
}
ul,
ol {
  list-style-type: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus {
  outline: none;
  box-shadow: none;
}
.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@font-face {
  font-family: 'neb';
  src: url('../fonts/Nebulica-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'neb-med';
  src: url('../fonts/Nebulica-Medium.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'neb-lit';
  src: url('../fonts/Nebulica-ExtraLight.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'neb', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--light-purple);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Header Styles */
.main-header {
  background: var(--primary-purple);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(185, 150, 212, 0.3);
}
.navbar {
  padding: 0.3rem 0;
  transition: padding 0.3s ease;
}
.navbar.scrolled {
  padding: 0.5rem 0;
}
.navbar-brand {
  color: white !important;
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.brand-icon::before {
  content: '◆';
  color: white;
  font-size: 18px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-title {
  font-size: 1.8rem;
  font-weight: 400;
}
.brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -2px;
}
/* Desktop Navigation */
.navbar-nav {
  gap: 2rem;
}
.nav-link {
  color: var(--light) !important;
  font-family: 'neb-lit', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0 !important;
  transition: all 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px);
}
/* CTA Button */
.cta-button {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white !important;
}
/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 0;
  background: none;
}
.mobile-menu-icon {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-icon.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.mobile-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  backdrop-filter: blur(20px);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-nav-link {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}
.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.7) !important;
  transform: scale(1.1);
}
.mobile-cta {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease 0.5s;
}
.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
}
.mobile-menu.active .mobile-menu-close {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
.mobile-menu-close:active {
  transform: scale(0.95);
}
/* Content spacing */
.content {
  margin-top: 100px;
  padding: 3rem 0;
}
/* Responsive Design */
@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .brand-title {
    font-size: 1.5rem;
  }
  .brand-subtitle {
    font-size: 0.65rem;
  }
}
/* Main Slider Styles */
.main-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 80px;
  z-index: -1;
}
.main-swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}
.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 500px;
  color: white;
  text-align: left;
}
.slide-img {
  top:20%!important;
  left: -10%!important;
  position: relative!important;
 width: 100%!important;
 max-width: 350px!important;
 height: auto!important;
 transition: all 1s ease!important;
}
.slide-title {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  font-family: 'neb-med', sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.slide-description {
  opacity: 0;
  transform: translateY(30px);
  margin-top: -15px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.slide-description-two {
  opacity: 0;
  transform: translateY(30px);
  margin-top: 0px;
  font-weight: 600;
  letter-spacing: 0.8px;

}

/* Pagination */
.swiper-pagination {
  bottom: 30px !important;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .slide-text {
    left: 5%;
    max-width: 70%;
  }
  .slide-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .slide-text {
    max-width: 80%;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .main-slider {
    height: 80vh;
  }
  .slide-text {
    top: 40%;
    max-width: 90%;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.main-slider .swiper-pagination {
  text-align: start !important;
  margin-left: 3rem;
}
.main-slider .swiper-pagination-bullet {
  background-color: var(--secondary-purple) !important;
  opacity: 1;
}
.main-slider .swiper-pagination-bullet-active {
  height: 5px;
  width: 50px;
  border-radius: 5px;
  background-color: var(--light) !important;
}
.wall {
  display: none;
  /* padding: 3rem;
  z-index: 9;
  position: absolute;
  bottom: 0;
  right: 0;
  --priBg: 30 32 34;
  --secBg: 49 49 49;
  --bg: #fff;
  --txtClr: rgba(186, 229, 253, 0.8);
  --matchBg: linear-gradient(to bottom right, #050708, #303339); */
}
.wall>* {
  z-index: 1;
}
.component-header {
  position: relative;
}
#redirectTo {
  display: none;
}
@media (max-width: 1024px) {
  .component-header h2 {
    font-size: 1.5em;
  }
  .component-header button {
    --wh: 2em;
  }
}
.clock {
  display: flex;
  gap: 0.25rem;
  transform: skewX(-10deg);
}
@media (min-width: 1024px) {
  .clock {
    gap: 0.5rem;
  }
}
.digit {
  &>* {
    transition: 0.3s;
  }
  width: 0.75rem;
  height: 1.5rem;
  position: relative;
  span {
    background: rgb(var(--priBg) / 15%);
    box-shadow: inset 0px 0px 6px rgb(var(--priBg) / 15%);
  }
  span:nth-of-type(1) {
    left: -0.1rem;
  }
  span:nth-of-type(2),
  span:nth-of-type(5) {
    width: 100%;
    height: 0.15rem;
    display: inline-block;
    position: absolute;
  }
  @media (min-width: 1024px) {
    span:nth-of-type(2),
    span:nth-of-type(5) {
      height: 0.25rem;
    }
  }
  span:nth-of-type(1),
  span:nth-of-type(3),
  span:nth-of-type(4),
  span:nth-of-type(6) {
    width: 0.15rem;
    height: 50%;
    display: inline-block;
    position: absolute;
    clip-path: polygon(50% 0, 100% 20%, 100% 90%, 50% 98%, 0 86%, 0 20%);
  }
  @media (min-width: 1024px) {
    span:nth-of-type(1),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(6) {
      width: 0.3rem;
    }
  }
  span:nth-of-type(2) {
    top: -0.05rem;
    clip-path: polygon(5% 0, 95% 0, 80% 100%, 20% 100%);
  }
  span:nth-of-type(3) {
    right: -0.1rem;
  }
  span:nth-of-type(4) {
    right: -0.1rem;
    bottom: 0px;
    clip-path: polygon(50% 3%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 16%);
  }
  span:nth-of-type(5) {
    bottom: -0px;
    clip-path: polygon(8% 0, 92% 0, 80% 100%, 22% 100%);
    transform: rotate(180deg);
  }
  span:nth-of-type(6) {
    bottom: 0px;
    left: -0.1rem;
    clip-path: polygon(50% 3%, 100% 15%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  }
  span:nth-of-type(7) {
    width: 0.15rem;
    height: 45%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  }
  @media (min-width: 1024px) {
    span:nth-of-type(7) {
      width: 0.3rem;
    }
  }
  &[data-digit="0"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(6) {
      background: var(--bg);
    }
  }
  &[data-digit="1"] {
    span:nth-of-type(3),
    span:nth-of-type(4) {
      background: var(--bg);
    }
  }
  &[data-digit="2"] {
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(7),
    span:nth-of-type(5),
    span:nth-of-type(6) {
      background: var(--bg);
    }
  }
  &[data-digit="3"] {
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-digit="4"] {
    span:nth-of-type(1),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-digit="5"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-digit="6"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(6),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-digit="7"] {
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4) {
      background: var(--bg);
    }
  }
  &[data-digit="8"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(6),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-digit="9"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
}
@media (min-width: 1024px) {
  .digit {
    width: 1.5rem;
    height: 3rem;
  }
}
.small-digit {
  height: 0.75rem;
  position: relative;
  .digit>* {
    transition: 0.3s;
  }
  span {
    background: rgb(var(--priBg) / 15%);
    box-shadow: inset 0px 0px 6px rgb(var(--priBg) / 15%);
  }
  span:nth-of-type(1),
  span:nth-of-type(3),
  span:nth-of-type(4),
  &[data-letter="m"] span:nth-of-type(7),
  &[data-letter="m"] span:nth-of-type(8),
  span:nth-of-type(6) {
    display: inline-block;
    width: 0.1rem;
    height: 50%;
    position: absolute;
    clip-path: polygon(50% 0, 100% 20%, 100% 90%, 50% 98%, 0 86%, 0 20%);
  }
  @media (min-width: 1024px) {
    span:nth-of-type(1),
    span:nth-of-type(3),
    span:nth-of-type(4),
    &[data-letter="m"] span:nth-of-type(7),
    &[data-letter="m"] span:nth-of-type(8),
    span:nth-of-type(6) {
      width: 0.2rem;
    }
  }
  span:nth-of-type(1) {
    left: -0.1rem;
  }
  span:nth-of-type(2),
  &[data-letter="a"] span:nth-of-type(5),
  &[data-letter="p"] span:nth-of-type(5) {
    display: inline-block;
    width: 100%;
    height: 0.1rem;
    position: absolute;
  }
  @media (min-width: 1024px) {
    span:nth-of-type(2),
    &[data-letter="a"] span:nth-of-type(5),
    &[data-letter="p"] span:nth-of-type(5) {
      height: 0.15rem;
    }
  }
  &[data-letter="m"] span:nth-of-type(2) {
    width: 50%;
    left: 0px;
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] span:nth-of-type(2) {
      left: 0.05rem;
    }
  }
  span:nth-of-type(2) {
    top: -0.05rem;
    clip-path: polygon(5% 0, 95% 0, 80% 100%, 20% 100%);
  }
  span:nth-of-type(3) {
    right: -0.1rem;
  }
  &[data-letter="m"] span:nth-of-type(3) {
    left: 50%;
  }
  &[data-letter="a"] span:nth-of-type(4),
  &[data-letter="p"] span:nth-of-type(4),
  &[data-letter="m"] span:nth-of-type(6) {
    bottom: 0px;
    right: -0.1rem;
    clip-path: polygon(50% 3%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 16%);
  }
  &[data-letter="m"] span:nth-of-type(4) {
    display: inline-block;
    width: 0.1rem;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] span:nth-of-type(4) {
      width: 0.2rem;
    }
  }
  &[data-letter="m"] span:nth-of-type(5) {
    display: inline-block;
    width: 50%;
    height: 0.1rem;
    position: absolute;
    top: -0.05rem;
    right: -0.1rem;
    clip-path: polygon(5% 0, 95% 0, 80% 100%, 20% 100%);
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] span:nth-of-type(5) {
      height: 0.15rem;
      right: -0.15rem;
    }
  }
  &[data-letter="m"] span:nth-of-type(7) {
    right: -0.2rem;
    bottom: 0px;
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] span:nth-of-type(7) {
      right: -0.3rem;
    }
  }
  &[data-letter="a"] span:nth-of-type(5),
  &[data-letter="p"] span:nth-of-type(5) {
    bottom: -0px;
    clip-path: polygon(8% 0, 92% 0, 80% 100%, 22% 100%);
    transform: rotate(180deg);
  }
  &[data-letter="a"] span:nth-of-type(6),
  &[data-letter="p"] span:nth-of-type(6),
  &[data-letter="m"] span:nth-of-type(8) {
    left: -0.1rem;
    bottom: 0px;
  }
  &[data-letter="m"] span:nth-of-type(6) {
    top: 0px;
    right: -0.2rem;
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] span:nth-of-type(6) {
      right: -0.3rem;
    }
  }
  span:nth-of-type(6),
  &[data-letter="m"] span:nth-of-type(8) {
    clip-path: polygon(50% 3%, 100% 15%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  }
  &[data-letter="a"] span:nth-of-type(7),
  &[data-letter="p"] span:nth-of-type(7) {
    display: inline-block;
    width: 0.1rem;
    height: 45%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  }
  @media (min-width: 1024px) {
    &[data-letter="a"] span:nth-of-type(7),
    &[data-letter="p"] span:nth-of-type(7) {
      width: 0.2rem;
    }
  }
  &[data-letter="a"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(6),
    span:nth-of-type(7) {
      background: var(--bg);
    }
  }
  &[data-letter="m"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(4),
    span:nth-of-type(5),
    span:nth-of-type(6),
    span:nth-of-type(7),
    span:nth-of-type(8) {
      background: var(--bg);
    }
  }
  &[data-letter="p"] {
    span:nth-of-type(1),
    span:nth-of-type(2),
    span:nth-of-type(3),
    span:nth-of-type(7),
    span:nth-of-type(6) {
      background: var(--bg);
    }
  }
  &[data-letter="a"],
  &[data-letter="p"] {
    width: 0.4rem;
  }
  @media (min-width: 1024px) {
    &[data-letter="a"],
    &[data-letter="p"] {
      width: 0.75rem;
    }
  }
  &[data-letter="m"] {
    width: 0.6rem;
  }
  @media (min-width: 1024px) {
    &[data-letter="m"] {
      width: 1rem;
    }
  }
}
@media (min-width: 1024px) {
  .small-digit {
    height: 1.5rem !important;
  }
}
.dots {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  span {
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    background: var(--bg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
  }
  @media (min-width: 1024px) {
    span {
      width: 0.4rem;
      height: 0.4rem;
    }
  }
}
@media (min-width: 1024px) {
  .dots {
    gap: 0.25rem;
  }
}
.toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  label {
    display: inline-block;
    width: 2.75rem;
    height: 1.25rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 0.125rem;
    border-radius: 1rem;
  }
  label {
    background: var(--bg);
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.25);
    &:active::before {
      width: 1.25rem;
    }
    &::before {
      content: "";
      width: 1rem;
      height: 1rem;
      position: absolute;
      border-radius: 100%;
      top: 50%;
      left: 0.2rem;
      transform: translateY(-50%);
      transition: 0.3s;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1.2);
      box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.15);
      background-image: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
      z-index: 1;
    }
    &::after {
      content: "24";
      position: absolute;
      top: 50%;
      left: calc(100% - 1.2rem);
      color: var(--txtClr);
      transform: translateY(-45%);
      font-size: 0.6rem;
      font-weight: 600;
    }
  }
  input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
  &:has(input[type="checkbox"]:checked) label:active::before {
    left: calc(100% - 16px - 0.45rem);
    transform-origin: left;
  }
  &:has(input[type="checkbox"]:checked) label::after {
    content: "12";
    left: 0.4rem;
  }
  &:has(input[type="checkbox"]:checked) label::before {
    left: calc(100% - 16px - 0.2rem);
  }
}
.navbar-toggler:focus {
  box-shadow: unset !important;
}
.coming {
  padding: clamp(5rem, 5vw, 10rem) 0 3rem;
  position: relative;
}
.coming .row {
  padding: 0 5rem;
}
.coming .heading h1 {
  font-size: 10rem;
  color: var(--primary-purple);
}
.img-fluid {
  max-width: 100%;
}
.coming .heading h4 {
  position: absolute;
  left: 30%;
  transform: translate(130px, -53px);
  color: var(--primary-purple);
  font-size: 2.5rem;
}
.coming .heading h3 {
  padding-top: 1rem;
  border-top: 1.5px solid var(--primary-purple);
  border-bottom: 1.5px solid var(--primary-purple);
  color: var(--primary-purple);
  padding-bottom: 2rem;
}
.coming-btn {
  border: 1.4px solid var(--primary-purple);
  padding: 0.3rem 0.6rem;
  border-radius: 30px;
  transform: translate(-95px, -28px);
  position: absolute;
  background: var(--light-purple);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.coming-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-purple);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.coming-btn:hover {
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.coming-btn:hover::before {
  width: 300px;
  height: 300px;
}

.down-broch {
  margin: 4rem 10rem;
  text-align: center;
  position: relative;
}


/* Trinity Slider Styles */
.trinity-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
   padding: clamp(5rem, 5vw, 0rem) 0;
}
.trinity-slider::after{
  content: "";
  width: 225px;
  height: 225px;
  position: absolute;
  right: -100px;
  bottom: -70px;
  background: url("../images/trinityroll.svg") no-repeat center center;
  background-size: contain;
  z-index: 999;
  opacity: 0.9;
  pointer-events: none;
   animation: smooth-rotation 5s linear infinite forwards;
    will-change: transform;
    transform-origin: center;
    -webkit-animation: smooth-rotation 5s linear infinite forwards;
}


@keyframes smooth-rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.trinity-slider {
  width: 100%;
  overflow: visible;
  position: relative;
  padding: clamp(5rem, 5vw, 0rem) 0;
}
.trinity-swiper {
  width: 100%;
  height: 70vh;
}
.trinity-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trinity-swiper .swiper-slide .row {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

}
/* Navigation buttons */
.trinity-swiper .swiper-button-next,
.trinity-swiper .swiper-button-prev {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
 
  .trinity-swiper {
    height: 60vh;
  }
  .trinity-swiper .swiper-slide .col-md-6 {
    height: auto;
    padding: 1.5rem;
  }

}
@media (max-width: 768px) {
  .trinity-swiper {
    height: 50vh;
  }
  .trinity-swiper .swiper-button-next,
  .trinity-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .trinity-swiper .swiper-button-next::after,
  .trinity-swiper .swiper-button-prev::after {
    font-size: 1rem;
  }
 
  .trinity-swiper .swiper-slide:first-child .col-md-6:first-child {
    padding: 1rem;
  }
  .trinity-swiper .swiper-slide:first-child p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .trinity-swiper {
    height: 40vh;
  }
  .trinity-swiper .swiper-slide .col-md-6 {
    height: auto;
    padding: 1rem;
  }


}

@media (max-width: 768px) {
  .trinity-slider {
    padding: 2rem 1rem;
  }
}
.trinity-tri {
  position: absolute;
  z-index: 10;
 top: 28%;
  left: 34%;
  width: 52% !important;
  height: auto !important;
}
 .trinity-slider .swiper {
        width: 100%; /* Or a fixed width */
        height: 100%; /* Or a fixed height, e.g., 400px */
    }


/* Pagination */

  .trinity-swiper .swiper-pagination {
  text-align: start !important;
  margin-left: 1.8rem;
  bottom: -20px!important;
  margin-top: 2rem!important;
  padding: 1rem 0;
  /* position: relative!important; */
}

  .trinity-swiper .swiper-pagination-bullet {
  background-color: var(--secondary-purple) !important;
  opacity: 1;
}
  .trinity-swiper .swiper-pagination-bullet-active {
  height: 5px;
  width: 50px;
  border-radius: 5px;
  background-color: var(--light) !important;
}


.trinity-btn {
  border: 1.4px solid var(--primary-purple);
  padding: 0.3rem 0.6rem;
  border-radius: 30px;
  background: var(--light-purple);
  width: fit-content;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}
.trinity-btn:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.trinity-slider p{
  color: var(--secondary-purple);
  font-family: 'neb-med',sans-serif;
  font-size: 1.3rem;
}
.trinity-slider h2{
  color: var(--secondary-purple);
  font-size: 3rem;
  font-family: 'neb-med',sans-serif;
  
}
.trinity-slider h2:last-of-type{
margin-bottom: 4rem;
}
.trinity-slider p:last-of-type{
  font-family: 'neb-lit',sans-serif;
  color: var(--primary-purple);
}
.special{
  color: var(--dark-purple);
}

.tri-second-text{
  color: var(--secondary-purple)!important;
  font-weight: 600;
}

.trinity-city-btn{
    border: 1.4px solid var(--primary-purple);
  padding: 0.4rem 0.4rem;
  border-radius: 30px;
  background: var(--light-purple);
  color: var(--primary-purple);
  margin-bottom: 1rem;
  width: 100%;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.trinity-city-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-purple);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.trinity-city-btn:hover {
  transform: translateY(-3px);
  color: var(--light);
}
.trinity-city-btn:hover img{
  filter: brightness(0) invert(1);
}

.trinity-city-btn:hover::before {
  width: 300px;
  height: 300px;
}

footer{
  padding: 5rem 0;
}
footer h2{
  color: var(--secondary-purple);
}
footer p{
  color: var(--secondary-purple);
}
.form-control{
  border-radius: unset!important;
  background-color: transparent!important;
    border-bottom: 2px solid var(--dark-purple)!important;
padding: 0.5rem 0 1rem !important;
  border-right: 0!important;
  border-left: 0!important;
  border-top: 0!important;
}
.form-control::placeholder{
font-size: 1.4rem;
font-weight: 400!important;
color: #68616e!important;
opacity: 0.4!important;


}

.form-control:focus{
  box-shadow: unset!important;
  border-color: transparent!important;
}
.contact{
  padding: 5rem 0;
}
.contact h1{
  color: var(--secondary-purple);
}

label{
  color: var(--secondary-purple);
}

/* Hour Slider Styles */
.hour-slider {
  padding: 3rem 0;
}

.hour-swiper {
  padding: 6rem 0!important;
}


.hour-swiper .swiper-slide-active,
.hour-swiper .swiper-slide-duplicate-active {
  opacity: 1;
  transform: scale(1.05);
}





/* Responsive adjustments */
@media (max-width: 992px) {
  .hour-swiper .swiper-slide {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .hour-swiper .swiper-slide {
    width: 80%;
  }
  
  .hour-slider {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .hour-swiper .swiper-slide {
    width: 90%;
  }
}





/* Hour Slider Scrollbar Styles */
.hour-swiper .swiper-scrollbar {
       background: var(--secondary-purple);
            height: 1.8px!important;
            border-radius: 35px;
            position: relative;
            margin-top: 30px;
            overflow: visible;
            bottom: unset!important;
            margin-top: 3rem !important;
    display: block !important;
    clear: both;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 3rem;
  width: 90% !important;
}

.hour-swiper .swiper-scrollbar-drag {
     background: linear-gradient(90deg,  var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 35px;
            height: 27px;
            position: absolute;
            top: -13px; /* Reset positioning */
            margin-top: 0; /* Reset margin */
    cursor: grab;
    position: absolute;
    left: 0;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    display: block !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    pointer-events: auto !important;
}



.hour-swiper .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .swiper .swiper-scrollbar {
        height: 25px;
    }
}

@media (max-width: 768px) {
    .swiper .swiper-scrollbar {
        height: 20px;
    }
    
    .swiper .swiper-scrollbar-drag {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .swiper .swiper-scrollbar {
        height: 15px;
    }
}

.hour-slider h3{
  color: var(--secondary-purple);
  font-size: 2.5rem;
  font-family: 'neb-med',sans-serif;
  letter-spacing: 1.3px;
}
.hour-slider h4{
  color: var(--secondary-purple);
  font-size: 1.5rem;
  font-family: 'neb',sans-serif;
}
.hour-slider h5{
  color: var(--dark-purple);
  font-size: 4rem;
  font-family: 'neb-med',sans-serif;
}
.hour-card{
  background: var(--light);
  padding: 1.5rem;
  border-radius: 15px;
  position: relative;
  /* min-height: 568px; */
}



.hour-card::after{
  content: "";
width: 120px;
  height: 120px;
  position: absolute;
  right: -57px;
  bottom: 210px;
  background: url("../images/trinityroll.svg") no-repeat center center;
    background-size: auto;
  background-size: contain;
  z-index: 999;
  opacity: 0.9;
  pointer-events: none;
  animation: smooth-rotation 5s linear infinite forwards;
  will-change: transform;
  transform-origin: center;
  -webkit-animation: smooth-rotation 5s linear infinite forwards;
}

.trinity-base{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: var(--primary-purple);
  color: white;
  border: none;
  padding: 1.5rem;
}

.modal-title {
  font-family: 'neb-med', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 0.75;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body .form-label {
  color: var(--secondary-purple);
  font-weight: 600;
  margin-bottom: 0rem;
}

.modal-body .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100% !important;
 
}
.modal-header .btn-close:hover{
  border: 1px solid var(--light);
  border-radius: 50%;
}

.modal-body .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.25rem rgba(156, 103, 163, 0.25);
  outline: 0;
}

.modal-body .form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
}

.modal-body .form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.25rem rgba(156, 103, 163, 0.25);
  outline: 0;
}

.modal-body .form-check-input {
  border: 1px solid #ddd;
}

.modal-body .form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.know-more {
  background: var(--primary-purple);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.know-more:hover {
  background: var(--secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(115, 87, 156, 0.3);
}

.know-more:active {
  transform: translateY(0);
}

/* Responsive Modal Styles */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-header,
  .modal-body {
    padding: 1rem;
  }
  
  .modal-title {
    font-size: 1.25rem;
  }
  
  .know-more {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}



.submit-btn {
  border: 1.4px solid var(--primary-purple);
  padding: 0.5rem 2rem;
  border-radius: 30px;
  position: absolute;
  background: var(--light-purple);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
background: #9c67a3;
    color: #fff;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-purple);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.submit-btn:hover {
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.mob-enq {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    z-index: 999;
    border: 1.4px solid var(--primary-purple);
    padding: 0.5rem 2rem;
    background: var(--light-purple);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mob-enq::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-purple);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.mob-enq:hover {
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.mob-enq:hover::before {
  width: 100%;
  height: 100%;
}


.thank-you {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
        url('../images/banner/thank.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat:no-repeat;
}

.thankyou {
    padding-top: 10rem;
    padding-left: 2rem;
}

.glass-bg{
    background: rgba(0, 0, 0, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(0, 0, 0, 0.3);
padding: 3rem 2rem;
}


.bounce-top {
	-webkit-animation: bounce-top 2s steps(2, end) infinite both;
	        animation: bounce-top 2s steps(2, end) infinite both;
}

@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
.thankyou h1{
  color: var(--light);
}
.thankyou p{
  color: var(--light);
}

.modal-body .form-control:nth-child(1){
    height:40%!important;
}
.modal-body .form-control:nth-child(2){
    height:40%!important;
}




.video-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-swiper .swiper-slide .row {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

}
/* Navigation buttons */
.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
 
  .video-swiper {
    height: 60vh;
  }
  .video-swiper .swiper-slide .col-md-6 {
    height: auto;
    padding: 1.5rem;
  }

}
@media (max-width: 768px) {
  .video-swiper {
    height: 50vh;
  }
  .video-swiper .swiper-button-next,
  .video-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .video-swiper .swiper-button-next::after,
  .video-swiper .swiper-button-prev::after {
    font-size: 1rem;
  }
 
  .video-swiper .swiper-slide:first-child .col-md-6:first-child {
    padding: 1rem;
  }
  .video-swiper .swiper-slide:first-child p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .video-swiper {
    height: 40vh;
  }
  .video-swiper .swiper-slide .col-md-6 {
    height: auto;
    padding: 1rem;
  }


}

@media (max-width: 768px) {
  .video-slider {
    padding: 2rem 1rem;
  }
}

 .video-swiper .swiper {
        width: 100%; /* Or a fixed width */
        height: 100%; /* Or a fixed height, e.g., 400px */
    }


/* Pagination */

  .video-swiper .swiper-pagination {
  text-align: end !important;
  /* margin-left: 1.8rem; */
  bottom: -20px!important;
  margin-top: 2rem!important;
  padding: 1rem 0;
  /* position: relative!important; */

}

  .video-swiper .swiper-pagination-bullet {
  background-color: var(--secondary-purple) !important;
  opacity: 1;
}
  .video-swiper .swiper-pagination-bullet-active {
  height: 5px;
  width: 50px;
  border-radius: 5px;
  background-color: var(--light) !important;
}

/* ===================================
   FF STORY SECTION
=================================== */
.ff-story {
  background: #f3e4f0;
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

.ff-story .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Optional decorative side arrows */
.ff-story::before,
.ff-story::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 82px;
  background: rgba(232, 186, 220, 0.28);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ff-story::before {
  left: 0;
  top: 100px;
}

.ff-story::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

/* ===================================
   ROW LAYOUT
=================================== */
.ff-story-row {
  display: flex;
  align-items: stretch;
  gap: 34px;
  margin-bottom: 34px;
}

.ff-story-row:last-child {
  margin-bottom: 0;
}

/* Row 2 flips order: text first, image second */
.ff-story-row--reverse {
  flex-direction: row-reverse;
}

/* ===================================
   IMAGE BLOCK (same height for all rows)
=================================== */
.ff-story-media {
  flex: 0 0 52%;
  height: 320px;
}

.ff-story-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

/* ===================================
   CONTENT BLOCK
   top = heading
   bottom = bigger mark image + text beside it
=================================== */
.ff-story-content {
  flex: 1;
  min-height: 320px; /* match image height */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 6px 0;
}

.ff-story-content-top {
  margin-bottom: 22px;
}

.ff-story-title {
  margin: 0;
  color: #7d5f86;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Bottom section */
.ff-story-content-bottom {
  display: flex;
  align-items: center; /* mark + text same orientation */
  gap: 18px;
}

/* Bigger decorative mark */
.ff-story-mark {
  flex: 0 0 150px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-story-mark-img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  display: block;
}

/* Fallback bars if SVG doesn't load */
.ff-story-mark--bars {
  width: 72px;
  height: 72px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ff-story-mark--bars span {
  width: 4px;
  height: 30px;
  background: #b26aa3;
  border-radius: 2px;
  display: block;
}

.ff-story-mark--bars span:nth-child(2),
.ff-story-mark--bars span:nth-child(4) {
  height: 22px;
  opacity: 0.85;
}

.ff-story-mark--bars span:nth-child(3) {
  height: 36px;
}

.ff-story-text-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.ff-story-text {
  margin: 0;
  color: #6f6173;
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}

/* ===================================
   TABLET
=================================== */
@media (max-width: 991px) {
  .ff-story-row {
    gap: 22px;
  }

  .ff-story-media {
    flex-basis: 50%;
    height: 260px; /* same height on tablet */
  }

  .ff-story-content {
    min-height: 260px;
  }

  .ff-story-title {
    font-size: 28px;
  }

  .ff-story-content-bottom {
    gap: 14px;
  }

  .ff-story-mark {
    flex: 0 0 70px;
    width: 70px;
  }

  .ff-story-mark-img,
  .ff-story-mark--bars {
    width: 58px;
    height: 58px;
  }

  .ff-story-mark--bars span {
    width: 3px;
    height: 24px;
  }

  .ff-story-mark--bars span:nth-child(2),
  .ff-story-mark--bars span:nth-child(4) {
    height: 18px;
  }

  .ff-story-mark--bars span:nth-child(3) {
    height: 28px;
  }

  .ff-story-text {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }
}

/* ===================================
   MOBILE
=================================== */
@media (max-width: 767px) {
  .ff-story {
    padding: 28px 0 22px;
  }

  .ff-story::before,
  .ff-story::after {
    display: none;
  }

  .ff-story-row,
  .ff-story-row--reverse {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  .ff-story-media {
    flex: none;
    height: auto;
  }

  .ff-story-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .ff-story-content {
    min-height: auto;
    padding: 0;
  }

  .ff-story-content-top {
    margin-bottom: 10px;
  }

  .ff-story-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .ff-story-content-bottom {
    align-items: center;
    gap: 12px;
  }

  .ff-story-mark {
    flex: 0 0 54px;
    width: 54px;
  }

  .ff-story-mark-img,
  .ff-story-mark--bars {
    width: 42px;
    height: 42px;
  }

  .ff-story-mark--bars span {
    width: 3px;
    height: 18px;
  }

  .ff-story-mark--bars span:nth-child(2),
  .ff-story-mark--bars span:nth-child(4) {
    height: 14px;
  }

  .ff-story-mark--bars span:nth-child(3) {
    height: 22px;
  }

  .ff-story-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }
}


/* ============================================================
   CONFIGURATION SECTION — append to bottom of style.css
   ============================================================ */

.config-slider {
  background: var(--light-purple);
  padding: 3rem 0 5rem;
}

/* Swiper container — needs overflow hidden to clip slides */
.config-swiper {
  overflow: hidden;
  padding: 1.5rem 0.5rem 0 !important;
  width: 100%;
}

/* Each slide — explicit height so all cards are equal */
.config-swiper .swiper-slide {
  height: auto;
}

/* ── Card ────────────────────────────────────────────────── */
.config-card {
  height: 240px !important;          /* fixed card height — matches desktop screenshot */
  display: flex;
  align-items: stretch;
  overflow: visible;
  position: relative;
}

/* Spinning circle: reposition to top-right (no image below it) */
.config-card::after {
  top: -30px !important;
  bottom: unset !important;
  right: -30px !important;
  width: 90px;
  height: 90px;
}

/* Inner flex layout */
.config-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 0.25rem 0 0.5rem;
}

/* ── Button ──────────────────────────────────────────────── */
.config-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid var(--secondary-purple);
  border-radius: 50px;
  background: transparent;
  color: #555;
  font-family: 'neb', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.config-btn:hover,
.config-btn:focus {
  background: var(--secondary-purple);
  color: #fff;
}

/* ── Scrollbar ───────────────────────────────────────────── */
.config-swiper .swiper-scrollbar {
  background: var(--secondary-purple);
  height: 1.8px !important;
  border-radius: 35px;
  position: relative !important;
  bottom: unset !important;
  margin: 2.5rem 3rem 0 !important;
  width: calc(100% - 6rem) !important;
  overflow: visible;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.config-swiper .swiper-scrollbar-drag {
  background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  border-radius: 35px;
  height: 27px;
  position: absolute;
  top: -13px;
  left: 0;
  cursor: grab;
  z-index: 10;
  display: block !important;
  pointer-events: auto !important;
  transition: all 0.3s ease;
}

.config-swiper .swiper-scrollbar-drag:active {
  cursor: grabbing;
}

/* active slide slight scale */
.config-swiper .swiper-slide-active .config-card {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

/* ── Responsive ──────────────────────────────────────────── */

/* Tablet */
@media (max-width: 991px) {
  .config-card {
    height: 220px !important;
    max-height: 220px !important;
  }
  .config-card::after {
    width: 70px;
    height: 70px;
    right: -18px !important;
    top: -18px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .config-slider {
    padding: 2rem 0 4rem;
  }
  .config-swiper .swiper-slide {
    height: auto !important;
    max-height: 200px !important;
  }
  .config-card {
    height: 200px !important;   /* compact — matches desktop proportions */
    max-height: 200px !important;
  }
  .config-card::after {
    width: 65px;
    height: 65px;
    right: -15px !important;
    top: -15px !important;
  }
  .config-btn {
    font-size: 0.85rem;
    padding: 0.45rem 1.2rem;
  }
  .config-swiper .swiper-scrollbar-drag {
    width: 80px !important;
  }
}

/* ==============================================
   AMENITIES SECTION — add to style.css
   ============================================== */

.amenities-section {
  background: var(--light-purple);
  width: 100%;
  margin-top: 0;
}

/* ----- Heading ----- */
.amenities-heading {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
}
/*
.amenities-heading h2 {
  font-family: 'neb', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--secondary-purple);
  letter-spacing: 6px;
  text-transform: uppercase;
  display: inline-block;
}

.amenities-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--dark-purple);
  margin: 0.5rem auto 0;
  border-radius: 2px;
} */

.amenities-heading p {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: var(--primary-purple);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

/* ----- Slider ----- */
.amenities-slider {
  width: 100%;
  overflow: hidden;
}

.amenities-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ----- Pagination ----- */
.amenities-slider .swiper-pagination {
  bottom: 1.2rem;
}

.amenities-slider .swiper-pagination-bullet {
  background: var(--secondary-purple);
  opacity: 0.4;
  width: 10px;
  height: 10px;
}

.amenities-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--dark-purple);
  transform: scale(1.2);
}

/* ----- DESKTOP: show 06/07/08, hide mobile slider ----- */
.amenities-desktop { display: block; }   /* visible above 768px */
.amenities-mobile  { display: none;  }   /* hidden  above 768px */

/* ----- MOBILE: hide desktop slider, show 09/10/11 ----- */
@media (max-width: 768px) {
  .amenities-desktop { display: none;  } /* hidden  at/below 768px */
  .amenities-mobile  { display: block; } /* visible at/below 768px */

  .amenities-heading {
    padding: 2.5rem 1rem 1.5rem;
  }
}

/* same heading for both configuration and aminities*/
.section-heading {
  font-family: 'neb', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--secondary-purple);        /* same color jo 3BHK/4BHK cards mein hai */
  letter-spacing: 6px;
  text-transform: uppercase;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--dark-purple);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.videoback {
  margin-top: 3rem; /* apni zaroorat ke hisaab se adjust karo */
}