@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ar-black: #0d0d0d;
  --ar-black-2: #161616;
  --ar-red: #e2231a;
  --ar-red-dark: #b31a13;
  --ar-white: #ffffff;
  --ar-gray: #b7b7b7;
  --header-h: 92px;
  --ar-red: #e2231a;
  --ar-red-dark: #b31a13;
  --ar-white: #ffffff;
  --banner-h: 920px;
  --ar-red: #e2231a;
  --ar-red-dark: #b31a13;
  --ar-black: #161616;
  --ar-white: #ffffff;
  --ar-red: #e8272c;
  --ar-red-dark: #c81f24;
  --ar-dark: #0d0d0d;
  --ar-gray-bg: #f7f7f8;
  --ar-text-muted: #6b6b6b;
  --ar-red: #e8272c;
  --ar-red-dark: #c81f24;
  --ar-dark: #0d0d0d;
  --ar-gray-bg: #f7f7f8;
  --ar-text-muted: #6b6b6b;
  --ar-red: #e8272c;
  --ar-red-dark: #c81f24;
  --ar-red-soft: rgba(232, 39, 44, 0.08);
  --ar-dark: #0c0c0d;
  --ar-ink: #1a1a1a;
  --ar-muted: #767676;
  --ar-line: #ececec;
  --ar-bg: #fbfaf9;
  --ar-green: #1a9c4f;
  --ar-red: #e8272c;
  --ar-red-dark: #c81f24;
  --ar-text-muted: #6b6b6b;
  --ar-line: #ececec;
  --ar-red: #e8272c;
  --ar-red-dark: #c81f24;
  --ar-gray-bg: #f7f7f8;
  --ar-text-muted: #6b6b6b;
  --ar-line: #ececec;
  --red: #E31E2A;
  --red-dark: #B71219;
  --ink: #161616;
  --ink-soft: #4a4a4f;
  --grey-bg: #f6f6f8;
  --line: #e9e9ec;
  --white: #ffffff;
  --radius-lg: 26px;
  --radius-md: 16px;
      --bg:#0a0a0a;
    --panel:#0f0f0f;
    --red-dim:#5a1512;
    --text:#f5f5f5;
    --text-dim:#9a9a9a;
    --line:#2a2a2a;
}
body,html{
  /* overflow-x: hidden; */
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
/*==================================================
    DESKTOP + MOBILE HAMBURGER MENU
==================================================*/

/* ================= HEADER ================= */
.ar-header {
  background:#0000001c;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1050;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); */
  padding: 10px 40px;
}
.ar-header {
  /* position: fixed; */
  /* top: 0; */
  /* z-index: 1050; */
  width: 100%;
}
.ar-header.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15); /* Optional */
    background-color: #000;
}
.ar-header .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.ar-banner::before {
       content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px; 
       background: linear-gradient(to top, #000000de 0%, rgb(0 0 0 / 53%) 40%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    z-index: 1;
}
/* ---------- Logo ---------- */
.ar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ar-logo img {
  width: 225px;
}

/* ================= OFF-CANVAS NAV (all screen sizes) ================= */
.ar-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 88%;
  max-width: 340px;
  background: var(--ar-black-2, #111);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 1100;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
  padding: 90px 0 30px;
  display: flex;
  flex-direction: column;
}

.ar-nav-wrapper.open {
  transform: translateX(0);
}

.ar-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ar-nav li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ar-nav li a {
  font-family: 'Inter', sans-serif;
  color: #eaeaea;
  text-decoration: none;
  font-weight: 300;
  display: block;
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  transition: color .25s ease, background .25s ease;
}

.ar-nav li a:hover {
  color: var(--ar-red, #e2231a);
}

.ar-nav li a.active {
  color: var(--ar-red, #e2231a);
  background: rgba(226, 35, 26, 0.08);
  border-left: 3px solid var(--ar-red, #e2231a);
  padding-left: 25px;
}

/* ---------- Phone (inside off-canvas nav) ---------- */
.ar-phone-mobile {
  padding: 20px 28px 0;
}

.ar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ar-white, #fff);
  font-size: 12px;
  white-space: nowrap;
  text-decoration: none;
}

.ar-phone img {
  width: 16px;
}
.ar-phone a {color:#fff;}
.ar-phone a:hover {
  color: var(--ar-red, #e2231a);
}

/* ---------- Close button ---------- */
.ar-mobile-close {
  position: absolute;
  top: 22px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Toggler (hamburger) ---------- */
.ar-toggler {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

.ar-toggler span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ar-white, #fff);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s ease;
}

.ar-toggler.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}



.ar-toggler.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Small screens fine tuning ---------- */
@media (max-width: 400px) {
  :root {
    --header-h: 76px;
  }

  .ar-logo img {
    width: 170px;
  }
}
/* banner-css-start */

/* ================= BANNER WRAPPER ================= */
.ar-banner {
    position: relative;
    width: 100%;
    height:600px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    margin-top: 0;
}

/* ---------- Slick slider (IMAGES ONLY) ---------- */
.ar-slider,
.ar-slider .slick-list,
.ar-slider .slick-track {
  height: 100%;
}

.ar-slide {
  position: relative;
  height: var(--banner-h);
  overflow: hidden; /* clips the zoomed image inside the slide box */
}

.ar-slide img {
  width: 100%;
  height: var(--banner-h);
  display: block;
  object-fit: cover;
  transform: scale(1);
}

.ar-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

/* ================= ZOOM IN → ZOOM OUT ================= */
.ar-slide.slick-active img {
  animation: zoomInOut 6s ease-in-out forwards;
}

@keyframes zoomInOut {
  0%   { transform: scale(1); }      /* start normal */
  50%  { transform: scale(1.15); }   /* zoom in */
  100% { transform: scale(1); }      /* zoom back out before next slide */
}

.ar-slider .slick-dots {
  bottom: 24px;
  z-index: 5;
}

.ar-slider .slick-dots li button:before {
  color: #fff;
  opacity: .6;
  font-size: 9px;
}

.ar-slider .slick-dots li.slick-active button:before {
  color: var(--ar-red);
  opacity: 1;
}

/* ================= FIXED OVERLAY (does NOT scroll/slide) ================= */
.ar-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  /* let clicks pass except on interactive children */
}

.ar-overlay-content .container,
.ar-overlay-content a,
.ar-overlay-content button,
.ar-overlay-content input,
.ar-overlay-content select {
  pointer-events: auto;
}

/* ---------- Heading ---------- */
.ar-heading {
  text-align: center;
  margin-top: 240px;
  font-family: 'Advent Pro', sans-serif;
  color: var(--ar-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}



/* ================= TYPEWRITER ANIMATION ================= */
#line1,
#areaName{
    display:inline-block;
    white-space:nowrap;
    border-right:2px solid #fff;
}

.cursor-hide{
    border-right:none !important;
}
/* ---------- Search bar ---------- */
.ar-search-wrap {
  margin-top: 40px;
}

.ar-search-bar {
  background: #fff;
  border-radius: 60px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: 80%;
  margin: auto;
}

.ar-search-field {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 22px 28px;
  position: relative;
}

.ar-search-field input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

.ar-search-field input::placeholder {
  color: #444;
}

.ar-search-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 14px 0;
}

.ar-search-select {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}



.ar-search-btn {
  flex: 0 0 auto;
  background: var(--ar-red);
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background .2s ease;
}

.ar-search-btn:hover {
  background: var(--ar-red-dark);
}

/* ---------- Stats row ---------- */

.ar-stats{
    margin-top: 80px;
}
.ar-stats .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.ar-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.ar-stat-item i {
  font-size: 40px;
  color: #fff;
}

.ar-stat-num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  display: block;
}

.ar-stat-label {
  font-size: 22px;
  font-weight: 400;
  color: var(--ar-red);
  display: block;
}
.ar-stat-item img {
  width: 30px!important;
}

/* banner-bottom-css */

/* =========================================================
     COMMON / REUSABLE SECTION HEADER
     Reuse this exact markup block (.ar-section-header) at the
     top of any section. Only the two text strings change.
     No class is ever placed on a <p> tag anywhere in this file.
  ========================================================= */
.ar-section-header {
  text-align: center;
  margin: 0 auto 46px;
}

.ar-section-header .ar-section-title {
  font-family: "Advent Pro", sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ar-black);
}

.ar-section-header .ar-section-title .ar-accent {
  color: var(--ar-red);
}

.ar-section-header .ar-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    width: 50%;
    margin: auto;
}

/* ================= PROPERTIES SECTION ================= */
.ar-properties {
  padding: 70px 0 40px;
  overflow: hidden;
}

.ar-slider-outer {
  position: relative;
}

.ar-p-slider {
  margin: 0 -14px;
}

.ar-p-slider .slick-list {
  overflow: visible;
}

.ar-p-slide {
  padding: 0 14px;
}

.ar-p-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 420px;
  transform: scale(0.92);
  opacity: 0.55;
  filter: blur(1px);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease;
}

.ar-p-slide.slick-center .ar-p-card {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(0);
}

.ar-p-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ar-p-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.ar-p-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 28px 24px;
  color: #fff;
}

.ar-p-name {
  font-family: "Advent Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ar-p-by {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e9e9e9;
  margin-bottom: 14px;
}

.ar-p-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.ar-p-meta-item {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #f1f1f1;
  white-space: nowrap;
}

.ar-p-meta-item i {
  font-size: 15px;
  color: #fff;
}

.ar-p-meta-item img {
  width: 24px;
  height: 24px;
}

/* ---------- Arrows ---------- */
.ar-p-slider .slick-arrow {
  width: 36px;
  height: 36px;
  z-index: 5;
  border-radius: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.ar-p-slider .slick-arrow::before {
  font-family: 'bootstrap-icons';
  font-size: 20px;
  opacity: 1;
}

.ar-p-slider .slick-prev {
  left: 0;
  background: var(--ar-red);
  box-shadow: 0 6px 16px rgba(226, 35, 26, 0.4);
}

.ar-p-slider .slick-prev::before {
  content: "\F284";
  color: #fff;
}

.ar-p-slider .slick-next {
  right: 0;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.ar-p-slider .slick-next::before {
  content: "\F285";
  color: #333;
}

.ar-p-slider .slick-prev:hover,
.ar-p-slider .slick-prev:focus {
  background: var(--ar-red-dark);
}

.ar-p-slider .slick-next:hover,
.ar-p-slider .slick-next:focus {
  background: #f2f2f2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
  .ar-p-card {
    height: 360px;
  }

  .ar-section-header .ar-section-title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .ar-p-card {
    height: 320px;
  }

  .ar-section-header {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .ar-section-header .ar-section-title {
    font-size: 24px;
  }

  .ar-section-header .ar-section-subtitle {
    font-size: 14px;
  }

  .ar-p-name {
    font-size: 20px;
  }

  .ar-p-meta {
    gap: 12px;
  }

  .ar-p-meta-item {
    font-size: 12px;
  }

  .ar-p-slider .slick-arrow {
    width: 38px;
    height: 38px;
  }

  .ar-p-slider .slick-arrow::before {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ar-p-card {
    height: 280px;
  }

  .ar-p-info {
    padding: 16px 18px 18px;
  }
}


/* ================= LOCATION SECTION ================= */
.ar-locations {
  padding: 70px 0;
}

.ar-loc-card {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #A6A6A6;
  border-radius: 18px;
      padding: 10px;
  height: 100%;
  background: #fff;
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.ar-loc-card:hover {
  border-color: var(--ar-red);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.ar-loc-img {
    width: 158px;
    height: 120px;
    flex: 0 0 auto;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.ar-loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.ar-loc-card:hover .ar-loc-img img {
  transform: scale(1.12);
}

.ar-loc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ar-loc-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ar-black);
  line-height: 1.2;
}

.ar-loc-count {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ar-red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ar-loc-count i {
  font-size: 13px;
  
  transform: translateX(-4px);
  transition: opacity .3s ease, transform .3s ease;
}

.ar-loc-card:hover .ar-loc-count i {
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 767.98px) {
  .ar-section-header .ar-section-title {
    font-size: 26px;
  }

  .ar-section-header .ar-section-subtitle {
    font-size: 14px;
  }

  .ar-loc-img {
    width: 84px;
    height: 76px;
  }

  .ar-loc-name {
    font-size: 17px;
  }

  .ar-loc-count {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .ar-loc-card {
    padding: 10px;
    gap: 12px;
  }

  .ar-loc-img {
    width: 72px;
    height: 64px;
    border-radius: 10px;
  }

  .ar-loc-name {
    font-size: 15px;
  }
}


/* ------------------ */


.property-slider-wrap {
  position: relative;
  padding: 0 ;
}

.property-slider .slick-slide {
  padding: 0 12px;
}

.property-slider .slick-list {
  margin: 0 -12px;
}

.property-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  
  transform: translateY(24px);
  animation: cardEnter 0.6s ease forwards;
  margin-bottom: 10px;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger the entrance per visible slide */
.slick-slide[data-slick-index="0"] .property-card {
  animation-delay: 0.05s;
}

.slick-slide[data-slick-index="1"] .property-card {
  animation-delay: 0.15s;
}

.slick-slide[data-slick-index="2"] .property-card {
  animation-delay: 0.25s;
}

.slick-slide[data-slick-index="3"] .property-card {
  animation-delay: 0.35s;
}

.slick-slide[data-slick-index="4"] .property-card {
  animation-delay: 0.45s;
}

.property-card .img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.property-card:hover .img-wrap img {
  transform: scale(1.1);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px 5px 12px;
  border-radius: 20px;
  animation: badgeIn 0.5s ease 0.4s both;
  z-index: 9999;
}


.status-badge.under-construction {
  background: #e8272c;
}

.status-badge.ready-to-move {
  background: #333;
}

.property-card .card-body {
  padding: 14px 16px 18px;
}

.property-card .prop-name {
  color: #e8272c;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 2px;
}

.property-card .prop-by {
  color: #222;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.property-card .prop-details {
  list-style: none;
  margin: 0 0 5px;
  padding: 0;
}

.prop-details span {
  display: flex;
}

.prop-details span img {
  margin-right: 5px;
  width: 18px;
  height: 18px;
}

.row-two {
  display: flex;
  justify-content: space-between;
}

.property-card .prop-details li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #000;
    padding: 4px 0;
    font-weight: 500;
}

.property-card .prop-details li .icon {
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 7px;
}

.row-two {
  display: flex;
  gap: 18px;
}

.property-card .prop-price {
    color: #e8272c;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0;
    padding-top: 0;
  transition: letter-spacing 0.3s ease;
}

.property-card:hover .prop-price {
  letter-spacing: 0.3px;
}

/* Arrows */
.property-slider-wrap .slick-prev,
.property-slider-wrap .slick-next {
  width: 34px;
  height: 34px;
  background: #fff;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.2); */
  z-index: 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-slider-wrap .slick-prev:hover,
.property-slider-wrap .slick-next:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(232, 39, 44, 0.35);
}

.property-slider-wrap .slick-prev {
  left: -34px;
  border-radius: 5px 0px 0px 5px;
}

.property-slider-wrap .slick-next {
  right: -34px;
  border-radius: 0px 5px 5px 0px;
}

.property-slider-wrap .slick-prev:before,
.property-slider-wrap .slick-next:before {
  color: #e8272c;
  font-size: 20px;
  opacity: 1;
}

.property-slider-wrap .slick-dots {
  bottom: -32px;
}

.property-slider-wrap .slick-dots li button:before {
  font-size: 9px;
  color: #e8272c;
  opacity: 0.4;
}

.property-slider-wrap .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #e8272c;
}

@media (max-width: 600px) {
  .property-slider-wrap {
    padding: 0 30px;
  }
}

.perfect-location {
  padding: 70px 40px;
  background-color: #e8e8e8;
}

.prop-details li {
  border-bottom: 1px solid #E2E2E2;
}

.dream-home-section {
  background: #0b0b0c;
  padding: 70px 0;
}

/* ---------- Heading (already have yours — shown here for reference) ---------- */
.dream-home-section .section-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.dream-home-section .section-title span {
  color: #e8272c;
}

.dream-home-section .section-subtitle {
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 10px 0 10px 34px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #e8272c;
}

.timeline-item {
  position: relative;
  padding-bottom: 34px;
  cursor: pointer;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0b0b0c;
  border: 2px solid #e8272c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-dot:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8272c;
  transition: transform 0.3s ease;
}

.timeline-item.active .timeline-dot {
  box-shadow: 0 0 0 4px rgba(232, 39, 44, 0.2);
}

.timeline-item.active .timeline-dot:after {
  transform: scale(1.15);
}

.timeline-title {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

.timeline-item:hover .timeline-title {
  color: #e8272c;
}

.timeline-desc {
  color: #a9a9a9;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 8px 0 0;
  max-width: 460px;

  /* collapsible */
  overflow: hidden;
  max-height: 0;
  
  transform: translateY(-4px);
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, margin 0.4s ease;
}

.timeline-item.active .timeline-desc {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Image ---------- */
.dream-home-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
}

.dream-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dream-home-image:hover img {
  transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .dream-home-image {
    min-height: 280px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .dream-home-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -30px;
    width: 18px;
    height: 18px;
  }
}

.dream-home-section .ar-section-title {
  color: #fff;
}


.testimonial-section {
  background: #f7f7f8;
  padding: 70px 0;
}

/* ---------- Heading (reference only — remove, you already have yours) ---------- */
.testimonial-section .section-title {
  text-align: center;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonial-section .section-title span {
  color: #e8272c;
}

.testimonial-section .section-subtitle {
  text-align: center;
  color: #6b6b6b;
  font-size: 14px;
  max-width: 460px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ---------- Slider wrap ---------- */
.testimonial-slider-wrap {
  position: relative;
  padding: 0 42px;
}

.testimonial-slider .slick-slide {
  padding: 0 12px;
}

.testimonial-slider .slick-list {
  margin: 0 -12px;
  padding-top: 6px;
}

/* ---------- Card ---------- */
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 26px 22px 22px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  
  transform: translateY(20px);
  animation: cardEnter 0.6s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slick-slide[data-slick-index="0"] .testimonial-card {
  animation-delay: 0.05s;
}

.slick-slide[data-slick-index="1"] .testimonial-card {
  animation-delay: 0.15s;
}

.slick-slide[data-slick-index="2"] .testimonial-card {
  animation-delay: 0.25s;
}

.slick-slide[data-slick-index="3"] .testimonial-card {
  animation-delay: 0.35s;
}

.quote-icon {
  color: #e8272c;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.15) rotate(-4deg);
}

.testimonial-text {
  color: #555;
  font-size: 13.5px;
  line-height: 1.75;
  min-height: 108px;
  margin-bottom: 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-person img {
  transform: scale(1.08);
}

.person-name {
  color: #1a1a1a;
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
}

.person-role {
  color: #999;
  font-size: 12px;
  margin: 1px 0 5px;
}

.stars {
  color: #e8272c;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ---------- Arrows ---------- */
.testimonial-slider-wrap .slick-prev,
.testimonial-slider-wrap .slick-next {
  width: 32px;
  height: 32px;
  background: #e8272c;
  border-radius: 5px;
  z-index: 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-slider-wrap .slick-prev:hover,
.testimonial-slider-wrap .slick-next:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(232, 39, 44, 0.4);
}

.slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f054";
  font-size: 15px;
  color: #fff;
  opacity: 1;
}

.slick-prev:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f053";
  font-size: 15px;
  color: #fff;
  opacity: 1;
}


.testimonial-slider-wrap .slick-prev {
  left: -40px;
}

.testimonial-slider-wrap .slick-next {
  right: -40px;
}

/* ---------- Dots ---------- */
.testimonial-slider-wrap .slick-dots {
  bottom: -40px;
}

.testimonial-slider-wrap .slick-dots li button:before {
  font-size: 9px;
  color: #c9c9c9;
  opacity: 1;
}

.testimonial-slider-wrap .slick-dots li.slick-active button:before {
  color: #e8272c;
}

/* ---------- Responsive ---------- */
@media (max-width: 576px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .testimonial-slider-wrap {
    padding: 0 34px;
  }
}

/* --------------- */

.partners-section {
  padding: 70px 0 30px;
  background: #fff;
}

.partners-title {
  font-family: "Advent Pro", sans-serif;
  color: #e8272c;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.partners-title span {
  color: #1a1a1a;
}

/* ---------- Logo slider ---------- */
.logo-slider-wrap {
  margin-bottom: 34px;
}

.logo-slider .slick-slide {
  padding: 0 10px;
}

.logo-slider .slick-list {
  margin: 0 -10px;
}

.logo-card {
  height: 78px;
  border: 1px solid #ececec;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  
  transform: translateY(14px);
  animation: logoEnter 0.5s ease forwards;
  overflow: hidden;
}

.logo-card img {
  width: 100%;
}

.ar-search-select {
    position: relative;
    width: 220px;
}

.ar-search-select select {
    width: 100%;
    height: 52px;
    padding: 0 45px 0 18px;
    border:none;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    outline: none;

    /* Remove default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all .3s ease;
}

.ar-search-select select:hover {
    border-color: #0d6efd;
}

.ar-search-select select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

.ar-search-select i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #666;
}
.ar-search-select option {
    background: #ffffff;
    color: #333;
    padding: 10px;
}

.ar-search-select option:checked {
    background: #0d6efd;
    color: #fff;
}

@keyframes logoEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slick-slide[data-slick-index="0"] .logo-card {
  animation-delay: 0.03s;
}

.slick-slide[data-slick-index="1"] .logo-card {
  animation-delay: 0.09s;
}

.slick-slide[data-slick-index="2"] .logo-card {
  animation-delay: 0.15s;
}

.slick-slide[data-slick-index="3"] .logo-card {
  animation-delay: 0.21s;
}

.slick-slide[data-slick-index="4"] .logo-card {
  animation-delay: 0.27s;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #e8272c;
}

.logo-card .logo-text {
  font-weight: 700;
  font-size: 15px;
  color: #333;
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.2;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.logo-card:hover .logo-text {
  filter: grayscale(0%);
}

.logo-card .logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
}

/* ---------- EMI card ---------- */
.emi-card {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.emi-card:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.emi-card h3 {
  font-family: "Advent Pro", sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.emi-card h3 span {
  color: #e8272c;
}

.emi-card p {
  color: #666;
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.emi-btn {
  background: #e8272c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 14.5px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.emi-btn:hover {
  background: #c81f24;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(232, 39, 44, 0.35);
}

.emi-btn:active {
  transform: translateY(0);
}

/* ---------- Slider arrows ---------- */
.logo-slider-wrap .slick-prev,
.logo-slider-wrap .slick-next {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: transform 0.25s ease;
}

.logo-slider-wrap .slick-prev:hover,
.logo-slider-wrap .slick-next:hover {
  transform: scale(1.1);
}

.logo-slider-wrap .slick-prev:before,
.logo-slider-wrap .slick-next:before {
  color: #e8272c;
  font-size: 14px;
  opacity: 1;
}

.logo-slider-wrap .slick-prev {
  left: -6px;
}

.logo-slider-wrap .slick-next {
  right: -6px;
}

/* ================= EMI MODAL ================= */
.emi-modal .modal-content {
  border-radius: 12px;
  border: none;
  overflow: hidden;
}

.emi-modal .modal-header {
  background: #1a1a1a;
  border: none;
  padding: 10px 25px;
}

.emi-modal .modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.emi-modal .modal-title span {
  color: #e8272c;
}

.emi-modal .btn-close {
  filter: invert(1);
}

.emi-modal .modal-body {
  padding: 15px 25px;
}

.emi-field {
  margin-bottom: 12px;
}

.emi-field label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.emi-field label .val {
  color: #e8272c;
  font-weight: 700;
}

.emi-field input[type="range"] {
  width: 100%;
  accent-color: #e8272c;
  cursor: pointer;
}

.emi-result {
  background: #f7f7f8;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  margin-top: 6px;
}

.emi-result .emi-amount {
  color: #e8272c;
  font-size: 30px;
  font-weight: 800;
  animation: pulseIn 0.4s ease;
}

@keyframes pulseIn {
  0% {
    transform: scale(0.92);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.emi-result .emi-label {
  color: #777;
  font-size: 12.5px;
  margin-bottom: 4px;
}

.emi-breakdown {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 10px;
}

.emi-breakdown .bd-item {
  flex: 1;
  text-align: center;
}

.emi-breakdown .bd-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.emi-breakdown .bd-label {
  font-size: 11.5px;
  color: #999;
  margin-top: 2px;
}

.bd-item.principal .bd-value {
  color: #1a9c4f;
}

.bd-item.interest .bd-value {
  color: #e8272c;
}

.emi-bar {
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  margin-top: 14px;
  background: #eee;
}

.emi-bar .bar-principal {
  background: #1a9c4f;
  transition: width 0.5s ease;
}

.emi-bar .bar-interest {
  background: #e8272c;
  transition: width 0.5s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .emi-card {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 40px 0;
  }

  .emi-card {
    padding: 26px 20px;
  }

  .emi-modal .modal-body {
    padding: 22px 18px;
  }
}
/* Same Design for Number Input */

.emi-field input[type="number"]{
width: 30%;
    height: 16px;
    border: none;
    background: #eee;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #e8272c;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
    transition: .3s ease;
}

.emi-field input[type="number"]::-webkit-inner-spin-button,
.emi-field input[type="number"]::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.emi-field input[type="number"]:focus{
    border-bottom-color:#b8171d;
}

.emi-field label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    font-size:13px;
    font-weight:600;
    color:#333;
}

.emi-field{
    margin-bottom:15px;
}
.emi-field label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13.5px;
    font-weight:600;
    color:#333;
    margin-bottom:12px;
}

.emi-edit{
    width:140px;
    border:none;
    background:transparent;
    color:#e8272c;
    font-size:22px;
    font-weight:700;
    text-align:right;
    outline:none;
    appearance:textfield;
    -webkit-appearance:none;
    -moz-appearance:textfield;
}

.emi-edit::-webkit-inner-spin-button,
.emi-edit::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.emi-edit:focus{
    border-bottom:2px solid #e8272c;
}
/* footer-css */

.site-footer {
  background: #0d0d0d;
  padding: 55px 0 0;
  border-radius: 14px;
  margin: 40px;
}

.site-footer .footer-about-text {
  width: 350px;
}

.f-left {
  border-right: 1px solid #fff;
}

.f-middle {
  padding-left: 30px;
}

.footer-heading {
  color: #e8272c;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ---------- About column ---------- */
.footer-about-text {
  color: #b5b5b5;
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.footer-about-text strong {
  color: #e5e5e5;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {width: 200px;}
.footer-logo .logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.footer-logo .logo-text {
  line-height: 1.1;
}

.footer-logo .logo-text .apds {
  display: block;
  font-size: 9px;
  color: #999;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-logo .logo-text .brand {
  display: block;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-logo .logo-text .brand .address {
  color: #fff;
}

.footer-logo .logo-text .brand .realty {
  color: #e8272c;
}

.footer-logo .logo-text .tagline {
  display: block;
  font-size: 8.5px;
  color: #888;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* ---------- Popular Area column ---------- */
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-list li {
  margin-bottom: 12px;
}

.area-list li a {
  color: #cfcfcf;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.area-list li a:hover {
  color: #e8272c;
  padding-left: 4px;
}

/* ---------- Contact column ---------- */
.contact-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: #fff;
  font-size: 11px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-list li .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1c1c1c;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e8272c;
  font-size: 13px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-list li:hover .icon-circle {
  background: #e8272c;
  color: #fff;
  transform: scale(1.08);
}

.contact-list li a,
.contact-list li span {
  color: #cfcfcf;
  font-size: 13.5px;
  line-height: 1.6;
  text-decoration: none;
  padding-top: 5px;
}

.contact-list li a:hover {
  color: #e8272c;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #262626;
  height: 130px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
  margin-top: 45px;
  border-top: 1px solid #222;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #777;
  font-size: 12.5px;
  margin: 0;
}

.footer-bottom a {
  color: #e8272c;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .footer-col {
    margin-bottom: 36px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-heading {
    font-size: 16px;
  }
}


/* --------------ABOUT-CSS------------------ */
/* =========================================================
     Reused common section header (your existing component)
     ========================================================= */
.ar-section-header {
  text-align: center;
  /* max-width: 620px; */
  margin: 0 auto 50px;
}

.ar-section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.ar-accent {
  color: var(--ar-red);
}



/* =========================================================
     1. Page banner / breadcrumb
     ========================================================= */
.about-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin: 20px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: bannerZoom 8s ease-out forwards;
}

@keyframes bannerZoom {
  to {
    transform: scale(1);
  }
}

.about-banner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.75) 100%);
}

.about-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeUpIn 0.9s ease 0.2s both;
}

@keyframes fadeUpIn {
  from {
    
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-banner-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-banner-content h1 span {
  color: var(--ar-red);
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #e8e8e8;
}

.about-breadcrumb a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
  color: var(--ar-red);
}

.about-breadcrumb .sep {
  color: var(--ar-red);
}

.about-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* =========================================================
     2. Who We Are
     ========================================================= */
.who-we-are {
    padding: 50px 0;
}

.who-we-are-img-wrap {
  position: relative;
}

.who-we-are-img-wrap .img-main {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.who-we-are-img-wrap .img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.who-we-are-img-wrap:hover .img-main img {
  transform: scale(1.06);
}

.experience-badge {
  position: absolute;
  bottom: -26px;
  right: -20px;
  background: var(--ar-red);
  color: #fff;
  border-radius: 12px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(232, 39, 44, 0.35);
  animation: floatBadge 3.5s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.experience-badge .num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .lbl {
  font-size: 11.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.who-we-are-text .eyebrow {
  color: var(--ar-red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.who-we-are-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.who-we-are-text h2 span {
  color: var(--ar-red);
}

.who-we-are-text p {
  color: var(--ar-text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: #333;
  
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.who-list.ar-in-view li {
  opacity: 1;
  transform: translateX(0);
}

.who-list.ar-in-view li:nth-child(1) {
  transition-delay: 0.1s;
}

.who-list.ar-in-view li:nth-child(2) {
  transition-delay: 0.2s;
}

.who-list.ar-in-view li:nth-child(3) {
  transition-delay: 0.3s;
}

.who-list.ar-in-view li:nth-child(4) {
  transition-delay: 0.4s;
}

.who-list .check-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(232, 39, 44, 0.1);
  color: var(--ar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================================
     3. Stats strip
     ========================================================= */
.stats-strip {
  background: var(--ar-dark);
  border-radius: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 46px 20px;
}

.stat-box {
  text-align: center;
  color: #fff;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box .stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--ar-red);
  line-height: 1;
}

.stat-box .stat-num .plus {
  color: #fff;
}

.stat-box .stat-lbl {
  font-size: 12.5px;
  color: #bdbdbd;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

@media (max-width: 767px) {
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 12px;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

/* =========================================================
     4. Mission & Vision
     ========================================================= */
.mv-section {
  padding: 90px 0 80px;
  background: var(--ar-gray-bg);
}

.mv-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 30px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mv-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--ar-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-card:hover:before {
  transform: scaleY(1);
}

.mv-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(232, 39, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ar-red);
  margin-bottom: 20px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.mv-card:hover .mv-icon {
  background: var(--ar-red);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.mv-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--ar-text-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
.mv-card ul li {
  color: var(--ar-text-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin:5px 0;
  border-bottom: 1px solid #eee;
}
/* =========================================================
     5. Why Choose Us
     ========================================================= */
.why-section {
  padding: 90px 0 80px;
}

.why-card {
  text-align: center;
  padding:10px 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.why-card .why-img {
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  background: #fff;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ar-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--ar-red);
  margin: 0 auto 18px;
  transition: transform 0.5s ease, background 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.12) rotate(8deg);
  background: var(--ar-red);
  color: #fff;
}

.why-card h5 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--ar-text-muted);
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
     6. Our Journey (timeline)
     ========================================================= */
.journey-section {
  background: var(--ar-dark);
  padding: 90px 0 80px;
}

.journey-section .ar-section-title,
.journey-section .ar-section-subtitle {
  color: #fff;
}

.journey-section .ar-section-subtitle {
  color: #b5b5b5;
}

.journey-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
}

.journey-track:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--ar-red) 0%, rgba(232, 39, 44, 0.15) 100%);
}

.journey-step {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

.journey-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ar-dark);
  border: 2px solid var(--ar-red);
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  top: -10px;
}

.journey-step:hover .journey-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(232, 39, 44, 0.18);
  background: var(--ar-red);
}

.journey-year {
  color: var(--ar-red);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}

.journey-step h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.journey-step p {
  color: #a0a0a0;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .journey-track {
    flex-direction: column;
    gap: 34px;
  }

  .journey-track:before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .journey-step {
    text-align: left;
    padding-left: 34px;
  }

  .journey-dot {
    position: absolute;
    left: 0;
    top: 2px;
    margin: 0;
  }
}

/* =========================================================
     7. Team
     ========================================================= */
.team-section {
  padding: 90px 0 80px;
  background: var(--ar-gray-bg);
}

.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.12);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
  transition: bottom 0.35s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--ar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
  background: var(--ar-red);
  color: #fff;
  transform: translateY(-3px);
}

.team-body {
  padding: 18px 16px 22px;
  text-align: center;
}

.team-body h6 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-body .role {
  font-size: 12.5px;
  color: var(--ar-red);
  font-weight: 600;
}

/* =========================================================
     8. CTA strip
     ========================================================= */
.about-cta {
  background: var(--ar-red);
  border-radius: 18px;
  margin: 40px !important;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.about-cta:before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -60px;
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.about-cta h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 6px;
  position: relative;
  z-index: 2;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.about-cta-btn {
  background: #fff;
  color: var(--ar-red);
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  color: var(--ar-red-dark);
}

@media (max-width: 576px) {
  .about-banner {
    height: 260px;
  }

  .about-banner-content h1 {
    font-size: 28px;
  }

  .who-we-are,
  .mv-section,
  .why-section,
  .journey-section,
  .team-section {
    padding: 60px 0 55px;
  }

  .experience-badge {
    right: 10px;
    bottom: -20px;
    padding: 14px 18px;
  }

  .about-cta {
    text-align: center;
    justify-content: center;
    padding: 40px 24px;
  }
}


/* Common section header (your existing component) */
.ar-section-header {
  text-align: center;
  /* max-width: 620px; */
  margin: 0 auto 40px;
  
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.ar-section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.ar-accent {
  color: var(--ar-red);
}


/* ============================================================
     RESIDENTIAL PROJECTS SECTION
  ============================================================ */
.projects-section {
  padding: 120px 0 90px;
}

/*====================================================
        PREMIUM BLACK REAL ESTATE FILTER BAR
=====================================================*/

.projects-filter-bar{
    display:flex;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:20px;

    background:linear-gradient(145deg,#171717,#0b0b0b);
    padding:22px;
    margin-bottom:45px;

    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 18px 45px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);

    position:relative;
    overflow:hidden;
}

/* Gold Top Line */

.projects-filter-bar::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(135deg,#e2231a,#b50f14);
}

/*========================*/

.filter-field{
    flex:1;
    min-width:180px;
    position:relative;
}

/*========================*/

.filter-field label{
    display:block;
    margin-bottom:8px;

    color:#bcbcbc;

    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

/*========================*/

.filter-field select{
    width:100%;
    height:54px;

    padding:0 48px 0 18px;

    border:1px solid #2f2f2f;
    border-radius:12px;

    background:#222;
    color:#fff;

    font-size:15px;
    font-weight:500;

    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:.35s;
}

.filter-field select:hover{
    border-color:#e2231a;
}

.filter-field select:focus{
    outline:none;
    border-color:#e2231a;
    box-shadow:0 0 0 4px rgba(226,35,26,.15);
}

/*========================*/

.filter-field::after{
    content:"▼";
    position:absolute;
    right:18px;
    top:51px;
    transform:translateY(-50%);
    color:#e2231a;
    font-size:11px;
    pointer-events:none;
}

/*========================*/

.filter-divider{
    width:1px;
    height:62px;
    background:rgba(255,255,255,.08);
}

/*========================*/

.filter-search-btn{
    height:54px;
    min-width:160px;

    margin-top:20px;

    border:none;
    border-radius:12px;

    background:linear-gradient(135deg,#e2231a,#b50f14);

    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.4px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 12px 25px rgba(226,35,26,.28);
}

.filter-search-btn:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,#ff3434,#cf1515);
    box-shadow:0 20px 35px rgba(226,35,26,.40);
}

/*========================*/

.subnav-wrap.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    margin-top:0;

    animation:slideDown .35s ease;

    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}

/*========================*/

@media(max-width:991px){

    .projects-filter-bar{
        gap:18px;
        padding:20px;
    }

    .filter-divider{
        display:none;
    }

    .filter-field{
        width:100%;
        min-width:100%;
    }

    .filter-search-btn{
        width:100%;
        min-width:100%;
        margin-top:0;
    }

    .filter-field::after{
        top:46px;
    }

}

@media(max-width:576px){

    .projects-filter-bar{
        padding:18px;
    }

    .filter-field label{
        font-size:10px;
    }

    .filter-field select{
        height:50px;
        font-size:14px;
    }

    .filter-search-btn{
        height:50px;
    }

}

/* ---------- Sort / count row ---------- */
.projects-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 30px 0;
}

.projects-count {
  font-size: 17px;
  color: var(--ar-text-muted);
}

.projects-count strong {
  color: #1a1a1a;
}

.projects-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.projects-tabs button {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #555;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-tabs button:hover {
  border-color: var(--ar-red);
  color: var(--ar-red);
}

.projects-tabs button.active {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

/* ---------- Project cards ---------- */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.13);
}

.project-card .img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.project-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.project-card:hover .img-wrap img {
  transform: scale(1.1);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 14px 5px 12px;
  border-radius: 20px;
}

.status-badge.under-construction {
  background: var(--ar-red);
}

.status-badge.ready-to-move {
  background: #333;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  display: none;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  color: var(--ar-red);
  transform: scale(1.15);
}

.project-card .card-body {
  padding: 16px 18px 20px;
}

.project-card .prop-name {
  color: var(--ar-red);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 2px;
}

.project-card .prop-by {
  color: #222;
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 12px;
}

.project-card .prop-details {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.project-card .prop-details li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #444;
  padding: 10px 0;
}

.project-card .prop-details li .icon {
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.row-two {
  display: flex;
  gap: 18px;
}

.project-card .prop-price {
  color: var(--ar-red);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-card .prop-price .view-link {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.project-card:hover .prop-price .view-link {
  color: var(--ar-red);
  gap: 7px;
}

/* stagger card entrance */
.project-col:nth-child(1) .project-card {
  transition-delay: 0.03s;
}

.project-col:nth-child(2) .project-card {
  transition-delay: 0.09s;
}

.project-col:nth-child(3) .project-card {
  transition-delay: 0.15s;
}

.project-col:nth-child(4) .project-card {
  transition-delay: 0.21s;
}

.project-col:nth-child(5) .project-card {
  transition-delay: 0.27s;
}

.project-col:nth-child(6) .project-card {
  transition-delay: 0.33s;
}

.project-col:nth-child(7) .project-card {
  transition-delay: 0.39s;
}

.project-col:nth-child(8) .project-card {
  transition-delay: 0.45s;
}

/* ---------- Pagination ---------- */
.projects-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.projects-pagination button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-pagination button:hover {
  border-color: var(--ar-red);
  color: var(--ar-red);
}

.projects-pagination button.active {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

.projects-pagination button.nav-btn {
  border-radius: 20px;
  width: auto;
  padding: 0 16px;
}

@media (max-width: 576px) {
  .projects-section {
    padding: 165px 0 65px;
  }

  .projects-filter-bar {
    padding: 16px;
  }
}

.eyebrow {
  color: var(--ar-red);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.eyebrow:before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--ar-red);
  display: inline-block;
}

/* ============================================================
     HERO
  ============================================================ */
.hero-wrap {
  position: relative;
  max-width: 100%;
  margin:120px auto 0;
  padding: 0 16px;
}

.hero-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 480px;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-banner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.15) 0%, rgba(8, 8, 9, 0.35) 55%, rgba(8, 8, 9, 0.85) 100%);
}

.hero-top {
  position: absolute;
  top: 26px;
  left: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  animation: fadeDown .8s ease .1s both;
}

@keyframes fadeDown {
  from {
    
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  color: #fff;
  margin-bottom: 50px;
}
.breadcrumb-pill1 {
  position: absolute;
  top:100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  color: #fff;
}
.breadcrumb-pill a, .breadcrumb-pill1 a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-pill a:hover, .breadcrumb-pill1 a:hover {
  color: #fff;
}

.breadcrumb-pill .sep, .breadcrumb-pill1 .sep {
  color: var(--ar-red);
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.hero-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}

.hero-icon-btn:hover {
  transform: translateY(-3px);
}

.hero-icon-btn.active {
  background: var(--ar-red);
  border-color: var(--ar-red);
}

.hero-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 100px;
  z-index: 3;
  color: #fff;
}

.status-pill {
  display: inline-block;
  background: var(--ar-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  animation: fadeUp .8s ease .2s both;
}

.status-pill.ready {
  background: var(--ar-green);
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 10px;
  animation: fadeUp .8s ease .3s both;
}

.hero-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeUp .8s ease .4s both;
}

@keyframes fadeUp {
  from {
    
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fact-card {
  position: relative;
  z-index: 4;
  margin: 0 0 30px 0!important;
  background: #fff;
  border-radius: 20px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: fadeUp .8s ease .5s both;
}

.fact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fact-item .fi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ar-red-soft);
  color: var(--ar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fact-item .fi-lbl {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.fact-item .fi-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--ar-ink);
}

.fact-price {
  text-align: right;
}

.fact-price .fp-lbl {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 3px;
}
.fact-price .fp-lbl{
  text-align:left;
}

.fact-price .fp-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--ar-red);
  font-family: 'Poppins', sans-serif;
}

.fact-cta {
  display: flex;
  gap: 10px;
}

.btn-enquire {
  background: var(--ar-red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .3s ease, transform .25s ease, box-shadow .3s ease;
  white-space: nowrap;
}

.btn-enquire:hover {
  background: var(--ar-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(232, 39, 44, .3);
}

.btn-brochure {
  background: #333;
  color: #fff;
  border: 1.5px solid var(--ar-line);
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .3s ease, color .3s ease, transform .25s ease;
  white-space: nowrap;
}

.btn-brochure:hover {
  border-color: var(--ar-red);
  color: var(--ar-red);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .hero-banner {
    height: 420px;
  }

  .fact-card {
    flex-direction: column;
    align-items: stretch;
    margin: -50px 12px 0;
    padding: 22px;
  }

  .fact-price {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 360px;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-content {
    bottom: 84px;
    left: 18px;
    right: 18px;
  }

  .hero-top {
    left: 16px;
    right: 16px;
  }

  .fact-items {
    gap: 16px;
  }
}

/* ============================================================
     STICKY SUB-NAV
  ============================================================ */
.subnav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--ar-line);
  margin-top: 40px;
}

.subnav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  scrollbar-width: none;
}

.subnav::-webkit-scrollbar {
  display: none;
}

.subnav a {
  color: #777;
  font-size: 13.5px;
  font-weight: 600;
  padding: 18px 18px;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}

.subnav a:hover {
  color: var(--ar-ink);
}

.subnav a.active {
  color: var(--ar-red);
  border-color: var(--ar-red);
}

/* ============================================================
     SECTIONS COMMON
  ============================================================ */
.dp-section {
  padding:25px;
  scroll-margin-top: 66px;
}

.dp-section.alt {
  background: #fff;
}

.dp-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dp-heading span {
  color: var(--ar-red);
}

.dp-subtext {
  color: var(--ar-muted);
  font-size: 13.5px;
  max-width: 560px;
  margin-bottom: 34px;
}

.overview-desc div {
  color: var(--ar-muted);
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 16px;
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .08);
  border-color: transparent;
}

.highlight-card .hc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255, 57, 57);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.highlight-card:hover .hc-icon {
  background: var(--ar-red);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.highlight-card .hc-val {
  font-size: 17px;
  font-weight: 700;
}

.highlight-card .hc-lbl {
  font-size: 11.5px;
  color: #999;
  margin-top: 3px;
}

@media (max-width: 767px) {
  .highlight-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Gallery ---------- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-mosaic .g-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-mosaic .g-cell.g-big {
  grid-row: 1 / 3;
}

.gallery-mosaic .g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.gallery-mosaic .g-cell:hover img {
  transform: scale(1.08);
}

.g-cell .g-more {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  
  transition: opacity .3s ease;
}

.g-cell:hover .g-more {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-auto-rows: 150px;
  }

  .gallery-mosaic .g-cell.g-big {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 220px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 7, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from {
    
  }

  to {
    opacity: 1;
  }
}

.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background .3s ease, transform .3s ease;
}

.lightbox-close:hover {
  background: var(--ar-red);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background .3s ease;
}

.lightbox-nav:hover {
  background: var(--ar-red);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

/* ---------- Floor plans ---------- */
.fp-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.fp-tab {
  border: 1.5px solid var(--ar-line);
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.fp-tab:hover {
  border-color: var(--ar-red);
  color: var(--ar-red);
}

.fp-tab.active {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

.fp-panel {
  display: none;
}

.fp-panel.active {
  display: block;
  animation: fadeUp .5s ease both;
}

.fp-card {
  background: #333;
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.fp-image {
  flex: 1 1 320px;
  background: var(--ar-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 260px;
}

.fp-image svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.fp-info {
  flex: 1 1 280px;
  padding: 30px;
}

.fp-info h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ar-red);
}

.fp-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed var(--ar-line);
  font-size: 13.5px;
}

.fp-row span:first-child {
  color: #ccc;
}

.fp-row span:last-child {
  font-weight: 700;
  color: #fff;
}

.fp-price {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eee;
  border: 1px solid var(--ar-line);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .09);
  border-color: transparent;
}

.amenity-item .am-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease;
}

.amenity-item:hover .am-ic {
  background: var(--ar-red);
  color: #fff;
}

@media (max-width: 767px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Location ---------- */
.location-map {
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--ar-line);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(10%);
}

.nearby-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nearby-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #ccc;
  font-size: 13.5px;
}

.nearby-list li:last-child {
  border-bottom: none;
}

.nearby-list .nb-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eee;
  color:#333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.nearby-list .nb-name {
  font-weight: 600;
}

.nearby-list .nb-dist {
  margin-left: auto;
  color: var(--ar-red);
  font-size: 12.5px;
  font-weight: 600;
}

/* ---------- Similar projects ---------- */
.similar-card {
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .4s ease, box-shadow .4s ease;
}

.similar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, .1);
}

.similar-card .si-img {
  height: 170px;
  overflow: hidden;
}

.similar-card .si-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.similar-card:hover .si-img img {
  transform: scale(1.1);
}

.similar-card .si-body {
  padding: 16px;
}

.similar-card .si-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ar-red);
  margin-bottom: 3px;
}

.similar-card .si-loc {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.similar-card .si-price {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ar-line);
  padding-top: 10px;
}

.similar-card .si-price a {
  color: #999;
  font-size: 12px;
  font-weight: 600;
  transition: color .3s ease;
}

.similar-card:hover .si-price a {
  color: var(--ar-red);
}

/* ============================================================
     SIDEBAR
  ============================================================ */
.details-sidebar {
  position: sticky;
  top: 78px;
}
.sidebar .enq-modal {
    width: 100%;
    max-width: 100%;
    padding: 25px;
 }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  margin-top: 40px!important;
}

.sidebar-card h5 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.agent-row img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-row .a-name {
  font-weight: 700;
  font-size: 14.5px;
}

.agent-row .a-role {
  font-size: 12px;
  color: var(--ar-red);
  font-weight: 600;
}

.sidebar-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--ar-line);
  font-size: 13px;
  color: #444;
}

.sidebar-contact-row:first-of-type {
  border-top: none;
}

.sidebar-contact-row .ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ar-bg);
  color: var(--ar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.sidebar-field {
  margin-bottom: 14px;
}

.sidebar-field input,
.sidebar-field textarea {
  width: 100%;
  border: 1px solid var(--ar-line);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.sidebar-field input:focus,
.sidebar-field textarea:focus {
  border-color: var(--ar-red);
  box-shadow: 0 0 0 3px var(--ar-red-soft);
}

.sidebar-btn {
  width: 100%;
  background: var(--ar-red);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .3s ease, transform .25s ease, box-shadow .3s ease;
}

.sidebar-btn:hover {
  background: var(--ar-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 39, 44, .3);
}

.trust-badges {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.trust-badges div {
  flex: 1;
  text-align: center;
  font-size: 10.5px;
  color: #888;
  font-weight: 600;
}

.trust-badges .tb-ic {
  font-size: 20px;
  color: var(--ar-red);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .details-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--ar-line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
}

.mobile-cta-bar a,
.mobile-cta-bar button {
  flex: 1;
  text-align: center;
  border-radius: 9px;
  padding: 12px;
  font-weight: 700;
  font-size: 13px;
  border: none;
}

.mobile-cta-bar .call-btn {
  background: var(--ar-bg);
  color: var(--ar-ink);
  border: 1px solid var(--ar-line);
}

.mobile-cta-bar .enq-btn {
  background: var(--ar-red);
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-cta-bar {
    display: flex;
  }

}

/* ------------------- */

/* Common section header (your existing component) */
.ar-section-header {
  text-align: center;
  margin: 0 auto 46px;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.ar-section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.ar-accent {
  color: var(--ar-red);
}



/* ============================================================
     SIMPLE BLOG GRID
  ============================================================ */
.blog-section {
  padding: 80px 0 90px;
}

.blog-section a {
  text-decoration: none;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ar-line);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.1);
}

.blog-card .img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.blog-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-card:hover .img-wrap img {
  transform: scale(1.1);
}

.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ar-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

.blog-card .card-body {
  padding: 20px 20px 22px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  color: #999;
  margin-bottom: 12px;
}

.blog-meta span {
  text-decoration: none;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--ar-red);
}

.blog-excerpt {
  color: var(--ar-text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ar-red);
  font-size: 12.5px;
  font-weight: 700;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-readmore {
  gap: 10px;
}

/* stagger entrance */
.blog-col:nth-child(1) .blog-card {
  transition-delay: 0.03s;
}

.blog-col:nth-child(2) .blog-card {
  transition-delay: 0.09s;
}

.blog-col:nth-child(3) .blog-card {
  transition-delay: 0.15s;
}

.blog-col:nth-child(4) .blog-card {
  transition-delay: 0.21s;
}

.blog-col:nth-child(5) .blog-card {
  transition-delay: 0.27s;
}

.blog-col:nth-child(6) .blog-card {
  transition-delay: 0.33s;
}

@media (max-width: 576px) {
  .blog-section {
    padding: 55px 0 65px;
  }
}


/* --------------------------- */
/* ============================================================
     ARTICLE BODY (single column, no sidebar)
  ============================================================ */
.article-section {
  padding: 60px 0 90px;
}

.article-hero-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.article-hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.article-hero-img:hover img {
  transform: scale(1.04);
}

.article-body div.a-para {
  color: #3d3d3d;
  font-size: 14.5px;
  line-height: 1.95;
  margin-bottom: 20px;
}

.article-body h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 36px 0 16px;
  position: relative;
  padding-left: 16px;
}

.article-body h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--ar-red);
  border-radius: 4px;
}

.article-quote {
  border-left: 4px solid var(--ar-red);
  background: var(--ar-gray-bg);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15.5px;
  font-style: italic;
  color: #333;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-quote:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.article-list {
  margin: 0 0 22px;
  padding-left: 20px;
}

.article-list li {
  color: #3d3d3d;
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 8px;
}

/* ---------- Tags + share ---------- */
.article-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--ar-line);
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tags a {
  border: 1px solid var(--ar-line);
  color: #555;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tags a:hover {
  background: var(--ar-red);
  border-color: var(--ar-red);
  color: #fff;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-row div.share-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #555;
}

.share-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ar-gray-bg);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.share-icon:hover {
  background: var(--ar-red);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Author ---------- */
.author-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--ar-gray-bg);
  border-radius: 14px;
  padding: 24px;
  margin-top: 36px;
}

.author-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card div.a-name {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-card div.a-role {
  font-size: 12px;
  color: var(--ar-red);
  font-weight: 600;
  margin-bottom: 8px;
}

.author-card div.a-bio {
  font-size: 12.5px;
  color: var(--ar-text-muted);
  line-height: 1.7;
}

/* ---------- Prev / Next navigation ---------- */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.post-nav a {
  flex: 1;
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: #1a1a1a;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.post-nav a:hover {
  border-color: var(--ar-red);
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.post-nav div.pn-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.post-nav div.pn-title {
  font-size: 13.5px;
  font-weight: 700;
}

.post-nav a.pn-next {
  text-align: right;
}

@media (max-width: 576px) {
  .blog-banner {
    height: 260px;
  }

  .blog-banner-content h1 {
    font-size: 24px;
  }

  .article-hero-img img {
    height: 240px;
  }

  .article-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .post-nav {
    flex-direction: column;
  }

  .post-nav a.pn-next {
    text-align: left;
  }
}

/* ---------- eyebrow / heading kit ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 10px;
}

.heading span {
  color: var(--red);
}

.sub {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center .eyebrow::before {
  display: none;
}

.center .sub {
  margin-left: auto;
  margin-right: auto;
}

/* ================= HERO STRIP ================= */
.contact-intro {
  padding-top: 90px;
  padding-bottom: 60px;
  text-align: center;
}

/* ================= INFO CARDS ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 90px;
}

.info-card {
  background:#eee;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2, .8, .3, 1), box-shadow .45s ease, border-color .45s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 42, .08), transparent 70%);
  transition: transform .5s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 40px rgba(20, 20, 20, .09);
  border-color: transparent;
}

.info-card:hover::after {
  transform: scale(1.6);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .4s ease, transform .5s ease;
}

.info-card:hover .info-icon {
  background: var(--red);
  transform: rotate(-8deg) scale(1.06);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.info-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ================= FORM + MAP ================= */
.c-form-map-sec {
  background: var(--grey-bg);
}

.connect-wrap {
  padding: 50px 0 50px;
  position: relative;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 44px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 30px 60px rgba(20, 20, 20, .06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  position: relative;
  margin-bottom: 26px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .35s ease;
  background-color: #eee;
  border-radius:5px;
  padding:10px;
}

.field textarea {
  resize: none;
  height: 64px;
}

.field .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width .4s cubic-bezier(.2, .8, .3, 1);
}

.field input:focus~.underline,
.field select:focus~.underline,
.field textarea:focus~.underline {
  width: 100%;
}

.submit-btn {
  border: none;
  cursor: pointer;
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .4px;
  padding: 16px 40px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s ease, background .35s ease;
}
.submit-btn{
    position: relative;
    overflow: hidden;
}

.submit-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:skewX(-25deg);
    transition:left .7s ease;
}

.submit-btn:hover::before{
    left:160%;
}
.submit-btn:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  transition: transform .35s ease;
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

/* -------- side panel -------- */
.side-panel {
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.side-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 42, .35), transparent 70%);
  right: -90px;
  bottom: -90px;
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.side-panel h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.side-panel p {
  font-size: 13.5px;
  color: #c9c9cc;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.side-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.side-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #e9e9ec;
}

.side-list-item .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.map-frame {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, .08);
}

.map-frame iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
  filter: grayscale(.3) contrast(1.05);
}

/* ================= CTA BAND ================= */
.cta-band {
  max-width: 1240px;
  margin: 90px auto 100px;
  padding: 0 24px;
}

.cta-inner {
  background: linear-gradient(120deg, var(--ink) 0%, #232323 100%);
  border-radius: var(--radius-lg);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 42, .25), transparent 70%);
}

.cta-inner h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.cta-inner h3 span {
  color: var(--red);
}

.cta-call {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 34px;
  border-radius: 50px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s ease, background .35s ease;
}

.cta-call:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-3px);
}

/* ================= FLOATING ENQUIRE TAB (signature, matches hero banner) ================= */
.float-tab {
  position: fixed;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 10px;
  writing-mode: vertical-rl;
  border-radius: 10px 0 0 10px;
  z-index: 999;
  cursor: pointer;
  box-shadow: -6px 0 18px rgba(0, 0, 0, .18);
  animation: tabPulse 2.4s ease-in-out infinite;
}

@keyframes tabPulse {

  0%,
  100% {
    padding-right: 10px;
  }

  50% {
    padding-right: 16px;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:980px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 30px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}

@media(max-width:560px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px;
  }

  .contact-intro {
    padding-top: 60px;
  }

  .heading {
    font-size: 26px;
  }

  .side-panel {
    padding: 30px;
  }
}


.article-hero-img{
  margin-bottom: 30px;
}
.article-body{
  margin-top: 30px;
}

.card-body {
    position: relative;
}

/* .card-body::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: url("../images/verifide.png") no-repeat center;
    background-size: contain;
    z-index: 10;
} */

.verified img {
    width:60px;
    height:auto;
}
.verified{
  position: absolute;
  top: 10px;
  right: 10px;
}
.construction-banner {
    position: absolute;
    top: 14px;
    left:0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    line-height: 25px;
    padding: 0 18px 0 10px;
    background: #ff1d25;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 9999;
}

/* Arrow */
.construction-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 0;
    height: 0;
    border-top: 12.5px solid transparent;
    border-bottom: 12.5px solid transparent;
    border-left: 12px solid #ff1d25;
}

.oq-under-construction {
    position: absolute;
    top: 14px;
    left:0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    line-height: 25px;
    padding: 0 18px 0 10px;
    background: #333;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 9999;
}

.oq-under-construction::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 0;
    height: 0;
    border-top: 12.5px solid transparent;
    border-bottom: 12.5px solid transparent;
    border-left: 12px solid #333;
}


.dream-home-section .ar-section-subtitle{
  color: #fff;
}
.fp-panel {
  margin-top: 25px;
}
.dp-heading.ar-reveal.d1.ar-in-view{
  margin-top: 7px;
}
.dp-subtext.ar-reveal.d1.ar-in-view{
  margin: 0;
  margin-top: 7px;
}
.amenities-grid {
  margin-top: 21px;
}
#location .row{
  margin-top:20px;
}

#similar .col-md-4{
  margin-top: 40px;  
}


/* popup-css */

 /* All selectors are namespaced with "enq7x9-" to avoid clashing with any existing site CSS/JS */
 
  .enq7x9-root {
    --enq7x9-red-1: #E8171B;
    --enq7x9-red-2: #B3070B;
    --enq7x9-ink: #1b1b1b;
    --enq7x9-muted: #6b6b6b;
    --enq7x9-line: #e7e2df;
    --enq7x9-bg: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
 
  .enq7x9-root * {
    box-sizing: border-box;
  }
 
  /* ---------- Fixed side button ---------- */
  .enq7x9-tab {
    position: fixed;
    top: 61%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
 
    writing-mode: sideways-lr;
    transform-origin: center;
 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
 
    padding: 22px 10px;
    border: none;
    border-radius: 10px 0 0 10px;
 
    background: linear-gradient(180deg, var(--enq7x9-red-1), var(--enq7x9-red-2));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: inherit;
 
    cursor: pointer;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.22);
    transition: padding-right 0.2s ease, box-shadow 0.2s ease;
  }
 
  .enq7x9-tab:hover {
    padding-right: 16px;
    box-shadow: -4px 4px 14px rgba(0,0,0,0.3);
  }
 
  .enq7x9-tab:focus-visible {
    outline: 3px solid #7fb3ff;
    outline-offset: 2px;
  }
 
  /* ---------- Popup overlay ---------- */
  .enq7x9-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 14, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
  }
 
  .enq7x9-overlay.enq7x9-open {
    display: flex;
  }
 
 .enq-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.enq-modal{
    width:420px;
    max-width:92%;
    background:#111;
    color:#fff;
    padding:35px;
    border-radius:18px;
    position:relative;
    border:1px solid #333;
    box-shadow:0 30px 70px rgba(0,0,0,.55);
    border-top:6px solid #d42020;
}


.enq-modal h2{
    margin:0 0 8px;
    font-size:28px;
}

.enq-modal p{
    color:#bdbdbd;
    margin-bottom:25px;
}

.enq-modal .field{
    margin-bottom:8px;
}

.enq-modal .field label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    color:#fff;
}

.enq-modal .field input,
.enq-modal .field textarea{
    width:100%;
    padding:8px 15px;
    background:#1d1d1d;
    color:#fff;
    border:1px solid #333;
    border-radius:10px;
    box-sizing:border-box;
}

.enq-modal .field input:focus,
.enq-modal .field textarea:focus{
    outline:none;
    border-color:#d42020;
}

.enq-modal .field textarea{
    min-height:80px;
    resize:none;
}

.enq-modal .submit-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#d42020,#ff4a2d);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

.enq-modal .submit-btn:hover{
    opacity:.9;
}

.enq-modal .enq-close{
    position:absolute;
    top:15px;
    right:15px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.enq-modal .enq-close:hover{
    background:#d42020;
    transform:rotate(90deg);
}
.details-enquary .sidebar-card h5 {
  color: #fff;
}


  .journey-section{
    padding:80px 0;
    overflow:hidden;
  }

  /* ---------- Left: step list ---------- */
  .steps-col{
    position:relative;
    padding-left:48px;
  }

  .steps-col::before{
    content:"";
    position:absolute;
    left:11px;
    top:14px;
    bottom:14px;
    width:2px;
    background:var(--line);
    z-index:0;
  }

  .steps-progress{
    position:absolute;
    left:11px;
    top:14px;
    width:2px;
    background:var(--red);
    z-index:1;
    transition:height .35s ease;
    height:0%;
  }

  .step{
    position:relative;
    padding:0 0 56px 0;
    cursor:pointer;
  }
  .step:last-child{ padding-bottom:8px; }

  .step .marker{
    position:absolute;
    left:-48px;
    top:2px;
    width:24px;
    height:24px;
    border-radius:50%;
    border:2px solid var(--line);
    background:var(--bg);
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:border-color .3s ease, background .3s ease, box-shadow .3s ease;
  }
  .step .marker::after{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--line);
    transition:background .3s ease;
  }

  .step.active .marker{
    border-color:var(--red);
    box-shadow:0 0 0 4px rgba(230,51,42,.15);
  }
  .step.active .marker::after{ background:var(--red); }

  .step h3{
    font-size:1.1rem;
    font-weight:700;
    margin:0;
    color:var(--text-dim);
    transition:color .3s ease;
    letter-spacing:.2px;
    color:#fff;
  }
  .step.active h3{ color:var(--red); }

  .step .desc{
    color:var(--text-dim);
    font-size:.98rem;
    line-height:1.55;
    max-width:460px;
    max-height:0;
    opacity:0;
    overflow:hidden;
    margin-top:0;
    transition:max-height .45s ease, opacity .4s ease, margin-top .45s ease;
  }
  .step.active .desc{
    max-height:120px;
    opacity:1;
    margin-top:10px;
  }

  /* ---------- Right: sticky image ---------- */
  .image-col{
    position:relative;
  }
  .sticky-wrap{
    position:sticky;
    top:80px;
    height:520px;
    border-radius:16px;
    overflow:hidden;
    background:#111;
  }
  .sticky-wrap img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.04);
    transition:opacity .6s ease, transform .8s ease;
  }
  .sticky-wrap img.active{
    opacity:1;
    transform:scale(1);
  }

  @media (max-width: 991.98px){
    .sticky-wrap{
      position:relative;
      top:0;
      height:340px;
      margin-top:32px;
    }
  }


  /* Floating Contact Buttons */

.floating-contact{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.float-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.35s ease;
    animation:floatPulse 2s infinite;
}

.call-btn{
    background:#e31b23;
}

.whatsapp-btn{
    background:#25D366;
}

.float-btn:hover{
    transform:translateY(-5px) scale(1.08);
    color:#fff;
}

@keyframes floatPulse{
    0%{
        box-shadow:0 0 0 0 rgba(0,0,0,.35);
    }
    70%{
        box-shadow:0 0 0 15px rgba(0,0,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,0,0,0);
    }
}

/* Mobile */

@media(max-width:576px){

    .floating-contact{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:52px;
        height:52px;
    }

}

/*=========================================
      LUXURY BLACK ENQUIRY SIDEBAR
=========================================*/


.details-enquary .sidebar-card{
    position:relative;
    overflow:hidden;

    background:linear-gradient(145deg,#181818,#0c0c0c);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;

    padding:35px 30px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);
        margin-top: 0!important;
}

/* Gold Top Accent */

.details-enquary .sidebar-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#ff3939,#cf1515);
}

/* Decorative Glow */

.details-enquary .sidebar-card::after{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,215,120,.05);
    filter:blur(30px);
}

/* Heading */

.details-enquary .sidebar-card h5{
    color:#fff;
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
    position:relative;
    z-index:2;
}

.details-enquary .sidebar-card h5::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    margin-top:12px;
    background:linear-gradient(90deg,#ff3939,#cf1515);
    border-radius:20px;
}

/* Form Fields */

.details-enquary .sidebar-field{
    margin-top:18px;
    position:relative;
    z-index:2;
}

.details-enquary .sidebar-field input,
.details-enquary .sidebar-field textarea{
    width:100%;
    border:1px solid #333;
    border-radius:12px;

    background:#1d1d1d;
    color:#fff;

    padding:8px 18px;

    font-size:15px;
    font-family:inherit;

    transition:.35s;
}

.details-enquary .sidebar-field textarea{
    min-height:80px;
    resize:none;
}

.details-enquary .sidebar-field input::placeholder,
.details-enquary .sidebar-field textarea::placeholder{
    color:#888;
}

.details-enquary .sidebar-field input:focus,
.details-enquary .sidebar-field textarea:focus{
    outline:none;

    border-color:#ff3939;
    background:#222;

    box-shadow:
        0 0 0 3px rgba(200,155,60,.15),
        0 10px 25px rgba(0,0,0,.25);
}

/* Button */

.details-enquary .sidebar-btn{
    width:100%;
    height:56px;

    margin-top:5px;

    border:none;
    border-radius:12px;

    background:linear-gradient(135deg,#e2231a,#b90f15);

    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 30px rgba(226,35,26,.28);

    position:relative;
    z-index:2;
}

.details-enquary .sidebar-btn:hover{
    transform:translateY(-4px);

    background:linear-gradient(135deg,#ff3939,#cf1515);

    box-shadow:0 20px 40px rgba(226,35,26,.45);
}

.details-enquary .sidebar-btn:active{
    transform:translateY(0);
}

/* Responsive */

@media(max-width:768px){

    .details-enquary .sidebar-card{
        padding:28px 22px;
    }

    .details-enquary .sidebar-card h5{
        font-size:22px;
    }

}
.dp-section {background-color: #eee; padding: 30px; border-radius: 20px; margin-bottom: 30px;}


  .sticky-quote-col{
    position:sticky;
    top:100px;          /* Header height অনুযায়ী পরিবর্তন করুন */
    align-self:flex-start;
    z-index:10;
}

@media(max-width:991px){
    .sticky-quote-col{
        position:static;
        top:auto;
    }
}

.col-lg-4{
    align-self:flex-start;
}

.details-sidebar{
    position:sticky;
    position:-webkit-sticky;
    top:110px;
}

#developer-footer {background:#333; border-top:6px solid var(--ar-red); border-radius: 30px; padding: 30px; color:#fff;}
#developer-footer span {color: #ff3939;}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
    margin-top: 20px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #000;
}

/* Individual Colors */
.social-icons .facebook {
    background: #1877F2;
}

.social-icons .instagram {
    background: linear-gradient(45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888);
}

.social-icons .twitter {
    background: #000;
}

.social-icons .linkedin{
    background: #0A66C2;
}

.social-icons .youtube{
    background: #FF0000;
}
.sidebar-card.ar-reveal {background-color: #eee; border:4px sild #FF0000}


#areaName {
    display: inline-block;
    border-right: 3px solid #fff;
    white-space: nowrap;
    /* overflow: hidden; */
    animation: blinkCursor .8s infinite;
    color: #df1020;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
  }

  /* -------------------- */

  .nav-right-social i{
    background-color: #fff;
    margin: 0 5px;
    width: 32px;
    font-size: 16px;
    height: 32px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50px;
  }
  .nav-right-social{
    margin-right: 5px;
    display: flex;
  }
  .f-left .social-icons{
    margin-left: 0;
  }
  .nav-right-social a:hover i{
    color:#d31a1f;
  }
  .property-card,
.slick-slide{
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}












.page{padding:100px 40px 40px!important; background-color: #eee;}

  

  /* ---------- LISTING HEADER (title bar) ---------- */
  .listing-header{
    display:flex;justify-content:space-between;align-items:flex-start;
    gap:24px;flex-wrap:wrap;
    padding-bottom:24px;margin-bottom:8px;
  }
  .listing-header .left{flex:1;min-width:280px;}
  .listing-badges{display:flex;gap:8px;margin-bottom:14px;}
  .listing-badges span{
    background:#e31b23;color:#fff;font-size:12px;font-weight:600;
    padding:6px 14px;border-radius:4px;font-family:'Inter',sans-serif;
    letter-spacing:.02em;
  }
  .listing-header h1{
    font-family:'Inter',sans-serif;font-weight:700;font-size:34px;
    color:var(--ink);letter-spacing:-.01em;margin-bottom:12px;
  }
  .listing-loc{
    display:flex;align-items:center;gap:8px;color:var(--slate);font-size:14px;
  }
  .listing-loc svg{width:15px;height:15px;stroke:var(--slate);flex-shrink:0;}
  .listing-loc b{color:var(--ink);font-weight:600;}
  .listing-header .right{
    display:flex;flex-direction:column;align-items:flex-end;gap:14px;
  }
  .listing-price{font-family:'Inter',sans-serif;}
  .listing-price .amt{font-size:30px;font-weight:700;color:#e31b23;}
  .listing-price .per{font-size:14px;color:var(--slate);font-weight:500;}
  @media (max-width:640px){
    .listing-header{flex-direction:column;}
    .listing-header .right{align-items:flex-start;width:100%;}
    .listing-header h1{font-size:26px;}
  }

  /* ---------- Two-column sticky layout ---------- */
  .layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
    align-items:start;
  }
  .sidebar{
    position:sticky;
    top:100px;
  }
  @media (max-width:900px){
    .layout{grid-template-columns:1fr;}
    .sidebar{position:static;}
  }

.hero{
    overflow:hidden;
    position:relative;
}

.hero-track{
    display:flex;
    width:100%;
    transition:transform .6s ease;
}

.hero-slide{
    min-width:100%;
    flex:0 0 100%;
}

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

  /* ---------- HERO SLIDER ---------- */
  .page .hero-wrap{position:relative; margin: 0 0 40px 0; padding: 0;}
  .page .hero{
    position:relative;height:520px;overflow:hidden;
    background:var(--ink);
  }
  .page .hero-track{display:flex;height:100%;transition:transform .6s cubic-bezier(.65,0,.35,1);}
  .page .hero-slide{min-width:100%;height:100%;position:relative;}
  .page .hero-slide img{width:100%;height:100%;object-fit:cover;filter:saturate(.96);}
  .page .hero-slide::after{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(27,36,48,.05) 0%,rgba(27,36,48,.55) 100%);
  }

  .page .hero-caption{
    position:absolute;left:28px;bottom:26px;color:#fff;z-index:2; display: flex; gap:20px;
  }
  .page .hero-caption img {border-radius: 50%; width: 100px; height: 100px;}
  .page .hero-caption .tag{
    font-size:11px;letter-spacing:.14em;
    text-transform:uppercase;color:var(--brass-light);margin-bottom:8px;display:block;
  }
  .page .hero-caption h1{color:#fff;font-size:38px;font-weight:450;}
  .page .hero-caption .loc{font-size:14px;color:#E7E2D6;margin-top:6px;}

  .page .hero-nav{
    position:absolute;top:50%;transform:translateY(-50%);
    width:38px;height:38px;border-radius:50%;
    background:rgba(243,241,236,.9);border:none;
    display:flex;align-items:center;justify-content:center;
    z-index:4;transition:background .2s;
  }
  .page .hero-nav:hover{background:#fff;}
  .page .hero-nav.prev{left:20px;} .hero-nav.next{right:20px;}
  .page .hero-nav svg{width:16px;height:16px;stroke:var(--ink);}

  .page .hero-dots{
    position:absolute;bottom:26px;right:28px;display:flex;gap:8px;z-index:4;
  }
  .page .hero-dots button{
    width:7px;height:7px;border-radius:50%;border:1px solid #fff;background:transparent;
    padding:0;
  }
  .page .hero-dots button.active{background:#e31b23;border-color:#e31b23;}

  .page .hero-counter{
    position:absolute;top:24px;left:28px;z-index:4;color:#fff;
    font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:.08em;
    background:rgba(27,36,48,.45);padding:5px 10px;border:1px solid rgba(255,255,255,.35);
  }


  /* Floating price / inquiry card */
  .price-card{
    background:var(--card);
    width:100%;
    padding:26px 26px 24px;
    box-shadow:0 18px 40px rgba(27,36,48,.14);
    border-top:3px solid #e31b23;
    position:relative;
    z-index:5;
  }
  .price-card .price{
    font-family:'Fraunces',serif;font-size:30px;color:var(--ink);
  }
  .price-card .price span{font-size:12px;color:var(--slate);display:block;letter-spacing:.1em;text-transform:uppercase;margin-bottom:4px;}
  .price-card form{margin-top:18px;display:flex;flex-direction:column;gap:10px;}
  .price-card input,.price-card textarea{
    border:1px solid var(--line);background:var(--stone);
    padding:10px 12px;font-size:13px;color:var(--ink);
  }
  .price-card textarea{resize:none;height:64px;}
  .price-card input::placeholder,.price-card textarea::placeholder{color:#94978f;}
  .price-card button.cta{
    background:var(--ink);color:#fff;border:none;padding:12px;
    font-size:12px;letter-spacing:.1em;text-transform:uppercase;
    margin-top:4px;transition:background .2s;
  }
  .price-card button.cta:hover{background:var(--ar-red);}

  @media (max-width:820px){
    .hero{height:400px;}
  }

  /* ---------- HERO THUMBNAILS ---------- */

  .hero-thumbs{
    display:flex;gap:10px;margin-top:10px;
  }
  .hero-thumbs button{
    flex:1;height:76px;padding:0;border:2px solid transparent;
    background:none;overflow:hidden;opacity:.55;transition:opacity .2s,border-color .2s;
  }
  .hero-thumbs button.active{opacity:1;border-color:var(--brass);}
  .hero-thumbs button:hover{opacity:.9;}
  .hero-thumbs img{width:100%;height:100%;object-fit:cover;}
  @media (max-width:560px){
    .hero-thumbs{flex-wrap:wrap;}
    .hero-thumbs button{flex:1 1 30%;height:56px;}
  }



  /* ---------- EXTERIOR + VIDEO ---------- */

  .video-box{
    position:relative;height:360px;overflow:hidden;background:var(--ink);
  }
  .video-box img{width:100%;height:100%;object-fit:cover;opacity:.55;}
  .play-btn{
    position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
    width:64px;height:64px;border-radius:50%;background:rgba(243,241,236,.92);
    display:flex;align-items:center;justify-content:center;border:none;
  }
  .play-btn svg{width:20px;height:20px;fill:var(--ink);margin-left:3px;}
  .video-label{position:absolute;bottom:16px;left:16px;color:#fff;monospace;font-size:12px;letter-spacing:.08em;text-transform:uppercase;}
  @media (max-width:760px){.exterior-media{grid-template-columns:1fr;} .exterior-media .photo,.video-box{height:260px;}}

  /* ---------- LOCATION ---------- */
  .location-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:28px;}
  .map-box{
    height:300px;position:relative;overflow:hidden;
    background-color:#EDE7D8;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size:28px 28px;
  }
  .map-pin{
    position:absolute;top:46%;left:52%;transform:translate(-50%,-100%);
    display:flex;flex-direction:column;align-items:center;
  }
  .map-pin svg{width:30px;height:30px;fill:var(--brass);filter:drop-shadow(0 3px 4px rgba(0,0,0,.25));}
  .map-pin .ripple{width:26px;height:8px;border-radius:50%;background:rgba(169,131,43,.28);margin-top:-4px;}
  .address-block p{color:var(--slate);font-size:14px;margin-bottom:18px;}
  .nearby{list-style:none;}
  .nearby li{
    display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--line);font-size:13px;
  }
  .nearby li span:last-child{color:var(--brass);}
  @media (max-width:760px){.location-grid{grid-template-columns:1fr;}}

  /* ---------- FLOOR PLANS ---------- */
  .plan-tabs{display:flex;gap:6px;margin-bottom:22px;}
  .plan-tabs button{
    background:#eee;border:none;padding:9px 18px;font-size:12px;
    letter-spacing:.06em;text-transform:uppercase;color:var(--slate); border-radius: 10px;
  }
  .plan-tabs button.active{background:var(--ar-red);color:#fff;border-color:var(--ar-red);}
  .plan-panel{display:none;background:var(--card);padding:26px; text-align: center;}
  .plan-panel.active{display:block;}
  .plan-panel img{width:80%;height:auto; margin: auto;}
  .plan-meta{display:flex;gap:26px;margin-top:18px;flex-wrap:wrap;}
  .plan-meta div{font-size:12px;color:var(--slate);}
  .plan-meta div b{display:block;color:var(--ink);font-size:16px; font-weight:700;}



  /* ---------- GALLERY ---------- */
  .gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
  .gallery-grid a{height:170px;overflow:hidden;display:block;position:relative;}
  .gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
  .gallery-grid a:hover img{transform:scale(1.06);}
  @media (max-width:640px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}

  /* ---------- SIMILAR LISTINGS SLIDER ---------- */
  .similar-slider{position:relative;}
  .similar-track{
    display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;
    scroll-behavior:smooth;-webkit-overflow-scrolling:touch;
    scrollbar-width:none;padding-bottom:4px;
  }
  .similar-track::-webkit-scrollbar{display:none;}
  .sim-card{
    background:var(--card);scroll-snap-align:start;flex:0 0 calc((100% - 44px)/3);
  }
  .sim-card .img{height:180px;overflow:hidden;}
  .sim-card .img img{width:100%;height:100%;object-fit:cover;}
  .sim-card .body{padding:16px 18px 20px;}
  .sim-card .tag{font-size:11px;color:var(--brass);letter-spacing:.08em;text-transform:uppercase;}
  .sim-card h4{font-size:17px;margin:6px 0 4px;font-weight:450;}
  .sim-card .addr{font-size:12px;color:var(--slate);margin-bottom:10px;}
  .sim-card .meta{display:flex;gap:14px;font-size:11px;color:var(--slate);border-top:1px solid var(--line);padding-top:10px;}

  .similar-nav{display:flex;gap:8px;}
  .similar-nav button{
    width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;
    display:flex;align-items:center;justify-content:center;transition:border-color .2s,background .2s;
  }
  .similar-nav button:hover{border-color:var(--brass);background:var(--stone);}
  .similar-nav svg{width:16px;height:16px;stroke:var(--ink);fill:none;}
  .similar-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:18px;}
  .similar-head h2{margin-bottom:0;}

  @media (max-width:820px){.sim-card{flex:0 0 calc((100% - 22px)/2);}}
  @media (max-width:560px){.sim-card{flex:0 0 88%;}}

  /* ---------- LIGHTBOX ---------- */
  .lightbox{
    position:fixed;inset:0;background:rgba(27,36,48,.92);display:none;
    align-items:center;justify-content:center;z-index:50;padding:30px;
  }
  .lightbox.open{display:flex;}
  .lightbox img{max-width:90vw;max-height:85vh;object-fit:contain;}
  .lightbox-close{
    position:absolute;top:24px;right:28px;width:38px;height:38px;border-radius:50%;
    background:rgba(255,255,255,.15);border:none;display:flex;align-items:center;justify-content:center;
  }
  .lightbox-close svg{width:16px;height:16px;stroke:#fff;}

  /* ---------- VIDEO MODAL ---------- */
  .video-modal{
    position:fixed;inset:0;background:rgba(27,36,48,.92);display:none;
    align-items:center;justify-content:center;z-index:60;padding:30px;
  }
  .video-modal.open{display:flex;}
  .video-modal-inner{
    width:100%;max-width:900px;
    background:#000;
    position:relative;
    box-shadow:0 30px 60px rgba(0,0,0,.5);
  }
  .video-modal-inner video{width:100%;display:block;max-height:80vh;}
  .video-modal-close{
    position:absolute;top:-46px;right:0;width:38px;height:38px;border-radius:50%;
    background:rgba(255,255,255,.15);border:none;display:flex;align-items:center;justify-content:center;
  }
  .video-modal-close svg{width:16px;height:16px;stroke:#fff;}


.bg1{background:#f8f9fa;}
.bg2{background:#edf6ff;}
.bg3{background:#fff7ef;}
.bg4{background:#eefbf3;}




.banner {
    text-align: center;
    color: #fff;
  }

  .banner h1 {
    font-size: 2.2rem;
    font-weight: 400;
  }

  .banner .prefix {
    color: #cfd2ff;
  }

  .banner .typed-text {
    color: #ffca3a;
    font-weight: 700;
  }

  .cursor {
    display: inline-block;
    width: 3px;
    margin-left: 4px;
    animation: blink 0.8s infinite;
  }

  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  .plan-meta div b{
    font-size: 24px !important;
  }
  .sui-search{
    display: none;
  }
  /* Mobile */
@media (max-width: 600px) {

    .floating-contact {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .float-btn {
        width: 50%;
        height: 50px;
        border-radius: 0;
        font-size: 18px;
    }

    .call-btn {
        background: #ef3a2f;
    }

    .whatsapp-btn {
        background: #25D366;
    }
    #similar{
      margin-top: 30px;
    }
     .sui-search {
    position: relative;
    width:100%;
    box-sizing: border-box;
    display: block;
  }
 
  .sui-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 44px 13px 42px;
    font-size: 15px;
    color: #e8eaf0;
    background: #171a21;
    border: 1px solid #2a2f3a;
    border-radius: 12px;
    outline: none;
    /* transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; */
  }
 
  .sui-search-input::placeholder {
    color: #6b7280;
  }
 
  .sui-search-input:hover {
    border-color: #3a4152;
  }
 
  .sui-search-input:focus {
    border-color: #7c9cff;
    box-shadow: 0 0 0 4px rgba(124, 156, 255, 0.25);
    background: #1b1f28;
  }
 
  .sui-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: #6b7280;
    fill: none;
    stroke-width: 2;
    pointer-events: none;
    transition: stroke 0.2s ease;
  }
 
  .sui-search-input:focus ~ .sui-search-icon {
    stroke: #7c9cff;
  }
 
  .sui-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: #2a2f3a;
    color: #6b7280;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
  }
 
  .sui-search-clear:hover {
    background: #3a4152;
    color: #e8eaf0;
  }
 
  .sui-search-input:not(:placeholder-shown) ~ .sui-search-clear {
    display: flex;
  }
 
  .sui-search-kbd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #6b7280;
    border: 1px solid #2a2f3a;
    border-radius: 5px;
    padding: 2px 6px;
    font-family: inherit;
    pointer-events: none;
  }
 
  .sui-search-input:not(:placeholder-shown) ~ .sui-search-kbd,
  .sui-search-input:focus ~ .sui-search-kbd {
    display: none;
  }
  .ar-search-field{
    display: none;
  }
  .ar-search-wrap select{
    display: none;
  }
  .ar-search-select{
    display: none;
  }
  .ar-search-btn{
    display: none;
  }
  .ar-search-bar{
    background:unset;
    box-shadow: unset;
  }
  .ar-heading{
        margin-top: 190px !important;
        height: 100px;
  }
  .ar-search-bar{
    width: 95%;
  }
  .ar-header{
    padding: 10px 10px;
  }
  .ar-stats {
        margin-top: 42px !important;
    }
}


/* popup-css */

.zk-zero-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.zk-zero-popup-box{
    width:90%;
    max-width:550px;
    background:#ffffff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    animation:zkPopupZoom .4s ease;
}

@keyframes zkPopupZoom{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

.zk-zero-popup-close{
    position:absolute;
    top:12px;
    right:15px;
    width:35px;
    height:35px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
    color: #fff;
}

.zk-zero-popup-title{
    font-size:36px;
    color:#e53935;
    margin-bottom:10px;
    font-weight:700;
}

.zk-zero-popup-text{
    font-size:18px;
    color:#555;
    line-height:1.6;
    margin-bottom:25px;
}

.zk-zero-popup-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.zk-zero-popup-btn:hover{
    background:#1fa851;
}
.zk-zero-popup-box img{
  width: 100%;
}
.zk-zero-popup-box {
  padding: 0;
}

.zk-zero-popup-overlay img{
  border-radius: 15px;
}

.sui-search-kbd{
     background-color: #e31221;
    color: #fff;
    font-size: 15px;
    padding: 6px;
    border-radius: 10px;
}








