body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family:'Raleway'; */
  letter-spacing: 0.03em;
  font-smooth: always; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
}


:root {
  --color-purple: #094053;
  --color-gold: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
}

@font-face {
  font-family: "Optima";
  src: url("OptimaRoman.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
  font-family: "Optima";
}

p,
a {
  font-family: "Raleway";
}

html {
  scroll-behavior: smooth;
}

/* Loader Container */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(img/blue-textured-bg.jpg);
  background-size:cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  animation: fade-out-loader 1s ease-in-out 2.5s forwards;
}

/* Loader Logo */
.loader img {
  width: 200px;
  height: auto;
  animation: scale-up 2s ease-in-out forwards;
}

@keyframes scale-up {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fade-out-loader {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

body.loading {
  overflow: hidden;
}

/* .gradient-text {
  background-image: var(--color-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
#main {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* transform: scale(0.9); */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
h2 {
  font-size: 30px;
}
h3,
h4,
h5,
h6 {
  font-size: 20px;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  transition: 0.3s ease-in-out;
}

.header {
  position: fixed;
  top: 0;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  background: transparent;
  transition: background 0.3s ease;
  width: -webkit-fill-available;
  will-change: transform;
  /* Background image added directly to header */
  /* background-image: url(img/blue-textured-bg.jpg); */
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  /* Hide by default (for homepage) */
  background-color: transparent;
  background-blend-mode: normal;
}

/* .header.scrolled {
  background-color: rgba(0, 0, 0, 0.8); 
  background-blend-mode: overlay;
} */

.logo-container {
  width: 4.5%;
}

.logo-container a img {
  width: 100%;
  height: 100%;
}

.desktop-nav a {
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 12px;
  font-weight: 600;
  color: whitesmoke;
}

.mobile-nav-div,
.mobile-menu-bar {
  display: none;
}

.mobile-nav-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #094053;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.transparent-popup{
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    width: 30%;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

.mobile-nav-div.active {
  display: block;
  transform: translateX(0);
}

.mobile-menu-bar {
  border: none;
  font-size: 30px;
  background: transparent;
  cursor: pointer;
}

.mobile-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.mobile-nav a {
  background-image: linear-gradient(
    90deg,
    #755739 0%,
    #866845 50%,
    #b89a60 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 30px;
}

.btn {
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
  color: #ffffff;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
}

/* Mobile Video Carousel */
.mobile-carousel {
  display: none;
}

.mobile-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mobile-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Show mobile carousel only on mobile */
@media (max-width: 768px) {
  .desktop-carousel {
    display: none !important;
  }
  
  .mobile-carousel {
    display: block !important;
  }
  
  /* Hide arrows on mobile for cleaner look */
  .mobile-carousel .owl-nav {
    display: none;
  }
  
  .mobile-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
  }

  .logo-container a img {
    width: 50%;
    height: 50%;
  }

  .floor-plan-section h1{
    padding-top: 10px;
  }
}

/* Ensure mobile carousel is hidden by default on desktop */
.mobile-carousel {
  display: none;
}

.desktop-carousel {
  display: block;
}

/* Show mobile carousel only on mobile */
@media (max-width: 768px) {
  .desktop-carousel {
      display: none !important;
  }
  
  .mobile-carousel {
      display: block !important;
  }
  
  .mobile-carousel .item img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      /* filter: brightness(0.6); */
  }
  
  /* Optimize mobile navigation */
  .mobile-carousel .owl-nav {
      display: none; /* Hide arrows on mobile for cleaner look */
  }
  
  .mobile-carousel .owl-dots {
      position: absolute;
      bottom: 20px;
      width: 100%;
      text-align: center;
      z-index: 10;
  }
}

.slider-container {
  margin-top: -15px;
  /* height: 100vh; */
  width: 100%;
  transition: all ease 0.3s;
  background-color: #ffffff;
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  background: rgba(0, 0, 0, 0.6);
}

.owl-carousel .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.6);
}

.video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  /* object-fit: contain; */
  transition: 3s ease-in-out;
  transform: matrix(1, 0, 0, 1, 0, 0); 
}

.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  position: absolute;
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.owl-theme .owl-nav .owl-prev {
  left: 10px;
  top: -50px;
}

.owl-theme .owl-nav .owl-next {
  right: 10px;
  top: -50px;
}

.owl-theme .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.slider-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #000; 
}

.video {
  width: 100%;
  height: auto;
  display: block;
}


.desktop-video,
.mobile-video {
  display: none;
}

.desktop-video {
  display: block;
}

@media (max-width: 768px) {
  .desktop-video {
    display: none !important;
  }
  
  .mobile-video {
    display: block !important;
  }
}

/* .owl-prev span {
  font-weight: 200;
  color: white;
  font-size: 100px;
}

.owl-next span {
  font-weight: 200;
  color: white;
  font-size: 100px;
} */

.bi-arrow-left-circle,
.bi-arrow-right-circle {
  font-size: 40px;
  color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease; /* Smooth transition for all animatable properties */
  display: inline-block; /* Ensures proper layout for transform */
  text-align: center;
}

.bi-arrow-left-circle:hover,
.bi-arrow-right-circle:hover {
  background-image: linear-gradient(
    90deg,
    #755739 0%,
    #866845 50%,
    #b89a60 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.05);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  text-decoration: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 150px 240px;
  /* margin-top: 100px; */
  background-image: url(img/about-bg.jpg);
  background-size: cover;

}

.about-section h1 {
  text-align: center;
  line-height: 1.5em;
}

.about-section p {
  text-align: center;
  line-height: 1.5em;
}

.about-section h4 {
  text-align: center;
  line-height: 1.5em;
}

.about-section h1 {
  color: var(--color-purple);
  font-weight: 400;
  margin-bottom: 10px;
}

.about-section h4 {
  color: var(--color-purple);
  margin-bottom: 10px;
}

#gold_line {
  margin-bottom: 30px;
  width: 18%;
  height: 22px;
}

.amenities-section {
  /*background-color: var(--color-purple);*/
  background-position: center;
  background-image: url(img/blue-textured-bg.jpg);
  background-size: cover;
  padding: 60px 60px 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.amenities-section h1 {
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
}

.icons-section {
  display: flex;
  margin: 40px 0 20px 0;
}

.icon-single {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 30px;
}

.icon-single h4 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  color: #b89a60;
}

.icon-single img {
  border-radius: 100%;
  border: 1px solid #b89a60;
  width: 25%;
  background-color: transparent;
  padding: 5px;
}

.gallery-section {
  padding: 90px 30px;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.in-view {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item img {
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-section h1 {
  text-align: center;
  margin-bottom: 10px;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 70vh;
}



/* Lightbox Styles */
.lightbox {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #094053f4;
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: translateY(0);
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #b89a60;
}

.specifications-section {
  display: flex;
  padding: 60px 50px;
  /*background-color: var(--color-purple);*/
      background-position: center;
    background-image: url(img/blue-textured-bg.jpg);
        background-size: cover;
  flex-direction: column;
  align-items: center;
}

.specifications-section h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
}

.accordion-div {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
}

.accordion-item {
  border: 1px solid #ffffff45;
  border-radius: 5px;
  margin-bottom: 25px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  /*background: #f8f9fa;*/
  background:transparent;
  backdrop-filter:blur(1px);
  color:#fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  transition: background-color 0.3s ease;
}

/*.accordion-header:hover {*/
/*  background-color: var(--color-purple);*/
/*  color: #fff;*/
/*}*/

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header span {
  font-weight: 400;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  /*background: #fff;*/
  padding: 0 15px;
  background:transparent;
  color:#fff;
  backdrop-filter:blur(1px);
}

.accordion-content p {
  margin: 10px 0;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 15px;
}

.accordion-item.active .bi-arrow-down-square-fill {
  transform: rotate(180deg);
  transition: all ease 0.3s;
}

.accordion-header span{
    text-transform:uppercase;
}

.bi-arrow-down-square-fill {
  background-image: linear-gradient(
    90deg,
    #755739 0%,
    #866845 50%,
    #b89a60 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-accordion-container {
  display: flex;
  gap: 30px;
}

.about-owners-section {
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.developer-logos {
  width: 20%;
}

.about-owners-section h1 {
  /* margin-bottom: 10px; */
  text-align: center;
}

.developer-video {
  width: 35%;          
  max-width: 520px;    
  aspect-ratio: 16 / 9;
}

.developer-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .kohninoor-div {
    flex-direction: column;
  }

  .developer-video {
    width: 100%;
    margin-bottom: 20px;
  }
}


.kohninoor-div,
.rj-group-div {
  display: flex;
  padding: 40px;
  align-items: center;
  justify-content: center;
}

.kohninoor-div p {
  max-width: 50%;
  margin-left: 40px;
  text-align: justify;
}

.rj-group-div p {
  max-width: 50%;
  margin-right: 40px;
  text-align: justify;
}

.location-section {
  display: flex;
  flex-direction: column;
  /*background-color: var(--color-purple);*/
      background-position: center;
    background-image: url(img/blue-textured-bg.jpg);
        background-size: cover;
  display: flex;
  flex: 1 1 auto;
  padding: 60px 40px;
  justify-content: center;
  align-items: center;
}

.location-main-div {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.image-div {
  width: 50%;
}

.image-div img {
  width: 100%;
  height: 100%;
}

.location-features-div {
  width: 50%;
}

.location-section h1 {
  text-align: center;
  margin-bottom: 10px;
}

.bi-arrow-down-circle-fill {
  background-image: linear-gradient(
    90deg,
    #755739 0%,
    #866845 50%,
    #b89a60 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-item.active .bi-arrow-down-circle-fill {
  transform: rotate(180deg);
  transition: all ease 0.3s;
}

/* Desktop Footer (default) */
.footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 50px 40px 20px 40px;
  background-color: #ffffff;
  margin-top: 30px; 
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

#rera-qr {
  width: 200px; 
  height: auto;
  border: none;
}

.footer p {
  line-height: 1.7rem;
  flex: 1;
  text-align: left;
}

/* Mobile & Tablet Footer */
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 20px 15px 20px;
  }
  
  .footer p {
    text-align: center;
  }
  
  #rera-qr {
    width: 150px;
    order: 2; /* Moves QR code to bottom on mobile */
    margin-top: 20px;
  }
  
  /* For tablets, you might want slightly different styling */
  @media (max-width: 1024px) and (min-width: 769px) {
    .footer {
      padding: 40px 30px 20px 30px;
    }
    
    #rera-qr {
      width: 180px;
    }
  }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
  
  .copy-right_div {
    margin-bottom: 18%;
  }
}

.copy-right_div{
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    text-align: center;
    margin-bottom: 4%;
    padding: 20px;
}

.form-sticky {
  position: absolute;
  width: -webkit-fill-available;
  bottom: 0px;
  padding: 15px 10px;
  display: flex;
  gap: 40px;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  /*background-color: #094053f6;*/
  background-image: url(img/blue-textured-bg.jpg);
    background-size: cover;
    background-repeat: repeat;
    background-position:bottom;
}

.form-sticky p {
  font-size: 20px;
  font-weight: 600;
}

.sticky-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sticky-form input {
  padding: 8px 15px;
  border: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.bi-person-fill,
.bi-envelope-fill,
.bi-phone-fill {
  /* margin-left: 10px; */
  font-size: 25px;
}

.sticky-form label {
  border-radius: 100px;
  /*padding: 2px 0 0 15px;*/
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-enquire-now {
  display: none;
}

.Maharera {
padding-top: 10px;
}


/* Popup container */
.mobile-popup {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.6); 
}

/* Popup content */
.mobile-popup .popup-content {
    background: #fff;
    margin: 50% auto;
    padding: 30px 0 20px 0;
    width: 90%;
    display: flex;
    max-width: 300px;
    border-radius: 8px;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Close button */
.mobile-popup .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

form#mobile-enquiry-form {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: -webkit-fill-available;
}

form#mobile-enquiry-form input {
    padding: 8px 15px;
    border-left: 1px solid #b89a60;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: -webkit-fill-available !important;
}


form#mobile-enquiry-form label {
    border-radius: 100px;
    width: -webkit-fill-available;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #866845;
    background: #866845;
}

 /* Hide "ENQUIRE NOW" text on mobile, show only icon */
@media (max-width: 768px) {
  #enquire-btn {
    padding: 8px 12px; /* Adjust padding for icon-only button */
    min-width: auto; /* Remove minimum width */
  }
  
  #enquire-btn span {
    margin: 0; /* Remove any margin */
  }
}

/* Optional: Keep the button properly sized on desktop */
@media (min-width: 769px) {
  #enquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
 
 .gallery-section_new {
      max-width: 1200px;
      margin: 5rem auto;
      position: relative;
    }

    .gallery-section_new .gallery {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      background: #111;
    }

    .gallery-section_new .gallery::before {
      content: "";
      display: block;
      padding-top: 56.25%; /* 16:9 ratio */
    }

    .gallery-section_new .slider {
      position: absolute; inset: 0;
    }

    .gallery-section_new .slides {
      display: flex;
      height: 100%;
      transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
      will-change: transform;
    }

    .gallery-section_new .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
    }

    .gallery-section_new .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .gallery-section_new .ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #75573969;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
}
    .gallery-section_new .ctrl.prev { left: 10px; }
    .gallery-section_new .ctrl.next { right: 10px; }

    .gallery-section_new .dots {
      position: absolute;
      bottom: 60px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 8px;
    }
    .gallery-section_new .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      cursor: pointer;
      transition: all .3s;
    }
    .gallery-section_new .dot[aria-current="true"] {
      width: 26px;
      background: #fff;
      border-radius: 999px;
    }

    .gallery-section_new .tabs {
      position: absolute;
      bottom: 30px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 8px;
      background: linear-gradient(90deg, #7557397a 0%, #86684575 50%, #b89a6080 100%);
      padding: 6px;
      border-radius: 999px;
      backdrop-filter: blur(8px);
    } 
    .gallery-section_new .tab {
      border: none;
      background: transparent;
      padding: 8px 16px;
      border-radius: 999px;
      cursor: pointer;
      color: #ccc;
      font-weight: 600;
      position: relative;
      z-index: 1;
    }
    .gallery-section_new .tab[aria-selected="true"] {
      color: #000;
    }
    .gallery-section_new .active-pill {
      position: absolute;
      height: 32px;
      top: 50%; left: 0;
      transform: translateY(-50%);
      background: #fff;
      border-radius: 999px;
      z-index: 0;
      transition: left .55s, width .55s;
    }

    /* Desktop Enquiry Popup */
.enquiry-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  /* backdrop-filter: blur(1px); */
  z-index: 9999;
  /* justify-content: center; */
  align-items: center;
 
}

.enquiry-popup.active {
  display: flex;
}

.enquiry-content {
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  border: 0.5px #756f6f solid;
  padding: 40px;
  width: 400px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #fff;
  position: relative;
  margin-left: 100px;
  margin-right: auto;
}

.enquiry-content h3 {
  margin-bottom: 20px;
  font-weight: 400;
  color: #fff;
}

.enquiry-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 0.5px #858080 solid;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.enquiry-content label:focus-within {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  border-color: #b89a60;
}

.enquiry-content input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.enquiry-content input::placeholder {
  color: #ddd;
}

.enquiry-content .btn-submit {
  width: 20%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #755739, #866845, #B89A60);
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-content .btn-submit:hover {
  background: linear-gradient(90deg, #d4af37, #b89a60);
}

.floor-plan-container {
  text-align: center;
  padding-bottom: 40px;
}

.floor-plan-container h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 40px;
  margin-bottom: 10px;
  color: #5a4a32;
}

.floor-plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* margin-top: 40px; */
}

.floor-plan {
  position: relative;
  width: auto;
  height: 400px;
  border: 1px solid #b89a60;
  border-radius: 12px;
  background: #fff;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.floor-plan img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 12px;
  filter: blur(8px);
}

.floor-plan-main {
  /* position: relative; */
  width: 450px;
  height: 400px;
  border-radius: 12px;
  /* background: #F4F2EF; */
  cursor: pointer;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.view-plan {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #b89a60;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
}

.view-plan-text{
  color: #755739;
  padding-top: 18px;
  font-weight: 600;
}

.view-plan-subtext{
  font-size: 14px;
  margin-top: 6px;
}

.view-all-button {
  margin-top: 30px;
  padding: 12px 30px;
  background: #b89a60;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.view-all-btn {
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  margin-top: 60px;
}

.floor-plan-header p{
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #5a4a32;
}

.Price-on-Request{
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin: 20px;
  align-self: center;
}
.close-desktop {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.hero-box {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 30px;
  position: absolute;
  margin: auto;
  padding: 10px 40px;
  background: rgba(0, 0, 0, 0.6);
  width: fit-content;
  max-width: 1200px;
  z-index: 10;
  flex-wrap: wrap;
}

 .hero-text {
  /* text-align: center; */
  color: white;
  z-index: 10;
  /* width: 90%; */
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
}

.hero-text h1{
  margin-bottom: 30px;
  font-size: 52px;
}
.hero-text p {
  font-size: 18px;
  line-height: 30px;
}
.hero-text i {
  color:#ffd700;
}
.standing-line {
  width: 1px; 
  height: 150px; 
  background-color: #fff;
  margin: auto; 
  opacity: 0.8; 
}

 .fixed-diwali-offer {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
}

.fixed-diwali-offer h1 {
  font-size: 52px;
  margin-bottom: 20px;
  /* font-weight: 700; */
  font-style: "ballet";
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fixed-diwali-offer p {
  font-size: 16px;
  /* line-height: 1.6; */
  margin-bottom: 10px;
}

.highlighted-zero {
  color: #ffd700;
  font-size: 24px;
}

.highlighted {
  color: #ffd700;
  font-size: 24px;
}

.slider-container {
  position: relative;
}

@media (max-width: 768px) {
  .fixed-diwali-offer {
    padding: 0px;
  }
  
  .fixed-diwali-offer h1 {
    font-size: 40px;
  }

  .hero-text h1{
    margin-bottom: 30px;
    font-size: 40px;
  }
  
  .fixed-diwali-offer p {
    font-size: 16px;
  }

  .highlighted {
    color: #ffd700;
    font-size: 16px;
    }

  #rera-qr {
    width: 150px; 
    align-self: center;
  }

  .standing-line {
    display: none; 
  }

  .floor-plan-main {
    border-radius: 12px;
    background: #F4F2EF;
    cursor: pointer;
    margin: 20px 40px;
    
  }

  .floor-plans {
    flex-direction: column; 
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }
  
  .floor-plan {
    width: auto; 
    cursor: pointer;
  }
  
  .view-plan {
    font-size: 14px;
    padding: 10px 20px;
    width: auto; 
    top: 10%;
    right: 25%;
  }

  h1 {
    font-size: 30px;
  }
  .header {
  position: fixed;
  }
  .logo-container {
    width: 25%;
  }
  
  .mobile-enquire-now {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .form-sticky  p,
  .sticky-form {
    display: none !important;
  }
  .form-sticky {
        padding: 15px 10px;
        position: fixed;
        bottom: 0;
    }
  .about-section {
    padding: 80px 30px 50px 30px;
  }
  #gold_line {
    width: auto;
  }
  .icons-section {
    flex-direction: column;
  }
  .icon-single {
    margin: 20px;
  }
  .icon-single img {
    width: 20%;
  }
  .main-accordion-container {
    gap: 0px;
    flex-direction: column;
  }
  .accordion-header {
    font-size: 12px;
  }
  .accordion-div {
    margin: 0;
  }
  .about-owners-section {
    padding: 70px 20px;
  }
  .kohninoor-div,
  .rj-group-div {
    padding: 20px;
    flex-direction: column;
  }
  .developer-logos {
    width: 60%;
  }
  .rj-group-div p {
    max-width: -webkit-fill-available;
    margin-right: 0;
    margin-top:30px;
  }
  .kohninoor-div p {
    max-width: -webkit-fill-available;
    margin-left: 0;
    margin-top:30px;
  }
  .rj-group-div {
    flex-direction: column-reverse;
  }
  .location-main-div {
    flex-direction: column;
  }
  .location-features-div {
    width: 100%;
  }
  .image-div {
    width: -webkit-fill-available;
  }
  .footer {
    flex-direction: column;
    margin-bottom: 0;
  }
  #rera-qr {
    width: 40%;
  }
  .mobile-nav-div,
  .mobile-menu-bar {
    display: block;
  }
  .footer p {
    text-align: center;
  }
  .copy-right_div{
      margin-bottom: 18%;
  }
  .Price-on-Request{
    font-size: 12px;
    padding: 8px 16px;
    margin: 10px;
  }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {  
  .hero-text h1{
    margin-bottom: 30px;
    font-size: 32px;
  }
  .fixed-diwali-offer h1 {
    font-size: 32px;
  }
  .hero-box{
    /* padding: 10px 20px; */
    display: flex;
    justify-content: start;
  align-items: start;
  }
  .hero-text {
    padding: 5px;
  }
  .fixed-diwali-offer {
    padding: 5px;
  }
  .floor-plan-main {
    width: auto;
    height: auto;
    border-radius: 12px;
    background: #F4F2EF;
    cursor: pointer;
  }

  .floor-plans{
    margin: 0px 40px;
    padding: 0px 0px;
  }

  .about-section{
    padding: 10%;
  }
}

.slider-text {
  position: absolute;
  bottom: 20px;  
  left: 20px;    
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); 
  color: white;  
  padding: 20px;
  margin-left: 50px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  max-width: 80%;  
}

.slider-text h1 {
  font-family: 'ballet';
  text-transform: none;
  word-spacing: 5px;
  font-size: 64px;
  color: #eab855;
}

.floor-plan {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  position: absolute;
  /* bottom: 0; */
  /* left: auto; */
  /* background-color: rgba(255, 255, 255, 0.9); */
  padding: 15px;
  border-radius: 8px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  max-width: 60%;
}

.overlay-content p {
  margin-bottom: 15px;
  color: #000;
  line-height: 1.5;
}

.floor-plan-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.floor-plan-popup.active {
  display: flex;
}

.floor-plan-popup .popup-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
}

.floor-plan-popup .close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.floor-plan-popup .popup-body {
  padding: 20px;
  max-height: calc(90vh - 60px);
  overflow-y: auto;
  text-align: center;
}

.floor-plan-popup .popup-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 5px;
}

.floor-plan-popup .pdf-viewer {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 5px;
}

.floor-plan-popup .popup-title {
  color: #755739;
  margin-bottom: 20px;
  font-size: 24px;
}

.download-btn {
  background: linear-gradient(90deg, #755739 0%, #866845 50%, #b89a60 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 14px;
}

.enquire-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.popup-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff6b6b;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-group:focus-within {
  border-color: #b89a60;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-group label {
  margin-right: 10px;
  color: #fff;
}

.form-group i {
  font-size: 18px;
}

.form-group input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  width: 100%;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #b89a60, #d4af37);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 154, 96, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(45deg, #b89a60, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive design */
@media (max-width: 480px) {
  .popup-container {
    padding: 20px;
    margin: 20px;
  }
  
  .popup-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .slider-container .owl-carousel,
  .slider-container video {
    display: none;
  }
  
  .slider-container {
    background-image: url('mobile-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* or your desired height */
    position: relative;
  }
  
  /* Ensure hero content is visible */
  .hero-box {
    position: relative;
    z-index: 2;
  }
}

/* Glass Effect Form Popup Styles */
.form-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.form-popup {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: white;
}

.form-popup h3 {
  margin-bottom: 20px;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-popup label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-popup label:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(184, 154, 96, 0.3);
}

.form-popup input {
  background: transparent;
  border: none;
  outline: none;
  padding: 5px 10px;
  width: 100%;
  font-size: 14px;
  color: white;
}

.form-popup input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-popup .btn-submit {
  background: rgba(184, 154, 96, 0.8);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-popup .btn-submit:hover {
  background: rgba(184, 154, 96, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 154, 96, 0.4);
}

.close-popup-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.close-popup-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Icon colors for glass effect */
.form-popup .bi-person-fill,
.form-popup .bi-envelope-fill,
.form-popup .bi-phone-fill {
  color: rgba(255, 255, 255, 0.9) !important;
}

.zf_lB_Dimmer_562820{ 
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgb(0, 0, 0);
  opacity: 0.8;
  z-index: 10000000;
}

.zf_lB_Container_562820{
position: fixed;
background-color: white;
margin: 0;
margin-right: 0px;
padding: 0;
height: 578px;
width:  70%;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
border: 7px solid none;
max-height: calc(100% - 60px);
z-index: 999999;
transition: height 0.5s ease;
outline : none;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

p{
margin-bottom: 10px;
}

.zf_lB_Wrapper_562820{
position: fixed;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: -180px;
  z-index: 10000001;
}

.zf_main_id_562820{
height: calc(100% - 0px);
display: flex;
overflow-y: auto;
overflow-x: hidden;
border-radius: 8px;
}

.zf_lb_closeform_562820 {
  position: absolute;
  right: -20px;
  background: #2f2e2e;
  padding: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  top: -15px;
  cursor: pointer;
  border: 2px solid #d9d9d9;
  z-index: 10000002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zf_lb_closeform_562820:before, .zf_lb_closeform_562820:after {
  position: absolute;
  left: 16px;
  content: ' ';
  height: 19px;
  width: 2px;
  top: 7px;
  background-color: #f7f7f7;
}

.zf_lb_closeform_562820:before {
transform: rotate(45deg);
}
.zf_lb_closeform_562820:after {
transform: rotate(-45deg);
} 

.zf_lb_closeform_562820:hover {
  background: #e74c3c;
}

@media screen and (min-device-width: 10px) and (max-device-width: 380px) {  
 .zf_lB_Container_562820 {
width: 270px !important;
} 
}

@media screen and (min-device-width: 360px) and (max-device-width: 480px) {  
 .zf_lB_Container_562820 {
width: 350px !important;
} 
}

@media screen and (min-device-width: 440px) and (max-device-width: 500px) {  
 .zf_lB_Container_562820 {
width: 380px !important;
} 
}

@media only screen  and (min-width:500px) and (max-width:600px)  {  
 .zf_lB_Container_562820 {
width: 450px;
}
}

@media only screen  and (min-width:601px) and (max-width:700px)  {  
 .zf_lB_Container_562820 {
width: 540px;
}
}

@media only screen  and (min-width:700px) and (max-width:800px)  { 
.zf_lB_Container_562820 {
width: 650px;
}
}

@media screen and (min-device-width: 801px) and (max-device-width: 1268px) {  
 .zf_lB_Container_562820 {
width: 750px !important;
} 
}

.thank-you-page {
  font-family:'Raleway';
}
.button-container{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    gap : 0px;
  }
}

/* Sticky Bottom Buttons - Matching Header Style */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1F1E29; /* Same as header background */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 1px solid #333;
}

.sticky-bottom-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 80px;
}

.sticky-bottom-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.sticky-bottom-button:active {
  transform: translateY(0);
}

.button-icon {
  font-size: 20px;
  margin-bottom: 4px;
  color: #b89a60; /* Golden accent color like header */
}

.button-text {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* WhatsApp button specific styling */
.whatsapp-button .button-icon {
  color: #25D366; /* Keep WhatsApp green */
}

/* Desktop: Show only WhatsApp button */
@media (min-width: 769px) {
  .sticky-bottom-buttons {
    justify-content: center;
    padding: 10px 20px;
    background: #1F1E29; /* Same dark background */
  }
  
  /* Hide all buttons except WhatsApp on desktop */
  .sticky-bottom-button:not(.whatsapp-button) {
    display: none;
  }
  
  .whatsapp-button {
    min-width: 140px;
    flex-direction: row;
    gap: 10px;
    background: #25D366; /* WhatsApp green background */
    padding: 12px 24px;
    border-radius: 25px;
  }
  
  .whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  
  .whatsapp-button .button-icon {
    font-size: 22px;
    margin-bottom: 0;
    color: white;
  }
  
  .whatsapp-button .button-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
  }
}

/* Mobile: Show all three buttons */
@media (max-width: 768px) {
  .sticky-bottom-buttons {
    padding: 10px 15px;
    justify-content: space-around;
    background: #1F1E29; /* Same dark background */
  }
  
  .sticky-bottom-button {
    min-width: 70px;
    padding: 6px 12px;
    flex-direction: column;
  }
  
  .button-icon {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .button-text {
    font-size: 11px;
  }
  
  /* Show all buttons on mobile */
  .sticky-bottom-button {
    display: flex !important;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
}

@media (min-width: 769px) {
  body {
    padding-bottom: 60px;
  }
}

/* Mobile: Sticky bottom bar with all buttons */
@media (max-width: 768px) {
  .sticky-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(img/blue-textured-bg.jpg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
    /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3); */
    z-index: 999;
    border-top: 1px solid #333;
  }
  
  .sticky-bottom-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    min-width: 70px;
  }
  
  body {
    padding-bottom: 70px;
  }
}

/* Desktop: Floating WhatsApp button only */
@media (min-width: 769px) {
  .sticky-bottom-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
    width: auto;
  }
  
  /* Hide Call and Inquiry buttons on desktop */
  .sticky-bottom-button:not(.whatsapp-button) {
    display: none;
  }
  
  .whatsapp-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #25D366;
    padding: 10px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    min-width: auto;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
  }
  
  .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
  }
  
  .whatsapp-button .button-icon {
    font-size: 22px;
    color: white;
    margin-bottom: 0;
  }
  
  .whatsapp-button .button-text {
    display: none; 
  }
  
  body {
    padding-bottom: 0;
  }
}

/* Common styles for both */
.sticky-bottom-button {
  text-decoration: none;
  transition: all 0.3s ease;
}

.button-icon {
  font-size: 18px;
  margin-bottom: 4px;
  color: #b89a60; /* Golden accent like header */
}

.button-text {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile button icons */
@media (max-width: 768px) {
  .call-button .button-icon,
  .enquiry-button .button-icon,
  .whatsapp-button .button-icon {
    color: #b89a60; /* Golden accent */
  }
  
  .sticky-bottom-button:hover {
    background: rgba(184, 154, 96, 0.2); /* Golden tint on hover */
  }
}

/* Banner Popup Styles - Perfect Centering */
/* Fixed Banner Popup Styles */
.banner-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(3px);
}

.banner-popup.active {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

.banner-popup-content {
  position: relative;
  max-width: 60%;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: scaleIn 0.3s ease;
  border-radius: 15px;
  overflow: visible; /* Changed from hidden to visible */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #000;
  width: fit-content;
  height: fit-content;
}

/* Fixed Close Button Positioning */
.banner-popup-close {
  position: absolute;
  top: -10px; /* Position it slightly above the banner */
  right: -28px; /* Position it slightly to the right of the banner */
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #b89a60;
  color: white;
  width: 30px;
  height: 30px;
  padding-bottom: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000; /* Higher z-index */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-popup-close:hover {
  background: #b89a60;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(184, 154, 96, 0.5);
}

.banner-popup-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Show appropriate banner based on screen size */
.banner-desktop {
  display: block;
}

.banner-mobile {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .banner-popup {
    padding: 15px;
  }
  
  .banner-popup-content {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .banner-desktop {
    display: none;
  }
  
  .banner-mobile {
    display: block;
  }
  
  /* Adjust close button for mobile */
  .banner-popup-close {
    top: -10px;
    left: -10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.95);
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .banner-popup {
    padding: 10px;
  }
  
  .banner-popup-content {
    max-width: 98%;
    max-height: 90vh;
  }
  
  .banner-popup-close {
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { 
    opacity: 0;
    transform: scale(0.8); 
  }
  to { 
    opacity: 1;
    transform: scale(1); 
  }
}
.static-enquiry-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  text-align: center;
}

.static-enquiry-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.static-enquiry-form-container iframe {
  width: 100%;
  min-height: 550px;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .static-enquiry-section {
    padding: 50px 15px;
  }
  .static-enquiry-form-container {
    padding: 15px;
  }
  .static-enquiry-form-container iframe {
    min-height: 500px;
  }
}


