@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&display=swap');

:root {
    --primary-color: rgb(72, 17, 48);
    --secondary-color: #d4af37;
    --body-color: #424242;
    --body-light: #4242424d;
    --primary-light: #fff5fa;
    --secondary-light: #ffdedc;
    --golden-gradient: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, rgb(72, 17, 48) 62.5%, rgb(72, 17, 48) 100%);;
    --white: #fff;
    --facebook: #4267B2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #FF0000;
    --whatsapp: #25D366;
    --instagram: #c92bb7;
    --serif: 'Cinzel', serif;
    --open-sans: "Open Sans", sans-serif;
    --marcellus: "Marcellus", serif;
}
body
{
    overflow-x: hidden;
    width: 100%;
    background-color: var(--primary-light);
}
/* ----------------------------------------------------
bg background
 ---------------------------------------------------- */
.bg-white {
    background-color: #fff;
}

.bg-primary {
    background-color: black !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

/* ----------------------------------------------------
text color
 ---------------------------------------------------- */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.text-secondary-light {
    color: var(--secondary-light) !important;
}
/*img{
    width: 100%;
}*/

.text-serif{
    font-family: var(--serif);
}
/* ----------------------------------------------------
social icons
---------------------------------------------------- */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.social-links a i {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease-in-out;
    text-align: center;
}

.social-links a i.sm {
    width: 32px;
    height: 32px;
}

.social-links a .bi-facebook {
    background-color: var(--facebook);
}

.social-links a .bi-linkedin {
    background-color: var(--linkedin);
}

.social-links a .bi-twitter-x {
    background-color: var(--twitter);
}

.social-links a .bi-youtube {
    background-color: var(--youtube);
}

.social-links a .bi-whatsapp {
    background-color: var(--whatsapp);
}

.social-links a .bi-instagram {
    background-color: var(--instagram);
}

.social-links a:hover i {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.social-links a:hover .bi-facebook {
    color: var(--facebook);
}

.social-links a:hover .bi-linkedin {
    color: var(--linkedin);
}

.social-links a:hover .bi-twitter-x {
    color: var(--twitter);
}

.social-links a:hover .bi-youtube {
    color: var(--youtube);
}

.social-links a:hover .bi-whatsapp {
    color: var(--whatsapp);
}

.social-links a:hover .bi-instagram {
    color: var(--instagram);
}

/* social icons */

/* -----------------------------------------------------
back to top button
----------------------------------------------------- */
/* form */
.form-control {
    background: transparent;
    margin-bottom:10px;
    border-radius: 0;
    padding: 1rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.733);
}

.form-control:active {
    background: transparent;
}

/* enquire */
.enquire .titleBox {
    margin-bottom: 1rem;
}

.enquire .inner {
    background-color: #000000d7;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.enquire .button {
    border-radius: 0;
    padding: 1rem;
}

.form-group input::placeholder {
    color: var(--body-color);
    opacity: 1;
}

/* -----------------------------------------------------
swiper
----------------------------------------------------- */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* display: flex; */
    justify-content: center;
    /* align-items: center; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------
swiper-pagination
------------------------------------------ */
.swiper-pagination {
    text-align: center;
    margin-top: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.4);
}

/* ----------------------------------------------------
 swiper-button-next, 
 swiper-button-prev
 ---------------------------------------------------- */
.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--body-color);
    background-color: var(--primary-light);
}


.swiper-button-next::after,
.swiper-button-prev::after {
    background-color: var(--body-color);
    font-size: 16px;
    font-weight: bold;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--body-color);
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 1rem;
    color: #000000;
}


/* .swiper-button-next i,
.swiper-button-prev i {
    font-size: 18px;
} */

/* ----------------------------------
 swiperBtn.leftbtn
 ---------------------------------- */
.swiperBtn.leftbtn {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    margin-left: 2rem;
    justify-content: flex-start;
}

/* Buttons style */
.swiperBtn.leftbtn .swiper-button-next,
.swiperBtn.leftbtn .swiper-button-prev {
    position: static;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}


/* circular */
.swiper-button-next.circular,
.swiper-button-prev.circular {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.swiper-button-next.circular:hover,
.swiper-button-prev.circular:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.swiper-button-next.circular i,
.swiper-button-prev.circular i {
    color: var(--body-color);
}

.swiper-button-next.circular:hover i,
.swiper-button-prev.circular:hover i {
    color: var(--white);
}


/* .swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}*/





/* ----------------------------------------------------
Custom Scroll
---------------------------------------------------- */
.scroller {
    height: 300px;
    overflow: auto;
}

.scroller::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #adadad;
    border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
    background: #2957a4;
    border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Custom Scroll */

/* -------------------------------------------------
 General Styling
 ------------------------------------------------- */
body {
  font-family: "Jost", sans-serif;
}

a {
    text-decoration: none;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.containerBox {
    width: 80%;
    margin: 0 auto;
}

/* --------------------------------------
 ul
 -------------------------------------- */
ul.list {
    padding-left: 0;
    line-height: 2;
    margin: 0;
}

ul.list>li:last-child {
    margin: 0;
    padding: 0;
}

/* --------------------------------------------------
heading
--------------------------------------------------  */
.heading {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.heading h2 {
    font-weight: 400;
    color: var(--primary-color);
}

/* Allow text-white utility to override heading color */
.heading h2.text-white,
.heading h6.text-white {
    color: #ffffff !important;
}

.heading h2 small {
    font-size: 50%;
}
.heading p,
.heading span {
    font-size: 1.1rem;
}

/* --------------------------------------------------
subHeading
--------------------------------------------------  */
.subHeading {
    position: relative;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subHeading::before {
    background-color: var(--secondary-color);
    position: absolute;
    content: '';
    width: 10%;
    height: 1px;
    bottom: 0;
}

.subHeading span {
    font-size: 1.7rem;
}

/* -------------------------------------------------
button
------------------------------------------------- */
.readmore {
    gap: 5px;
}

.readmore .button {
    background: #4f5fb0;
    color: #fff;
    border:none;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 0;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    gap: 5px;
}
.topCTC .readmore .button 
{
    background: #4f5fb0;
    color: #ffffff;
}
.readmore .button.solid,
.readmore .button:hover {
    /*background: rgb(0 0 0);*/
    color: #fff;
}
.readmore .button.solid:hover{
    background-color: var(--secondary-color);
    color: #000;
}
.readmore .button.shedule:hover{
    background-color: var(--secondary-color);
    color: #000;
}

.readmore.floor-plan-btn 
{    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.readmore.floor-plan-btn a
{    
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    color: #000;
}

.readmore .button img {
    filter: invert(1);
}

.readmore .button:hover img {
    filter: invert(0);
}

/* white */
.readmore .button.white {
    background-color: var(--white);
    color: #000;
}

.readmore .button.white:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.fp
{
    padding: 1rem;
    background: #fff;
    transition: all 300ms ease-in-out;
}

.fp:hover{
    box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}

.planBase {
  margin: 1rem 0 1.5rem;
  color: #000;
}

.planBase .priceBOxInner{
  display: flex;
  justify-content: space-between;
}

.fpDetails:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
  color: #000;
}

.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.fpWrapper .readmore .button{
  padding: 10px 14px;
}

.fpWrapper .readmore .downIcon{
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 300ms ease-in-out;
}

.fpWrapper .readmore .downIcon img{
  width: 100%;
}
/* --------------------------------------------------
modal
-------------------------------------------------- */
.modal-backdrop.show {
    opacity: 1;
    background: rgb(0 10 12 / 95%);
    backdrop-filter: blur(5px);
}

.form-container .titleBox {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container .titleBox h3 {
    margin-top: 0.5rem;
}

.modal-content {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
    border: none;
    border-radius: 0;
    padding: 1rem;
}

button.close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    opacity: 1;
    text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: #fff;
    opacity: 1;
    background-color: var(--secondary-color);
}

.modal-dialog {
    max-width: 600px;
}

.modal-content .modal-header {
    padding: 0;
    border: none;
    background: none;
    border: none;
}

.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    outline: none;
    border: none;
    background-color: var(--secondary-color);
    opacity: 1;
}

.modal-header .close {
    color: var(--body-color);
}

.modal-body {
    padding: 1.5rem;
    border: 1px solid #ffffff26;
}

/* -------------------------------------------------
header
------------------------------------------------- */
 /* ── HEADER ─────────────────────────────────────────── */
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 998;
    padding: 1px 0;
    background: #fffefe8a;
    transition: background 300ms ease-in-out;
  }

  .header.fixed {
    background: var(--primary-light);
  }

  .containerBox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
  }

  /* ── LOGO ───────────────────────────────────────────── */
  .header .logo {
    width: 140px;
    z-index: 2;
    transition: all 300ms ease-in-out;
    margin-top: 7px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
  }

  .header.fixed .logo {
    color: var(--body-color);
  }

  .header .logo img {
    width: 100%;
    height: auto;
  }

  /* ── NAV ─────────────────────────────────────────────── */
  .header .nav { display: flex; align-items: center; gap: 1rem; }

  /* Desktop: horizontal nav */
  #mainNav {
    display: flex;
    align-items: center;
  }

  #mainNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  #mainNav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    padding: 6px 10px;
    white-space: nowrap;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
  }

  #mainNav ul li a:hover {
    background-color: rgba(0,0,0,0.08);
    color: var(--secondary-color);
  }

  #mainNav ul li.active a { font-weight: 600; color: var(--secondary-color); }

  .header.fixed #mainNav ul li a { color: var(--body-color); }
  .header.fixed #mainNav ul li.active a { color: var(--primary-color); }

  /* Mobile: collapse nav, open via hamburger */
  @media (max-width: 991px) {
    #mainNav {
      display: none;
      position: absolute;
      top: 65px;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.93);
      padding: 1rem 20px;
      z-index: 999;
    }
    #mainNav.open { display: flex; }
    #mainNav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
    }
    #mainNav ul li {
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    #mainNav ul li:last-child { border-bottom: none; }
    #mainNav ul li a { padding: 12px 5px; width: 100%; }
  }

  /* ── MENU BUTTON ─────────────────────────────────────── */
  .menuBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }

  .menuBtn span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--white);
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transform-origin: center;
  }
/* ----------------------------------------------------------
menuContainer 
---------------------------------------------------------- */
.menuContainer {
    position: fixed;
    inset: 0;
    padding-top: 75px;
    z-index: 996;
    background-color: rgb(0 123 255 / 13%);
    backdrop-filter: blur(5px);
    display: none;
}

.menuContainer .inner {
    padding: 5px 15px;
    visibility: hidden;
    background: #000;
    /* background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color)); */
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
    transition: all 300ms ease-in-out;
    position: absolute;
    width: 400px;
    height: 100%;
    right: -10%;
}

.header.fixed+.menuContainer {
    padding-top: calc(1rem + 80px);
}

.menuContainer.active .inner {
    visibility: visible;
    right: 0%;
}

.menuContainer a {
    color: #fff;
    transition: all 300ms ease-in-out;
}

.mainMenu ul li:last-child a {
    padding-bottom: 0;
}


.mainMenu li:not(:last-child) a {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a {
    padding: 10px 0;
    display: block;
    position: relative;
    text-transform: uppercase;
}

/* .mainMenu li.active>a,
.mainMenu li:hover>a {
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
} */

.mainMenu a i {
    font-size: 75%;
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 0;
    transition: all 300ms ease-in-out;
}

.mainMenu li.active>a i,
.mainMenu li:hover>a i {
    right: 10px;
}

.mainMenu li.active>a i {
    transform: rotate(540deg);
}

.menuDrop {
    padding: 5px 15px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
}

.mainMenu ul ul li:last-child a {
    border-bottom: 0;
}

/*header*/

/* ---------------------------------------------------
 enqueryForm
 ---------------------------------------------------  */
.enqueryForm {
    background-color: #fff;
    color: var(--body-color);
    text-align: center;
    transition: all 300ms ease-in-out;
    z-index: 99;
    padding: 1rem;
}

.form-close {
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: maroon;
    color: #fff;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.form-close:hover {
    background: var(--secondary-color);
}

.enqueryForm .form-tag {
    font-size: 14px;
}

.enqueryForm h6,
.enqueryForm .form-bhk {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body-color);
}

.enqueryForm .form-bhk {
    padding: 0 0 0.5rem 0;
    border-bottom: solid rgb(0 0 0 / 10%);
    border-width: 1px 0;
    font-family: var(--serif);
}

.enqueryForm .form-group {
    margin-bottom: 10px;
}

.enqueryForm .form-control,
.modal-body .form-control {
    background-color: transparent;
    color: var(--white);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0px;
    font-size: 14px;
    border-radius: 0;
}

.form-control::placeholder {
    color: var(--white);
}

.enqueryForm span {
    margin-top: 10px;
    display: block;
    font-size: 13px;
}

.enqueryForm .freePick {
    font-size: 11px;
}

/* ------------------------------------------------
form
------------------------------------------------ */

/* -----------------------------------------------------------
 banner
 ----------------------------------------------------------- */
.banner {
    /* margin-top: 75px; */
    height: 100vh;
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner picture img {
  -webkit-animation: 20s infinite alternate zoom;
  animation: 20s infinite alternate zoom;
}
@-webkit-keyframes zoom {
  50% {
    transform: scale(1.15, 1.15);
    transform-origin: center bottom;
  }
}
@keyframes zoom {
  50% {
    transform: scale(1.15, 1.15);
    transform-origin: center bottom;
  }
}
.cloud {
  right: 0;
  top: 0;
  height: 33%;
  background: url(../cloud.png) repeat-x;
  animation: 80s linear infinite animateclouds;
  pointer-events: none;
  opacity: 0.2;
  z-index: 2;
}
.contactFormimg 
{
    overflow: hidden;
}
.contactFormimg img{
  -webkit-animation: 30s infinite alternate zoom;
  animation: 30s infinite alternate zoom;
}
/* -----------------------------------------
heroConfigrationbox
  ----------------------------------------- */
.heroConfigrationbox {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #000000d3;
    position: absolute;
    top: 50%;
    left: 14%;
    transform: translateY(-50%);
    text-transform: uppercase;
    color: var(--white);
    padding: 2rem;
    max-width: 520px;
    z-index: 99;
}

.heroConfigrationbox .titleBox {
    position: relative;
    padding: 0 0 1.3rem 0;
}

.heroConfigrationbox .titleBox::before {
    border-bottom: 3px solid var(--secondary-color);
    position: absolute;
    width: 40%;
    content: '';
    left: 0;
    bottom: 0;
    z-index: 999;
}

.heroConfigrationbox .priceTitle {
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.heroConfigrationbox .confiBox {
    padding: 2rem 0 1rem 0;
}

.heroConfigrationbox .confiBox p {
    font-size: 1.2rem;
}

.heroConfigrationbox .confiBox span {
    font-weight: 600;
}


.heroConfigrationbox .button {
    padding: 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

/* ---------------------------------
 sticky form
 --------------------------------- */
.stickyForm {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background-color: black;
    color: var(--white);
    text-align: center;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
    transition: all 300ms ease-in-out;
    z-index: 99;
    width: 100%;
}

.stickyForm .formText {
    margin-bottom: 1rem;
}

.stickyForm .formText .head {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stickyForm .form-group {
    margin-bottom: 0;
}
.font11
{    
    font-size: 11px;
    line-height: 1.1;
    margin-top: 8px;
    text-align: left;
}
.stickyForm .form-control,
.modal-body .form-control {
    border-bottom: 2px solid #eaeaea;
    background-color:var(--primary-light) !important;
    padding: 12px 10px;
    font-size: 14px;
    color: var(--body-color);
    border-radius: 0;
    margin: 0;
}

.stickyForm .readmore {
    display: flex;
}

.stickyForm .readmore .button:last-child {
    background: linear-gradient(195deg, #4f5fb0, #4f5fb0);
    border: 1px solid #020b3a;
    color: var(--white);
}

.stickyForm .readmore .button:last-child:hover {
    border: 1px solid var(--primary-color);

}

.stickyForm .readmore .button:last-child a {
    color: var(--white);
}

/*------------------------------------------------ 
overview
------------------------------------------------ */
.overview {
    position: relative;
    overflow: hidden;
}

.overview .overvieBtnBox {
    margin-top: 2rem;
}

.overview .overvieBtnBox .box {
    margin-top: 0.5rem;
    gap: 1rem;
    text-align: center;
}
.overview .overvieBtnBox .box p
{
    line-height: 1.2;
    font-size: 13px;
}

.overview .overvieBtnBox .box .img { 
    flex: 0 0 30px;
    width: 45px;
    margin: auto;
    margin-bottom: 12px;
}

.overview .overvieBtnBox .box .img img {
    width: 100%;
}

.overview .readmore {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}



/* -----------------------------------------------
stateinnerbox
----------------------------------------------- */
.stateinnerbox {
    margin-top: 2rem;
}

.stateinnerbox .statesbox {
    border-left: 1px solid var(--primary-color);
    padding-left: 0.8rem;
}

.stateinnerbox .statesbox p {
    font-weight: 600;
    color: var(--body-color);
    font-family: var(--serif);
    text-transform: uppercase;
}

.stateinnerbox .statesbox span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    color: var(--primary-color);
}

/* -------------------------------------------
 amenities
 ------------------------------------------- */
/* amenities section starts here */
/* amenities section starts here */

.amenities_section {
  padding: 80px 0;
  background: var(--primary-theme); 
  overflow: hidden;
}

.amenities_section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.amenities_section .amenity_list {
  display: flex;
  flex-direction: column;
}

.amenities_section ul .amenity-box {
  /* background: #f9f9f9; */
  background: var(--secondary-theme);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  /* min-width: 190px; */
  min-width: 180px;
  position: relative;
  overflow: hidden;
}

.amenities_section ul .amenity-box.ameinity_width {
  width: 100%;
}

/*.amenities_section ul .amenity-box img {
  filter: invert(1);
}*/

.amenity-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.amenity-box:hover .overlay {
  opacity: 1;
}

.col-4.align-self-center.pe-0.d_view .amenity_list .amenity-box:first-child .overlay {
  opacity: 1;
  pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: unset;
}

.amenities_section ul .amenity-box span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  color: var(--text-white);
}

.amenity-box .overlay span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}
.section_title {
    font-family: var(--first-font);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}
.amenities_section ul .amenity-box span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
    color: var(--text-white);
}

/* amenities section css ends here */
/* -------------------------------------------
Galllery
------------------------------------------ */
/* gallery section css starts here */

.gallery_section {
  /*padding: 80px 0 120px;*/
  position: relative;
  overflow: hidden;
}

/* Default slide */
.center-slider .gallery-card {
  background-color: var(--secondary-theme);
  border-radius: 10px;
  padding: 3px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.center-slider .gallery-card span {
  position: absolute;
  bottom: 10px;
  right: 2%;
  font-size: 10px;
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 5px;
  border-radius: 5px;
}

.center-slider .gallery-card img {
  width: 100%;
  border-radius: 10px;
  height: 320px;
  object-fit: cover;
}

.center-slider .slick-slide {
  margin: 0 10px;
}

.slide-arrow6.prev-arrow6,
.slide-arrow6.next-arrow6 {
  position: absolute;
  bottom: -50px;
  z-index: 10;
  background: var(--secondary-theme);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  height: 44px;
  width: 44px;
  text-align: center;
}

.slide-arrow6.prev-arrow6 {
  right: 70px;
}

.slide-arrow6.next-arrow6 {
  right: 10px;
}

.slide-arrow6:hover {
  background: #000a2b
}

.slide-arrow6 img {
  filter: brightness(0) invert(1);
}

/* gallery section css ends here */
/* -------------------------------------------
 floorplans
 ------------------------------------------- */
 .gap-10
 {
    column-gap: 10px;

 }
.confi-block {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    border: 1px solid #e5d5b8;
    background: #fff7e9;
    overflow: hidden;
    position: relative;
}
.confi-block::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 95px;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 5px;
    background-image: url(../images/logo-elemen.png);
    opacity: 0.1;
}
.confi-bottom-part
{
    display: flex;
    justify-content: end;
}
.font-variant-nums {
    font-variant: lining-nums !important;
}
.is-size-7 {
    font-size: 16px !important;
}
.text-golden {
    color: #cead53 !important;
    border-bottom: 1px solid;
}
.confi-block::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-size: cover;
    top: 0;
    right: 0;
    background-image: url(../images/confi-top-element.svg);
}
/* --------------------------------------------------
hmVirtual
 -------------------------------------------------- */
.hmVirtual {
    overflow: hidden;
}

.hmVirtual .siteBox {
    position: relative;
}

.hmVirtual .siteBox img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.hmVirtual .siteBox .readmore {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: center;
}

.hmVirtual .subHeading::before {
    left: 50%;
    transform: translate(-50%);
}

/* --------------------------------------------------
location
 -------------------------------------------------- */
.location {
    overflow: visible;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.location .map {
    width: 100%;
    min-height: 450px;
    height: 100%;
    display: block;
}

.location .map iframe {
    width: 100%;
    min-height: 450px;
    height: 100%;
    border: 0;
    display: block;
}

.location .map img {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid var(--body-light);
}

/* .location .map .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
} */

.location .locationContainer {
    margin-top: 1rem;
}

.location .iconBox {
    /* border: 1px solid #ed382f38; */
    border: 1px solid var(--body-light);
    background-color: var(--white);
    transition: all 300ms ease-in-out;
    text-align: center;
    width: 100%;
    height: 100%;
}

.location .iconBox .in {
    padding: 2rem 0;
    height: 100%;
    width: 100%;
}

.location .iconBox .img {
    width: 24px;
    margin: 0 auto;
}

.location .iconBox .img img {
    width: 100%;
}

.location .iconBox h6 {
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ------------------------------------------------
 footer
 ------------------------------------------------ */
.footer {
    padding: 2rem 0;
}

.footer .reralogo {
    max-width: 200px;
}

.footer .reralogo img {
    width: 100%;
    height: 100%;
}

.footer .reraImg {
    background-color: var(--white);
    max-width: 400px;
    padding: 1rem;
    margin-top: 1rem;
}

.footer .reraImg img {
    width: 100%;
    height: 100%;
}

.footer .reraDetailsBox {
    border-left: 1px solid var(--body-color);
    padding-left: 3rem;
} 


/* ---------------------------------------------------
privacyBox
--------------------------------------------------- */
.privacyBox {
    padding-top: 1rem;
    background-color: rgb(10 10 10 / 89%);
    border-top: 1px solid rgb(255 255 255 / 15%);
    padding-bottom: 6rem;
}

.privacyBox .inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.privacyBox .inner p,
.privacyBox .inner p a {
    color: var(--white);
}

/* ---------------------------------------------------
footer-enquiryBtn
--------------------------------------------------- */
.footer-enquiryBtn {
    position: fixed;
    bottom: 2px;
    left: 2px;
    right: 2px;
    display: flex;
    justify-content: space-between;
    z-index: 99;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    text-align: center;
}

.footer-enquiryBtn a {
    color: #ffffff;
    text-align: center;
    display: block;
    width: calc(100% / 2);
    padding: 8px 5px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
    background: linear-gradient(45deg, #0db634, #015c16);
    border: 0;
    color: #fff;
}
.bg-image {
  background: center / cover no-repeat fixed;
    z-index: 1;
}

.bg-image::before {
    content: "";
    position: absolute;
    /* inset: 0; */
    background: linear-gradient(to left, black, transparent);
    z-index: -1;
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
}

.bg-image.overlay-white::before {
  background: linear-gradient(to left,
      rgb(255 255 255 / 40%),
      rgb(255 255 255 / 95%));
}
.tagline {
    max-width: 800px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
}
.hm-contactContainer{
    background: url(../images/floor-plan-bg.jpg) right bottom;
}
.contactForm .row{
    margin-left:-10px;
    margin-right:-10px;
}
.contactForm .row div[class^=col]{
    padding-left:10px;
    padding-right:10px;
}
.form-group{
    margin-bottom:20px;
}

label{
    margin-bottom: 0;
    font-weight: 600;
}
.form-control{
    font-size:14px;
    padding:12px 16px;
    height:auto;
    background-color:#fff8f0;
    border:none;
    border-bottom: 2px solid var(--primary-color);
    color:#181818;
    border-radius:0;
    transition:all 300ms ease;
}
.form-control:focus{
    background-color:#fcefdf;
    border-bottom-color: var(--primary-color);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}
.form-control::placeholder{
    color:rgba(0,0,0,1);
}

/* ── Contact / Schedule form on dark bg ──────────────────── */
#contactForm .form-control {
    background: transparent !important;
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
    border-radius: 0;
    padding: 12px 4px;
    font-size: 14px;
    transition: border-color 300ms ease;
}
#contactForm .form-control:focus {
    background: transparent !important;
    background-color: rgba(255,255,255,0.07) !important;
    border-bottom-color: var(--secondary-color) !important;
    box-shadow: none;
}
#contactForm .form-control::placeholder {
    color: rgba(255,255,255,0.75) !important;
}
.formFooter.readmore button{
    text-transform:uppercase;
    border-radius: 0;
    color: #fff;
    background: var(--body-color);
    letter-spacing:1px;
    width: 100%;
}
.formFooter.readmore button:hover{
    background: var(--primary-color);
    color: var(--body-color);
}
.amenitiesitem .inner {
  height: 100%;
  aspect-ratio: 3/2;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  color: #fff;
  background-color: rgb(255 255 255 / 15%);
  font-family: var(--serif);
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.amenitiesitem .inner .icon {
  width: 50px;
  filter: contrast(1.2);
}

.tagline {
  max-width: 800px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #122895bd;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body .in h6
/*{    
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;

}
.accordion-body .in:nth-last-child(1) h6
{
    border: none;
}
/* -------------------------------------------
luxurious
 ------------------------------------------- */
.luxurious {
    position: relative;
}

/* overlayImg */
.luxurious .overlayImg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* overlayContent */
.luxurious .overlayContent {
    text-align: center;
    /* color: #8E5D25; */
    margin: auto;
}

.luxurious .overlayContent p {
    /* font-size: 1.4rem; */
}

/* overContent */
.luxurious .luxuribox {
    /* margin-top:2rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.luxurious .luxuribox:hover .circleImg {
}

/* Circle + hover zoom */
.luxurious .circleImg {
    position: relative;
    /* width: 250px; */
    /* height: 250px; */
    margin: 0 auto;
    /* border-radius: 50%; */
    transition: transform 0.25s ease-in-out;
    overflow: hidden;
}

.luxurious .circleImg img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    transition: transform 0.25s ease-in-out;
}
.luxurious .circleImg:hover img {
    transition: transform 0.25s ease-in-out;
    transform: scale(1.20);
}

/* Gradient border */
.luxurious .circleImg::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    z-index: -1;
}

/* heading */
.luxurious .circleTitle {
    margin-top: 16px;
    padding: 15px 0 0 0;
    opacity:1;
    /* margin-top: 2rem; */
}

.luxurious .luxuribox:hover .circleTitle {
    opacity: 1;
    visibility: visible;
}
 .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }
    .Exudingluxury
    {
        width: 400px;
        margin-right:2rem;
        margin-bottom: 4rem;
        text-transform: none;
        text-align: left;
        max-width: 100%;
    }
    .exuding-luxury-elegance
    {
        text-align: left;
    }
    .overSwiper
    {
        position: relative;
    }
    .overSwiper h4
    { 
    /* position: absolute; */
    top: 0;
    color: #000000;
    font-size: 15px;
    width: 100%;
    margin-top: 1rem;
    /* height: 200px; */
    padding-top: 2rem;
    font-weight: 400;
    width: 100%;
    }
    .overSwiper span
    {        
        letter-spacing:1px;
    }
    .amenities-list2 li
    {
        list-style-type: initial;
    }
/* Connectivity accordion spacing */

.conn-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #ddd;
}

.conn-item:last-child{
    border-bottom:none;
}

.place{
    font-weight:500;
}

.distance{
    font-weight:600;
    white-space:nowrap;
}
section {
    scroll-margin-top: 100px; /* adjust to your header height */
}
#backToTop{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6A632A; /* match your theme */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    transition: all .3s ease;
}

#backToTop:hover{
    transform: translateY(-4px);
    background: var(--secondary-color);
}
#backToTop{
    display:flex !important;
}
.bg-warning {
    --bs-bg-opacity: 1;
    background-color: #53d161 !important;
}
.floor_section .tab-content h5 {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
    background: var(--secondary-theme);
    padding: 14px 0px;
    color: var(--text-white);
    border-radius: 4px;
}
/* Floor Image Competitor Boxes */
.floor_image {
    background-color: #4f5fb0;
    border-radius: 6px;
    padding: 18px 10px;
    text-align: center;
    margin: 10px 5px;
}

.floor_image h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Exclusive Phase-1 Offer Price Box */
.offerPriceBox {
    background-color: #1a0a14;
    display: inline-block;
    padding: 0;
    margin-bottom: 16px;
    border: 1px solid #3a1a2a;
}

.offerLabel {
    background-color: #1a0a14;
    color: #ff2222;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
    border-bottom: 1px solid #3a1a2a;
}

.offerPrices {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
}

.oldPrice {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.85;
    position: relative;
    display: inline-block;
}
.oldPrice::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background-color: #ff2222;
    transform: rotate(-15deg);
    transform-origin: center center;
}

.priceDivider {
    color: #666;
    font-size: 18px;
}

.newPrice {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

/* ── Banner Waived Off Bottom Bar ── */
.bannerWaivedBar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 99;
    border-top: 2px solid #4a4f9a;
}

.bannerWaivedItem {
    flex: 1;
    background-color: #4a4f9a;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 10px;
    border-right: 2px solid #3a3f8a;
    letter-spacing: 0.3px;
    transition: background 0.3s;
}

.bannerWaivedItem:last-child {
    border-right: none;
}

.bannerWaivedItem:hover {
    background-color: #3a3f8a;
}
