: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: relative;
  text-align: right;
  margin-top:  -1.5rem;
  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: hidden;
  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;*/
   position: relative;
  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: auto !important;   /* compact — matches desktop proportions */
    min-height: 210px !important;
    padding-bottom: 12px;          /* <-- extra breathing space */
  }
  .config-card::after {
    width: 65px;
    height: 65px;
    right: -15px !important;
    top: -15px !important;
  }
    /* 2) Inner content: space-between ki jagah gap use karo */
  .config-content{
    justify-content: flex-start;   /* <-- prevent extremes */
    gap: 14px;                     /* <-- controlled spacing */
    padding: 0px 0 14px;          /* <-- bottom padding */
  }

  /* 3) Button wrapper ka mt-4 (bootstrap) mobile me reduce */
  .config-card .stat-item.mt-4{
    margin-top: 8px !important;
  }

  .config-btn {
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    line-height: 1.2;
  }
  .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: 500;
  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 */
}


/* ── banner Section ── */

.promo-banner{
  overflow: hidden;
  background: #f8fafc;      /* use your navy */
  padding: 54px 0;
}

.promo-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items:center;
  justify-content:center;
  gap: 48px;
}


/* LEFT: Logo (NO vw width) */
.promo-left{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.promo-logo-img{
  display: block;
  width: 260px;       /* default desktop size */
  max-width: 260px;
  height: auto;
}

/* Divider */
.promo-divider{
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.25);
}

/* RIGHT: Text block */
.promo-right{
   flex: 0 0 auto;           /* was 1 1 auto */
  width: max-content;       /* hugs the text block */
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Headline */
.promo-headline{
  margin: 0 0 14px 0;
  font-family: 'neb-med', sans-serif;
  text-transform: uppercase;

  font-size: clamp(24px, 3.2vw, 48px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: #9c67a3;
}

.promo-highlight{ color: #b9a56a; }

.promo-sub{
  margin: 0 0 10px 0;
  font-family: 'neb-med', sans-serif;
  text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 3px;
  color: #141414;
}

.promo-price{
  margin: 0 0 22px 0;
  font-family: 'neb-med', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 1px;
  color: #0e0d0d;
}

.promo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #9c67a3;
  color: #fff;
  border: none;
  text-decoration: none;
  font-family: 'neb', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─────────── Tablet (fix the 769 range) ─────────── */
@media (max-width: 997px){
  .promo-banner{ padding: 34px 0; }
  .promo-inner{ gap: 18px; padding: 0 16px; }

  /* logo shrinks smoothly so text gets space */
  .promo-logo-img{
    width: 200px;
    max-width: 200px;
  }
}

/* ─────────── Mobile ─────────── */
@media (max-width: 768px){

  .promo-banner{ 
    padding: 20px 0; 
  }

  .promo-inner{
    flex-direction: column;
    align-items: center;      /* CHANGED */
    text-align: center;       /* ADDED */
    gap: 1px;
    padding: 0 10px;          /* better mobile spacing */
  }

  .promo-left{
    justify-content: center;  /* ADDED */
    width: 100%;
  }

  .promo-right{
    align-items: center;      /* CHANGED */
    text-align: center;       /* ADDED */
  }

  .promo-divider{
    width: 80px;
    height: 1px;
    align-self: center;       /* CHANGED */
  }

  .promo-logo-img{
      display: block;
      width: 200px;
      height: auto;
      margin: 0;              /* slightly reduced for better balance */
  }

  .promo-btn{
    width: 100%;
    max-width: 280px;         /* ADDED - keeps button clean */
  }
}

/* ── Masterplan Section ── */
.masterpiece-section {
  background: var(--light-purple);
  padding: 4rem 0;
  width: 100%;
}

.masterpiece-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 0 3% 0 4%;
  gap: 3rem;
}

/* ── LEFT ── */
.masterpiece-left {
  flex: 1 1 55%;
  min-width: 0;
}

.masterpiece-title {
  font-family: 'neb', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color:var(--secondary-purple);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 100;
}

.masterpiece-map {
  width: 100%;
}

.masterpiece-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── RIGHT ── */
.masterpiece-right {
  flex: 0 0 40%;
  max-width: 40%;
  padding-top: 0.5rem;
}

.legends-title {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: #b8a46a;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

/* Arrow divider */
.legends-divider {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #b8a46a;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.divider-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #b8a46a;
}

/* Two-column numbered list */
.legends-grid {
  display: flex;
  gap: 1.5rem;
}

.legends-col {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  counter-reset: legend-counter;
}

.legends-col[start="15"] {
  counter-reset: legend-counter 14;
}

.legends-col li {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: #3a3530;
  line-height: 1.9;
  letter-spacing: 0.3px;
  counter-increment: legend-counter;
  display: flex;
  gap: 0.4rem;
}

.legends-col li::before {
  content: counter(legend-counter) ".";
  color: #3a3530;
  flex-shrink: 0;
  min-width: 22px;
}

.legend-services::before {
  content: "" !important;
  display: none;
}

/* ── TABLET (769–997px) ── */
@media (min-width: 769px) and (max-width: 997px) {
  .masterpiece-wrap {
    flex-direction: column;
    padding: 0 3%;
  }
  .masterpiece-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .masterpiece-left {
    flex: 0 0 100%;
  }
  .legends-grid {
    gap: 1rem;
  }
}

/* ── MOBILE (<=768px) ── */
@media (max-width: 768px) {
  .masterpiece-section {
    padding: 2.5rem 0;
  }
  .masterpiece-wrap {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 2rem;
  }
  .masterpiece-left,
  .masterpiece-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .masterpiece-title {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }
  .legends-grid {
    flex-direction: row;
    gap: 0;
  }
  .legends-col li {
    font-size: 0.8rem;
  }
}


/* ============================================================
   GALLERY SECTION — gallery.css
   ============================================================ */

   /* ══════════════════════════════════════════
   GALLERY SECTION — SWIPER VERSION
   Replace your old gallery CSS block
══════════════════════════════════════════ */

.gallery-section {
  background: var(--light-purple);
  padding: 5rem 0 6rem;
  overflow: hidden;
  position: relative;
}

/* Watermark */
.gallery-section::before {
  content: 'GALLERY';
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'neb-lit', sans-serif;
  font-size: 7rem;
  letter-spacing: 1.8rem;
  color: rgba(156, 103, 163, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4% 3rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.gallery-label {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c875ab;
  display: block;
  margin-bottom: 0.65rem;
}

.gallery-heading {
  font-family: 'neb', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--secondary-purple);
  letter-spacing: 7px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.gallery-heading-italic {
  font-family: 'neb-lit', sans-serif;
  color: #b8a46a;
  font-style: normal;
  letter-spacing: 7px;
}

.gallery-count {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: rgba(115, 87, 156, 0.1);
  letter-spacing: 3px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}


/* ══════════════════════════════════════════
   SWIPER WRAPPER
══════════════════════════════════════════ */
.gallery-swiper-wrap {
  padding: 0 4%;
  position: relative;
  z-index: 1;
}

/* Each slide width — show 2.2 on desktop for a peek effect */
.gallery-swiper .swiper-slide.gallery-slide {
  width: auto;
  height: 440px;
}

/* Desktop: ~2.2 slides visible */
@media (min-width: 769px) {
  .gallery-swiper .swiper-slide.gallery-slide {
    width: calc((100% - 10px) / 2.2);
  }
}

/* Mobile: 1 slide full width */
@media (max-width: 768px) {
  .gallery-swiper .swiper-slide.gallery-slide {
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gallery-swiper .swiper-slide.gallery-slide {
    height: 240px;
  }
}


/* ══════════════════════════════════════════
   GALLERY ITEM (inside each slide)
══════════════════════════════════════════ */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  transition: box-shadow 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(115, 87, 156, 0.22);
}

/* Image */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(115, 87, 156, 0.92) 0%,
    rgba(115, 87, 156, 0.25) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 1.8rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay::before {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: #b8a46a;
  margin-bottom: 0.8rem;
  transition: width 0.5s ease 0.08s;
}
.gallery-item:hover .gallery-overlay::before { width: 44px; }

.gallery-overlay-title {
  font-family: 'neb', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.gallery-overlay-sub {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease 0.18s, opacity 0.4s ease 0.18s;
}

.gallery-item:hover .gallery-overlay-title,
.gallery-item:hover .gallery-overlay-sub {
  transform: translateY(0);
  opacity: 1;
}

/* Number Badge */
.gallery-num {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: 'neb-lit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(115, 87, 156, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-num {
  background: rgba(200, 117, 171, 0.55);
}


/* ══════════════════════════════════════════
   SWIPER NAVIGATION BUTTONS
══════════════════════════════════════════ */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(115, 87, 156, 0.35);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--secondary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.gallery-nav-btn:hover {
  background: rgba(115, 87, 156, 0.18);
  border-color: rgba(115, 87, 156, 0.65);
}

.gallery-swiper-prev {
  left: calc(4% - 24px); /* sits on the edge of the swiper-wrap */
}
.gallery-swiper-next {
  right: calc(4% - 24px);
}

.gallery-swiper-prev:hover { transform: translateY(-50%) translateX(-2px); }
.gallery-swiper-next:hover { transform: translateY(-50%) translateX(2px); }

/* Disabled state (Swiper adds this class automatically) */
.gallery-swiper-prev.swiper-button-disabled,
.gallery-swiper-next.swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}


/* ══════════════════════════════════════════
   SWIPER PAGINATION DOTS
══════════════════════════════════════════ */
.gallery-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 1.6rem;
  position: static !important; /* override Swiper's absolute positioning */
  bottom: auto !important;
}

/* Swiper injects .swiper-pagination-bullet via JS */
.gallery-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(115, 87, 156, 0.25);
  opacity: 1;
  margin: 0 !important;
  transition: width 0.3s ease, background 0.3s ease;
}

.gallery-swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #c875ab;
}


/* ══════════════════════════════════════════
   FOOTER BAR
══════════════════════════════════════════ */
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 4% 0;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.gallery-footer-line { flex: 1; height: 1px; }
.gallery-footer-line--left  { background: linear-gradient(to right, rgba(156, 103, 163, 0.45), transparent); }
.gallery-footer-line--right { background: linear-gradient(to left,  rgba(156, 103, 163, 0.45), transparent); }

.gallery-footer-text {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--secondary-purple);
  opacity: 0.55;
  white-space: nowrap;
  margin: 0;
}


/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 22, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
}

.gallery-lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
}

.gallery-lightbox.open .gallery-lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.gallery-lightbox-close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
  z-index: 10;
}
.gallery-lightbox-close:hover {
  background: rgba(200, 117, 171, 0.55);
  border-color: rgba(200, 117, 171, 0.55);
  transform: rotate(90deg);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
  user-select: none;
}
.gallery-lightbox-prev { left:  -4.5rem; }
.gallery-lightbox-next { right: -4.5rem; }
.gallery-lightbox-nav:hover { background: rgba(156, 103, 163, 0.55); border-color: rgba(156, 103, 163, 0.55); color: #fff; }
.gallery-lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.gallery-lightbox-next:hover { transform: translateY(-50%) translateX(2px);  }

.gallery-lightbox-caption-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.1rem;
  padding: 0 0.2rem;
}
.gallery-lightbox-caption {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.gallery-lightbox-counter {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: rgba(200, 117, 171, 0.65);
  margin: 0;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 997px) {
  .gallery-section         { padding: 4rem 0 5rem; }
  .gallery-header          { padding: 0 3% 2.5rem; }
  .gallery-swiper-wrap     { padding: 0 3%; }
  .gallery-swiper-prev     { left:  calc(3% - 24px); }
  .gallery-swiper-next     { right: calc(3% - 24px); }
  .gallery-footer          { padding: 2rem 3% 0; }
  .gallery-swiper .swiper-slide.gallery-slide { height: 360px; }
}

@media (max-width: 768px) {
  .gallery-section         { padding: 3.5rem 0 4rem; }
  .gallery-section::before { display: none; }
  .gallery-header          { flex-direction: column; align-items: flex-start; padding: 0 1.2rem 2rem; gap: 0; }
  .gallery-count           { display: none; }
  .gallery-swiper-wrap     { padding: 0 1.2rem; }
  .gallery-swiper-prev     { left:  -14px; }
  .gallery-swiper-next     { right: -14px; }
  .gallery-nav-btn         { width: 38px; height: 38px; }
  .gallery-footer          { padding: 1.8rem 1.2rem 0; gap: 1rem; }
  .gallery-footer-text     { font-size: 0.62rem; letter-spacing: 2.5px; }
  .gallery-lightbox-prev   { left:  -2rem; }
  .gallery-lightbox-next   { right: -2rem; }
  .gallery-lightbox-nav    { width: 38px; height: 38px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .gallery-swiper-wrap  { padding: 0 1rem; }
  .gallery-header       { padding: 0 1rem 1.8rem; }
  .gallery-footer       { padding: 1.5rem 1rem 0; }
  .gallery-lightbox-prev { left:  0.5rem; }
  .gallery-lightbox-next { right: 0.5rem; }
}

<!-- 2nd gallery version (non-swiper) -->



.gallery-section {
  background: var(--light-purple);
  padding: 5rem 0 6rem;
  overflow: hidden;
  position: relative;
}

/* Decorative watermark text */
.gallery-section::before {
  content: 'GALLERY';
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'neb-lit', sans-serif;
  font-size: 7rem;
  letter-spacing: 1.8rem;
  color: rgba(156, 103, 163, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4% 3rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.gallery-label {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c875ab;
  display: block;
  margin-bottom: 0.65rem;
}

.gallery-heading {
  font-family: 'neb', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--secondary-purple);
  letter-spacing: 7px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}

.gallery-heading-italic {
  font-family: 'neb-lit', sans-serif;
  color: #b8a46a;
  font-style: normal;
  letter-spacing: 7px;
}

.gallery-count {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: rgba(115, 87, 156, 0.1);
  letter-spacing: 3px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}


/* GRID LAYOUT Desktop: 1 large image left (spans 2 rows) 2 stacked images right */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 320px 295px;
  gap: 10px;
  padding: 0 4%;
  position: relative;
  z-index: 1;
}

.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-row: 2 / 3; }


/* ══════════════════════════════════════════
   GALLERY ITEM
══════════════════════════════════════════ */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    box-shadow 0.4s ease;
}

.gallery-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:nth-child(1) { transition-delay: 0s;    }
.gallery-item:nth-child(2) { transition-delay: 0.14s; }
.gallery-item:nth-child(3) { transition-delay: 0.28s; }

.gallery-item:hover {
  box-shadow: 0 20px 60px rgba(115, 87, 156, 0.2);
}


/* ── Image ── */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}


/* ── Hover Overlay ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(115, 87, 156, 0.92) 0%,
    rgba(115, 87, 156, 0.25) 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 1.8rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Gold accent line slides in on hover */
.gallery-overlay::before {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: #b8a46a;
  margin-bottom: 0.8rem;
  transition: width 0.5s ease 0.08s;
}

.gallery-item:hover .gallery-overlay::before {
  width: 44px;
}

.gallery-overlay-title {
  font-family: 'neb', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.gallery-overlay-sub {
  font-family: 'neb-lit', sans-serif;
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease 0.18s, opacity 0.4s ease 0.18s;
}

.gallery-item:hover .gallery-overlay-title,
.gallery-item:hover .gallery-overlay-sub {
  transform: translateY(0);
  opacity: 1;
}


/* ── Number Badge ── */
.gallery-num {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: 'neb-lit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(115, 87, 156, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-num {
  background: rgba(200, 117, 171, 0.55);
}


/* ══════════════════════════════════════════
   FOOTER BAR
══════════════════════════════════════════ */
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 4% 0;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.gallery-footer-line {
  flex: 1;
  height: 1px;
}

.gallery-footer-line--left {
  background: linear-gradient(to right, rgba(156, 103, 163, 0.45), transparent);
}

.gallery-footer-line--right {
  background: linear-gradient(to left, rgba(156, 103, 163, 0.45), transparent);
}

.gallery-footer-text {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--secondary-purple);
  opacity: 0.55;
  white-space: nowrap;
  margin: 0;
}


/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 22, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
}

.gallery-lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  transform: scale(0.88);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.45s ease;
}

.gallery-lightbox.open .gallery-lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* ── Close Button ── */
.gallery-lightbox-close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
  z-index: 10;
}

.gallery-lightbox-close:hover {
  background: rgba(200, 117, 171, 0.55);
  border-color: rgba(200, 117, 171, 0.55);
  transform: rotate(90deg);
}

/* ── Prev / Next Navigation ── */
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
  user-select: none;
}

.gallery-lightbox-prev { left: -4.5rem; }
.gallery-lightbox-next { right: -4.5rem; }

.gallery-lightbox-nav:hover {
  background: rgba(156, 103, 163, 0.55);
  border-color: rgba(156, 103, 163, 0.55);
  color: #fff;
}

.gallery-lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.gallery-lightbox-next:hover { transform: translateY(-50%) translateX(2px);  }

/* ── Caption + Counter ── */
.gallery-lightbox-caption-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.1rem;
  padding: 0 0.2rem;
}

.gallery-lightbox-caption {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.gallery-lightbox-counter {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: rgba(200, 117, 171, 0.65);
  margin: 0;
}


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (769px to 997px)
══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 997px) {
  .gallery-section   { padding: 4rem 0 5rem; }
  .gallery-header    { padding: 0 3% 2.5rem; }
  .gallery-grid      { grid-template-rows: 255px 230px; gap: 8px; padding: 0 3%; }
  .gallery-footer    { padding: 2rem 3% 0; }
  .gallery-lightbox-prev { left:  -2.8rem; }
  .gallery-lightbox-next { right: -2.8rem; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT
══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 240px 240px;
    padding: 0 3%;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-row: auto; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .gallery-section   { padding: 3.5rem 0 4rem; }
  .gallery-section::before { display: none; }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.2rem 2rem;
    gap: 0;
  }

  .gallery-count { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 265px 225px 225px;
    padding: 0 1.2rem;
    gap: 8px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-row: auto; }

  .gallery-footer        { padding: 1.8rem 1.2rem 0; gap: 1rem; }
  .gallery-footer-text   { font-size: 0.62rem; letter-spacing: 2.5px; }

  .gallery-lightbox-prev { left:  -2rem; }
  .gallery-lightbox-next { right: -2rem; }
  .gallery-lightbox-nav  { width: 38px; height: 38px; font-size: 0.8rem; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .gallery-grid  { grid-template-rows: 230px 195px 195px; padding: 0 1rem; }
  .gallery-header { padding: 0 1rem 1.8rem; }
  .gallery-footer { padding: 1.5rem 1rem 0; }
  .gallery-lightbox-prev { left:  0.5rem; }
  .gallery-lightbox-next { right: 0.5rem; }
}

/* DEBUG — agar images nahi dikh rahe toh yeh add karo */
.gallery-item {
  opacity: 1 !important;
  transform: none !important;
}

/* = FLOOR PLANS SECTION — floorplan.css */

.floorplan-section {
  background: #f7f4f9;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.floorplan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}


/* ══════════════════════════════════════════
   HEADING
══════════════════════════════════════════ */
.floorplan-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.floorplan-header-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(
    to right,
    transparent,
    #9bb8d8 40%,
    #9bb8d8 60%,
    transparent
  );
  max-width: 220px;
}

.floorplan-header-line:last-child {
  background: linear-gradient(
    to left,
    transparent,
    #9bb8d8 40%,
    #9bb8d8 60%,
    transparent
  );
}

.floorplan-heading {
  font-family: 'neb', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--secondary-purple);
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}


/* ══════════════════════════════════════════
   TWO COLUMN GRID
══════════════════════════════════════════ */
.floorplan-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* ── Column ── */
.floorplan-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;

  /* Scroll reveal — starts hidden */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.floorplan-col.in-view {
  opacity: 1;
  transform: translateY(0);
}

.floorplan-col--left  { transition-delay: 0s;    }
.floorplan-col--right { transition-delay: 0.18s; }

/* ── Column Title ── */
.floorplan-col-title {
  font-family: 'neb', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--secondary-purple);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 2rem;
  text-align: center;
}


/* ══════════════════════════════════════════
   IMAGES
══════════════════════════════════════════ */
.floorplan-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.floorplan-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;

  /* Smooth hover zoom */
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.floorplan-img-wrap:hover .floorplan-img {
  transform: scale(1.03);
}

/* Single image (4 BHK) — centre vertically in its space */
.floorplan-images--single {
  justify-content: center;
  flex: 1;
}

.floorplan-img-wrap--single .floorplan-img {
  max-width: 380px;
}


/* ══════════════════════════════════════════
   CENTRE DIVIDER
══════════════════════════════════════════ */
.floorplan-divider {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
  align-self: stretch;
}

.floorplan-divider-line {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #9bb8d8 10%,
    #9bb8d8 90%,
    transparent 100%
  );
  min-height: 400px;
}


/* ══════════════════════════════════════════
   CTA BUTTON
══════════════════════════════════════════ */
.floorplan-cta {
  margin-top: auto;
}

.floorplan-btn {
  font-family: 'neb-lit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-purple);
  background: transparent;
  border: 1.5px solid var(--secondary-purple);
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.floorplan-btn:hover {
  background: var(--secondary-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(115, 87, 156, 0.25);
}


/* ══════════════════════════════════════════
   LIGHTBOX (shared with gallery or standalone)
   Add this only if you DON'T already have
   a lightbox in your page.
══════════════════════════════════════════ */
.floorplan-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 18, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.floorplan-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.floorplan-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floorplan-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.floorplan-lightbox.open .floorplan-lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.floorplan-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease;
}

.floorplan-lightbox-close:hover {
  background: rgba(155, 184, 216, 0.4);
  transform: rotate(90deg);
}

.floorplan-lightbox-label {
  margin-top: 1rem;
  font-family: 'neb-lit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (769px to 997px)
══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 997px) {
  .floorplan-section    { padding: 4rem 0 5rem; }
  .floorplan-container  { padding: 0 3%; }

  .floorplan-col        { padding: 0 1.5rem; }

  .floorplan-img {
    max-width: 320px;
  }

  .floorplan-img-wrap--single .floorplan-img {
    max-width: 290px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   Stack columns vertically, hide divider
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .floorplan-section   { padding: 3rem 0 4rem; }
  .floorplan-container { padding: 0 1.2rem; }

  .floorplan-header {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .floorplan-heading {
    font-family: 'neb', sans-serif;
   font-weight: 500;
   text-transform: uppercase;
  }

  /* Stack columns */
  .floorplan-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .floorplan-col {
    width: 100%;
    padding: 0 0 3rem;
  }

  /* Hide vertical divider, show horizontal line instead */
  .floorplan-divider {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 0 0 3rem;
  }

  .floorplan-divider-line {
    width: 60%;
    height: 1px;
    min-height: unset;
    background: linear-gradient(
      to right,
      transparent,
      #9bb8d8 30%,
      #9bb8d8 70%,
      transparent
    );
  }

  .floorplan-img {
    max-width: 100%;
  }

  .floorplan-img-wrap--single .floorplan-img {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .floorplan-header-line { display: none; }
  .floorplan-heading     { letter-spacing: 3px; }
}
/* ══════════════════════════════════════════
   Mobile Call Button 
══════════════════════════════════════════ */
.mobile-call{
  display: none;
}

@media (max-width: 991px){

  .mobile-call{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    border-radius: 50px;

    background: #ffffff;
    color: #000000;

    font-family: 'neb', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;

    text-decoration: none;
    border: 1px solid #000;

    transition: 0.3s ease;
  }

  .mobile-call:hover{
    background: #000;
    color: #fff;
  }

}