@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
  .tabs-box .row {
    flex-direction: column-reverse !important;
  }
  .apartment-card__bottom{
    justify-content: space-around !important;
  }
  .apartment-card__heart {
    width: 60px;
  height: 60px;
  }
}

@media (max-width: 1200px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.main-header__logo img {
  width: 100%;
}
.sec-title__title1 .span_underh2 {
  color: var(--zoomvilla-base, #d7984e);
  font-size: 28px;
}
.sec-title__title1 {
  font-weight: 600;
  color: #0b1a37;
}

.span_heading {
  font-weight: 700;
  letter-spacing: 1px;
  color: #0b1a37;
}

.apartment-carousel-wrapper .owl-stage-outer {
  padding: 10px 0;
}

.apartment-carousel-wrapper .item {
  padding: 0 0;
}

.apartment-carousel-wrapper .apartment-card {
  margin: 0;
  height: 100%;
}

.apartment-carousel-wrapper .owl-dots {
  margin-top: 25px;
  text-align: center;
}
.apartment-carousel-wrapper .owl-stage-outer {
  overflow: visible;
}

.apartment-carousel-wrapper .owl-item {
  opacity: 1;
}
.apartment-carousel-wrapper {
  overflow: hidden;
}

.feature-two__item__icon img {
  width: 45px;
}
.feature-two__item:hover .feature-two__item__icon img {
  filter: invert(1);
}

.service-card__icon img {
  width: 60px;
}

 :root{
      --primary:#063d4c;
      --primary-dark:#032f3b;
      /* --soft-bg:#eef3f2; */
      /* --panel-bg:#dfe8e5; */
      /* --white:#ffffff; */
      --text:#0c2330;
      /* --muted:#7e8a97; */
      /* --border:#d9dee5; */
      --green:#19aa43;
      --green-dark:#119137;
      /* --shadow:0 20px 60px rgba(0,0,0,.22); */
      /* --radius:22px; */
    }

  /*  *{
      box-sizing:border-box;
    }

    body{
      margin:0;
      font-family:"Inter", sans-serif;
      background:#f4f6f8;
    } */
.grw-net-widget {
  margin-left: 0 !important;
}

.open-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin:40px; */
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  width: min(980px, 100%);
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: popupUp 0.25s ease;
}

@keyframes popupUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-header {
  background: var(--zoomvilla-base, #d7984e);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0 100%, 0 0);
  border-radius: 20px 0 0 0;
}

.popup-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.popup-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.popup-body {
  display: grid;
  grid-template-columns: 305px 1fr;
  background: #fff;
  border-radius: 20px;
}

.popup-left {
  background: #dfe8e5;
  padding: 26px 22px;
  text-align: center;
  border-radius: 0 0 0px 20px;
}

.popup-left h4 {
  margin: 0 0 26px;
  color: #000;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}


.promise-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.promise-icon {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
}

.promise-item p {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.popup-right {
  padding: 28px 32px;
  background: #fff;
  border-radius: 0 0 20px;
}

.form-grid {
  display: grid;
  gap: 5px;
}

.input-wrap {
  position: relative;
}

.form-control {
  width: 100%;
  height: 52px;
  border: 1px solid #00000045;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 16px;
  color: var(--text);
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}

.form-control::placeholder {
  color: #9aa5b1;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 61, 76, 0.08);
}

.mobile-group {
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 100%;
  min-width: 120px;
  border-right: 1px solid var(--border);
  color: #6b7280;
  font-size: 16px;
  white-space: nowrap;
}

.country-code .flag {
  font-size: 20px;
}

.mobile-input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  font-size: 16px;
  color: var(--text);
}

select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.btn {
  height: 56px;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 61, 76, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(25, 170, 67, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  color: #fff0ff;
}

.btn small {
  font-size: 0.95em;
}

@media (max-width: 860px) {
  .popup-body {
    grid-template-columns: 1fr;
  }

  .popup-left {
    padding: 22px 18px;
  }

  .popup-left h4 {
    font-size: 24px;
  }

  .promise-list {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    flex-direction: row !important;
    gap: 16px;
    justify-content: center;
  }

  .popup-right {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .popup-overlay {
    padding: 10px;
    /* align-items: flex-end; */
  }

  .popup-box {
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    border-radius: 18px 18px 0 0;
  }

  .popup-header h3 {
    font-size: 18px;
  }

  .promise-list {
    /* grid-template-columns: 1fr; */
    flex-direction: row !important;

  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .country-code {
    min-width: 105px;
    font-size: 15px;
  }

  .form-control,
  .mobile-group {
    height: 40px;
  }

  .btn {
    height: 52px;
    font-size: 16px;
  }
}

.error{
    color: red;
}

#phone, #phone1, #phone2, #phone3, #phone4, #phone5{
    width: 100%;
}

.full-height{
    height: 50vh;
}

.apartment-card__image img{
  filter: blur(6px);
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappRipple 1.8s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 35px;
        bottom: 100px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .beyonce-page .contact-two__contact-box{
      display: flex;
      flex-direction: column;
      width: 100%;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 35px;
        bottom: 100px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
}

.emi-float-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: var(--zoomvilla-base);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9999;
    /* box-shadow: 0 8px 25px rgba(217,154,78,0.45); */
    animation: emiPulse 1.8s infinite;
}

@keyframes emiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.emi-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.emi-popup-overlay.active {
    display: flex;
}

.emi-popup-box {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.emi-popup-box h3 {
    margin-bottom: 30px;
    color: #14213d;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.emi-close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 34px;
    cursor: pointer;
}

.emi-calculator-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.emi-row {
    margin-bottom: 36px;
}

.emi-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    color: #14213d;
    font-size: 15px;
}

.emi-label strong {
    background: #e7f9f3;
    color: #00b386;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 800;
}

.emi-row input[type="range"] {
    width: 100%;
    appearance: none;
    height: 4px;
    background: #e6e6ea;
    border-radius: 10px;
    outline: none;
}

.emi-row input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.emi-row input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.emi-output {
    margin-top: 45px;
}

.emi-output p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #6f7895;
    font-size: 16px;
}

.emi-output b {
    color: #14213d;
    font-weight: 700;
}

.emi-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emi-legends {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    font-size: 12px;
    color: #6f7895;
}

.emi-legends span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.emi-legends i {
    width: 20px;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}

.principal-dot {
    background: #ffcc9242;
}

.interest-dot {
    background: #d7984e;
}

.emi-chart {
    width: 260px;
    height: 260px;
}

.emi-donut {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#d7984e 0deg, #ffcc9242 0deg);
    position: relative;
}

.emi-donut::after {
    content: "";
    position: absolute;
    inset: 40px;
    background: #fff;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .emi-popup-box {
        max-height: 90vh;
        overflow-y: auto;
        padding: 28px 20px;
    }

    .emi-calculator-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .emi-right {
        order: 1;
    }

    .emi-chart {
        width: 210px;
        height: 210px;
    }

    .emi-donut::after {
        inset: 34px;
    }

    .emi-float-btn {
        left: 15px;
        bottom: 15px;
        font-size: 13px;
        padding: 12px 16px;
    }
}
.nest-compare-section {
  padding: 60px 15px;
  /* background: linear-gradient(135deg, #e8fbf8, #fff7ed); */
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.nest-compare-card {
  width: 100%;
  /* max-width: 1100px; */
  margin: auto;
  background: #222;
  border-radius: 34px;
  padding: 25px;
  overflow: hidden;
}

.compare-tabs {
 display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  align-items: end;
  gap: 15px;
  padding: 0 25px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.compare-tab {
  height: 80px;
  border-radius: 34px 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nest-tab {
  background: #d7984e;
  transform: translateY(-1px);
}

.others-tab {
  background: #d7984e;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  transform: translateY(-1px);
}

.nest-tab img {
  max-width: 170px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.compare-table {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  border-bottom: 8px solid #fff;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row > div {
  padding: 13px 10px;
  /* min-width: 0;
  word-break: normal;
  overflow-wrap: break-word; */
  text-align: start;
  font-size: 17px;
  line-height: 1.4;
  color: #111;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.compare-title {
  font-weight: 800;
  background: #fff0e8;
}

.compare-nest {
  background: #fbfbfb;
}

.compare-others {
  background: #f5f5f5;
}

.compare-nest b {
  font-weight: 900;
}

/* Tablet */
@media (min-width: 991px) {
  .main-header__bottom::after {
  display: none;
  }
}
@media (max-width: 991px) {
  .main-header__logo img{
    width: 130px !important;
  }
  .about-one__features__list li{
    font-size: 16px;
  }
  .main-header__bottom::after {
  display: none;
  }
}
@media (max-width: 991px) {
  .nest-compare-card {
    max-width: 760px;
    padding: 18px;
  }

  .compare-row > div {
    font-size: 15px;
    padding: 20px 14px;
  }

  .others-tab {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .nest-compare-section {
    padding: 35px 10px;
  }
  .compare-tab-spacer{
    display: none;
  }

  .nest-compare-card {
    padding: 12px;
    border-radius: 24px;
  }

  .compare-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .compare-tab {
    min-height: 72px;
    border-radius: 18px 18px 0 0;
  }

  .nest-tab img {
    max-width: 120px;
    padding: 8px 10px;
  }

  .others-tab {
    font-size: 20px;
    line-height: 1.2;
  }

  .compare-table {
    border-radius: 20px;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
    border-bottom: 0px solid #fff;
  }

  .compare-title {
    grid-column: 1 / -1;
    padding: 14px 10px !important;
    font-size: 16px !important;
  }

  .compare-row > div {
    padding: 16px 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .compare-nest,
  .compare-others {
    min-height: 90px;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .compare-row > div {
    font-size: 13px;
    padding: 14px 8px;
  }

  .others-tab {
    font-size: 18px;
  }

  .nest-tab img {
    max-width: 105px;
  }
}
.sec-title .line-left1::before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 20px;
  height: 3px;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-left1::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 15px;
  height: 3px;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-right1::before {
  content: "";
  position: absolute;
  background-color:#000;
  width: 20px;
  height: 3px;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-right1::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 15px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}

.sec-title .line-left1 {
  width: 25px;
  display: inline-block;
  position: relative;
}
.sec-title .line-right1 {
  width: 25px;
  display: inline-block;
  position: relative;
}

.apartment-card__image {
    position: relative; /* needed so the badge anchors to the image */
}

.apartment-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    color: #fff;
    background: rgba(90, 40, 70, 0.85); /* swap with var(--beyonce-plum) if you prefer */
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apartment-card__location {
    margin: 2px 0 0;
    color: var(--beyonce-plum);
    font-size: 13px;
    font-weight: 600;
    opacity: 0.75;
}

.beyonce-page .testimonials-one__item {
    position: relative !important;
    overflow: hidden !important;
}

.beyonce-page .testimonials-one__item__star {
    position: absolute !important;
    right: 32px !important;
    bottom: 27px !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: var(--beyonce-champagne) !important;
}

.beyonce-page .testimonials-one__item__star i {
    font-size: 14px !important;
    line-height: 1 !important;
    background: transparent !important;
    color: #ffe234 !important;

}


/* .beyonce-page .contact-two__contact-box .zoomvilla-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
} */
 .apartment-carousel-wrapper { overflow: hidden; }

.beyonce-page .owl-item .item,
.beyonce-page .owl-item .apartment-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* the CTA row is the widest thing in the card - let it wrap cleanly */
@media (max-width: 576px) {
  .apartment-card__bottom { flex-wrap: wrap; gap: 10px; }
  .apartment-card__bottom .zoomvilla-btn { flex: 1 1 100%; text-align: center; }
}

.mobile-nav__content .social-links{
  display: flex;
  justify-content: start;
  gap: 10px;
  /* margin-top: 20px; */
}

.mobile-nav__content .social-links i{
  font-size: 25px;
}

/* let Owl own the stage animation */
.owl-carousel .owl-stage {
  transition-property: transform !important;
}
.owl-carousel .owl-item {
  transition: none !important;
  backface-visibility: hidden;
  transform: translateZ(0);   /* promote to its own GPU layer */
}
/* pause hover effects while dragging so nothing repaints mid-slide */
.owl-carousel.owl-grab .apartment-card,
.owl-carousel.owl-grab .apartment-card * {
  transition: none !important;
}