:root {
  --cyan: rgba(42, 179, 197, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Geist", sans-serif;
  overflow-x: hidden;
}

/* ════════════════════════════
       NAV BAR
    ════════════════════════════ */
.nav-bar .brand img {
  height: 49px;
}
.dlf-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 84%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  padding: 0px 5px;
  border-radius: 45px;
  top: 20px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  position: relative;
}

/* — Brand — */
.brand {
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.brand .t1 {
  font-family: "Geist", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
}
.brand .t1 em {
  color: var(--cyan);
  font-style: normal;
  font-size: 0.88rem;
}
.brand .t2 {
  display: block;
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* — Hamburger (mobile only) — */
.ham {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 7px 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
  z-index: 10;
}
.ham:hover {
  border-color: var(--cyan);
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s;
}
.ham:hover span {
  background: var(--cyan);
}

/* — Nav menu — */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: end;
  padding-left: 20px;
  gap:14%;
  padding-right: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

/* nav-link */
.nav-links .nl {
  color: #ddd;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  letter-spacing: 0px;
}
.nav-links .nl:hover,
.nav-links .nl.open {
  color: var(--cyan);
}
.nav-links .nl .chev {
  font-size: 16px;
  transition: transform 0.22s;
}
.nav-links .nl.open .chev {
  transform: rotate(180deg);
}

/* — Dropdown — */
.dd-wrap {
  position: relative;
}

.dd-panel {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 230px;
  background: rgba(8, 10, 18, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  padding: 8px 0;
  z-index: 2000;
  list-style: none;
  animation: ddFade 0.18s ease;
}
.dd-panel.show {
  display: block;
}
@keyframes ddFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-panel .lbl {
  display: block;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px 3px;
}
.dd-panel .di {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  color: #bbb;
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.dd-panel .di:hover {
  background: rgba(0, 180, 216, 0.1);
  color: var(--cyan);
}
.dd-panel .di i {
  font-size: 0.72rem;
  color: var(--cyan);
  opacity: 0.65;
}
.dd-panel hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 4px 0;
}

/* — Right side — */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ph {
  color: #bbb;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.ph i {
}
.ph:hover {
  color: var(--cyan);
}
.btn-enq {
  background: rgb(38 38 38);
  color: #fff !important;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.07em;
  /* text-transform: uppercase; */
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
  border-radius: 21px;
  letter-spacing: 0px;
}
.btn-enq:hover {
  background: #009bbf;
  transform: translateY(-1px);
}

/* ════════════════════════════
       MOBILE  ≤ 991px
    ════════════════════════════ */
@media (max-width: 991.98px) {
  .ham {
    display: flex;
  }

  /* Slide-in panel from right */
  .nav-menu {
    /* fixed overlay, slides from right */
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 280px;
    background: #0a0c14;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    z-index: 1050;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav-menu.open {
    right: 0;
    z-index: 1111111;
    height: 100vh;
  }

  /* Dim overlay behind panel */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
  }
  .nav-overlay.show {
    display: block;
    z-index: -1;
  }

  /* Mobile menu header */
  .mob-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }
  .mob-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 1.3rem;
    line-height: 1;
    transition: color 0.2s;
    padding: 4px;
  }
  .mob-close:hover {
    color: #fff;
  }

  /* Links go vertical */
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-links .nl {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: space-between;
  }

  /* Dropdown becomes inline accordion */
  .dd-panel {
    position: static;
    min-width: unset;
    width: 100%;
    background: rgba(0, 0, 0, 0.28);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: none;
  }
  .dd-panel .di {
    padding-left: 34px;
  }
  .dd-panel .lbl {
    padding-left: 34px;
  }
  .dd-panel hr {
    margin: 2px 0;
  }

  /* Right side stacks at bottom of menu */
  .nav-right {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
  }
  .btn-enq {
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    border-radius: 4px;
  }
  .ph {
    justify-content: center;
  }
}

/* desktop: hide mobile-only elements */
@media (min-width: 992px) {
  .mob-head {
    display: none !important;
  }
  .nav-overlay {
    display: none !important;
  }
}

/* ════════════════════════════
       HERO
    ════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  /* min-height: auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 206px 0px;
  padding-top: 219px;
  padding-bottom: 218px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgb(0 0 0 / 66%) 0%,
      rgb(0 0 0 / 50%) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url(../img/banner.png) center / cover no-repeat;
  transform: scale(1.04);
  animation: zoomBg 14s ease-in-out infinite alternate;
}
@keyframes zoomBg {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  /* margin-bottom: 110px; */
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  font-family: "Geist", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 70px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  width: 72%;
  margin: auto;
  letter-spacing: -2px;
}
.hero-content h1 span {
  color: rgba(42, 179, 197, 1);
  font-weight: 700;
}
h2 span,
h1 span {
  color: rgba(42, 179, 197, 1);
}
#panel-featured{
  .owl-custom-prev i , .owl-custom-next i{
    color: rgba(52, 194, 212, 1)!important;
  }
}
#panel-new-launches{
.owl-custom-prev i , .owl-custom-next i{
   color: rgba(52, 194, 212, 1)!important;
}
}
#panel-ready{
.owl-custom-prev i , .owl-custom-next i{
   color: rgba(52, 194, 212, 1)!important;
}
}
#panel-coming{
.owl-custom-prev i , .owl-custom-next i{
   color: rgba(52, 194, 212, 1)!important;
}
}

.hdiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 18px auto 22px;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
  width: 68%;
  margin: 24px auto;
  line-height: 27px;
  font-weight: 300;
  letter-spacing: 0px;
}

.btn-hero {
  background: rgba(18, 18, 18, 1);
  color: rgba(208, 242, 243, 1);
  /* border: 2px solid rgba(255, 255, 255, 0.75); */
  border-radius: 30px;
  padding: 12px 38px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  /* text-transform: uppercase; */
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.2s;
  border: 0.48px solid rgba(208, 242, 243, 1);
  width: 145px;
  height: 41px;
  padding: 0px;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  letter-spacing: 0px;
}
.btn-hero:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}
.scroll-dot {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-dot span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: sc 1.6s ease-in-out infinite;
}
@keyframes sc {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
  padding: 14px 0;
  z-index: 5;
}
.stat {
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.stat:last-child {
  border-right: none;
}
.stat h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 2px;
}
.stat p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 576px) {
  .stat {
    border-right: none;
  }
  .stat h4 {
    font-size: 1.1rem;
  }
}

.about-section {
  padding: 72px 0 64px;
}

/* Heading */
.about-heading {
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  color: #1a1a1a;
  letter-spacing: 0px;
}

.about-heading span {
  color: rgba(42, 179, 197, 1);
  font-weight: 700;
}

/* Body text */
.about-body {
  font-size: 18px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.72);
  max-width: 100%;
  letter-spacing: 0px;
}
.dlf-upd-card-title a {
  text-decoration: none;
  color: white;
}

/* Image wrapper */
.about-img-wrap {
  margin-top: 70px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-height: 420px;
}

.about-img-wrap img {
  width: 100%;
  height: 412px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ─── Section ─── */
.launches-section {
  padding: 72px 0 80px;
  overflow: hidden;
  background: #141414;
  color: white;

  /* ─── LEFT COLUMN ─── */
  .left-col {
    padding-right: 24px;
  }

  .section-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 40px;
    padding-right: 20px;
    letter-spacing: 0px;
  }

  .section-heading span {
    color: rgba(42, 179, 197, 1);
    font-weight: 700;
  }

  /* Tab list */
  .tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tab-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    /* border-bottom: 0.48px solid rgba(255, 255, 255, 0.7); */
  }

  .tab-list li:first-child {
    border-top:none!important;
  }

  .tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 20px;
    background: transparent;
    border: none;
    color: rgba(208, 242, 243, 1);
    /* font-family: "DM Sans", sans-serif; */
    font-size: 17.5px;
    font-weight: 400;
    cursor: pointer;
    transition:
      background 0.2s,
      color 0.2s;
    text-align: left;
    border-radius: 6px;
    line-height: 20.82px;
    margin-top: 25px;
  }

  .tab-btn .arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
  }

  .tab-btn.active {
    background: rgba(42, 179, 197, 1);
    color: #000;
    font-weight: 400;
    border-radius: 0px;
  }

  .tab-btn.active .arrow {
    transform: translateX(4px);
  }

  .tab-btn:hover:not(.active) {
    color: rgba(42, 179, 197, 1);
  }

  /* ─── RIGHT COLUMN ─── */
  .right-col {
    padding-left: 8px;
  }

  .tab-header {
    margin-bottom: 24px;
  }

  .tab-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 6px;
  }

  .tab-description {
    font-size: 18px;
    line-height: 27px;
    color: #cccccc;
    max-width: 660px;
    letter-spacing: 0px;
  }

  #tabList {
    width: 230px;
  }
  /* ─── Owl Carousel ─── */
  .tab-panel {
    display: none;
  }
  .tab-panel.active {
    display: block;
  }

  .owl-carousel {
    width: 100%;
  }

  /* Property Card */
  .prop-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
  }

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

  .prop-card:hover img {
    transform: scale(1.04);
  }

  .prop-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      transparent 100%
    );
  }

  .prop-name {
    font-size: 15.85px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 21.13px;
  }

  .prop-tagline {
    font-size: 14.09px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 17.61px;
  }

  /* ─── Owl Custom Nav ─── */
  .owl-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-right: 30px;
  }

  .owl-custom-prev,
  .owl-custom-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 0%);
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background 0.2s,
      border-color 0.2s;
    flex-shrink: 0;
  }

  .owl-custom-prev:hover,
  .owl-custom-next:hover {
    /* background: rgba(42, 179, 197, 1); */
    border-color: rgba(42, 179, 197, 1);
    color: #000;
  }

  /* Custom dots */
  .owl-dots-custom {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .owl-dot-custom {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition:
      background 0.2s,
      width 0.2s;
    border: none;
  }

  .owl-dot-custom.active {
    background: rgba(42, 179, 197, 1);
    width: 44px;
  }

  /* Hide default owl nav/dots */
  .owl-nav {
    display: none !important;
  }
  .owl-dots {
    display: none !important;
  }
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .left-col {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .right-col {
    padding-left: 0;
  }
  .tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .tab-list li {
    border: none !important;
  }
  .tab-btn {
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    width: auto;
  }
  .tab-btn .arrow {
    display: none;
  }
  .tab-btn.active {
    border-radius: 40px;
  }
}

@media (max-width: 575.98px) {
  .prop-card {
    height: 260px;
  }
}

/* ── Section ── */
.privana-section {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ── Diagonal watermark lines (background) ── */
.privana-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 38px,
    rgba(180, 200, 220, 0.18) 38px,
    rgba(180, 200, 220, 0.18) 39px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Content above bg ── */
.privana-section .container {
  position: relative;
  z-index: 1;
}

/* ── Heading ── */
.privana-heading {
  font-size: 60px;
  font-weight: 500;
  line-height: 62px;
  margin-bottom: 20px;
  /* padding: 20px; */
  width: 430px;
  letter-spacing: 0px;
}
.privana-heading span {
  color: rgba(42, 179, 197, 1);
  font-weight: bold;
}

/* ── Description ── */
.privana-desc {
  font-size: 18px;
  line-height: 27px;
  color: rgba(13, 13, 13, 0.72);
  max-width: 580px;
  margin-bottom: 28px;
}

/* ── View All Button ── */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: #fff;
  /* font-family: "DM Sans", sans-serif; */
  font-size: 16px;
  font-weight: 500;
  padding: 8px 37px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-view-all:hover {
  background: rgba(42, 179, 197, 1);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Cards Grid ── */
.cards-row {
  margin-top: 0px;
  align-items: flex-end; /* stagger effect */
}

/* ── Property Card ── */
.prop-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: pointer;
}

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

.prop-card:hover img {
  transform: scale(1.04);
}

/* Card info box */
.card-info {
  position: absolute;
  /* left: 16px; */
  top: 16px;
  right: 16px;
  background: rgb(20 20 20 / 39%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 14px 16px;
  width: 80%;
  right: 15px;
}

.card-info-light {
  background: rgb(71 71 71 / 55%);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 24px;
  letter-spacing: 1px;
}

.card-info-light .card-title {
  color: #ffffff;
}

.card-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.card-info-light .card-subtitle {
  color: #ffffff;
}

.card-subtitle strong {
  font-weight: 700;
  color: #fff;
}

.card-info-light .card-subtitle strong {
  color: #111111;
}

/* ── Stagger heights ── */
/* Left card — shorter, lower */
.card-left .prop-card {
  height: 290px;
}

/* Middle card — tallest, raised */
.card-mid .prop-card {
  height: 522px;
}

/* Right card — medium, top-aligned */
.card-right .prop-card {
  height: 437px;
}

/* Right card info — top position */
.card-right .card-info {
  top: 16px;
  bottom: auto;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .card-left .prop-card,
  .card-mid .prop-card,
  .card-right .prop-card {
    height: 280px;
  }
  .card-right .card-info {
    top: auto;
    bottom: 16px;
  }
  .cards-row {
    align-items: stretch;
  }
}

@media (max-width: 575.98px) {
  .card-left .prop-card,
  .card-mid .prop-card,
  .card-right .prop-card {
    height: 240px;
  }
}

/* ==================commerical */

.main-section-c-r {
  .projects-top {
    background: rgba(243, 251, 248, 1);
    padding: 64px 0 48px;
  }

  /* Heading */
  .projects-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 48px;
    color: #111111;
  }
  .projects-heading .accent {
    color: rgba(42, 179, 197, 1);
  }

  /* Right text */
  .projects-label {
    font-size: 18px;
    color: rgba(12, 46, 47, 0.72);
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .projects-desc {
    font-size: 18px;
    line-height: 27px;
    color: rgba(12, 46, 47, 0.72);
    max-width: 580px;
  }

  /* ── Tab Buttons ── */
  .tab-pills {
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: center;
    margin-top: 36px;
  }

  .tab-pill-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    border-radius: 0px 50px 50px 0px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    background: transparent;
    color: rgba(42, 179, 197, 1);
    border: 1px solid rgba(18, 183, 182, 1);
    border-top: 0px;
    border-left: 0px;
  }

  .tab-pill-btn.active {
    background: rgba(18, 183, 182, 1);
    color: #ffffff;
    border-color: rgba(18, 183, 182, 1);
    border-radius: 50px 50px 0px 50px;
  }

  .tab-pill-btn:not(.active) {
    /* border-color: rgba(42, 179, 197, 1); */
    color: rgba(42, 179, 197, 1);
    background: transparent;
  }

  .tab-pill-btn:hover:not(.active) {
    background: rgba(43, 188, 212, 0.1);
  }

  /* ══ CAROUSEL SECTION (white bg, full width) ══ */
  .projects-carousel-section {
    background: rgba(243, 251, 248, 1);
    /* padding: 0 0 60px; */
  }

  /* Owl Carousel */
  .owl-carousel {
    width: 100%;
  }
  /* .owl-nav {
    display: none !important;
  } */
  .owl-dots {
    display: none !important;
  }

  .owl-nav {
    button{
                    width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(42, 179, 197, 0) !important;
            background:rgb(18, 183, 182)!important;
            color: #ffffff!important;
            font-size: 1rem !important;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            position: absolute;
            top: 50%;
            z-index: 11;
    }
    .owl-prev{
left: 15px;
    }
    .owl-next{
      right: 15px;
    }
  }
  /* Tab panels */
  .tab-panel-carousel {
    display: none;
  }
  .tab-panel-carousel.active {
    display: block;
  }

  /* ── Property Card ── */
  .prop-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    height: 520px;
    /* margin: 20px; */
    width: 97%;
    border-radius: 8px 8px 0px 0px;
    display: block;
    margin: auto;
  }

  .prop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    opacity: 0.92;
  }

  .prop-card:hover img {
    transform: scale(1.04);
    opacity: 1;
  }

  /* Card text below image */
  .prop-card-body {
    padding: 20px 24px 28px;
    background: rgb(14 14 14 / 41%);
    position: absolute;
    bottom: 0px;
    backdrop-filter: blur(6px);
    width: 96%;
    display: math;
    /* display: block; */
    /* margin: auto; */
    left: 10px;
  }

  .prop-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .prop-card-desc {
    font-size: 0.84rem;
    color: #ffffff;
    line-height: 1.6;
  }

  /* ── Custom Nav ── */
  .carousel-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 36px;
  }

  .owl-custom-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #cccccc;
    background: #ffffff;
    color: #111111;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }

  .owl-custom-btn:hover {
    background: rgba(42, 179, 197, 1);
    border-color: rgba(42, 179, 197, 1);
    color: #ffffff;
  }

  /* Custom dots */
  .owl-dots-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .owl-dot-btn {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: #dddddd;
    border: none;
    cursor: pointer;
    transition:
      background 0.2s,
      width 0.2s;
    padding: 0;
  }

  .owl-dot-btn.active {
    background: rgba(42, 179, 197, 1);
    width: 48px;
  }
}
/* ══ TOP SECTION (light bg) ══ */

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .main-section-c-r {
    .prop-card img {
      height: 300px;
    }
    .projects-top {
      padding: 48px 0 36px;
    }
  }
}

@media (max-width: 575.98px) {
  .main-section-c-r {
    .prop-card img {
      height: 240px;
    }
    .tab-pills {
      flex-wrap: wrap;
      gap: 10px;
    }
  }
}

/* ══ SECTION ══ */
.counter-section {
  /* background: #eaf4f6; */
  padding: 80px 0 70px;
  min-height: 420px;
  position: relative;
  overflow: hidden;

  .hero-heading {
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 67.03px;
    font-weight: 500;
    line-height: 71.49px;
    color: #111111;
    margin-bottom: 100px;
    padding-right: 22px;
  }

  .hero-heading span {
    color: rgba(42, 179, 197, 1);
    font-weight: bold;
  }

  /* ── Stats Row ── */
  .stats-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
  }

  .stat-item {
  }

  .stat-number {
    /* font-family: "DM Sans", sans-serif; */
    font-size: 33.87px;
    font-weight: 500;
    color: #111111;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    letter-spacing: 2px;
  }

  .stat-label {
    font-size: 16.94px;
    color: rgba(0, 0, 0, 0.72);
    font-weight: 400;
    line-height: 1.4;
    /* max-width: 130px; */
  }

  /* ── Right: Illustration placeholder ── */
  .hero-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-illustration {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Sketch-style placeholder if no image */
  .illustration-placeholder {
    width: 100%;
    max-width: 420px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── Left: Heading ── */

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .counter-section {
    padding: 60px 0 52px;
    .hero-heading {
      font-size: clamp(1.7rem, 5vw, 2.4rem);
      margin-bottom: 40px;
    }
    .hero-img-col {
      margin-top: 40px;
    }
    .stats-row {
      gap: 32px;
    }
  }
}

@media (max-width: 575.98px) {
  .counter-section {
    .stats-row {
      gap: 28px;
    }
    .stat-number {
      font-size: 1.6rem;
    }
  }
}
.illustration-placeholder img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 650px;
}

.dlf-updated-section {
  background: #111111;
  padding: 72px 0 64px;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 50px;
}

/* Left column */
.dlf-updated-section .dlf-upd-left {
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  height: 100%;
}

.dlf-updated-section .dlf-upd-heading {
  font-size: 42px;
  font-weight: 500;
  line-height: 112.00000000000001%;
  color: #ffffff;
  margin-bottom: 20px;
}

.dlf-updated-section .dlf-upd-heading span {
  color: rgba(42, 179, 197, 1);
  font-weight: bold;
}

.dlf-updated-section .dlf-upd-desc {
  font-size: 16px;
  line-height: 118%;
  color: #aaaaaa;
  margin-bottom: 32px;
  max-width: 100%;
}

.dlf-updated-section .dlf-upd-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 30px;
  border-radius: 50px;
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  /* font-family: "DM Sans", sans-serif; */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  width: fit-content;
  background: rgba(255, 255, 255, 1);
  color: BLACK;
}

.dlf-updated-section .dlf-upd-btn:hover {
  background: rgba(42, 179, 197, 1);
  border-color: rgba(42, 179, 197, 1);
  color: #ffffff;
}

/* Right column carousel wrapper */
.dlf-updated-section .dlf-upd-right {
  position: relative;
}

/* Owl carousel — scoped */
.dlf-updated-section .dlf-upd-owl.owl-carousel {
  width: 100%;
}

.dlf-updated-section .dlf-upd-owl .owl-stage-outer {
  overflow: hidden;
}

/* Hide default owl nav & dots */
.dlf-updated-section .dlf-upd-owl .owl-nav,
.dlf-updated-section .dlf-upd-owl .owl-dots {
  display: none !important;
}

/* Item padding for gap between cards */
.dlf-updated-section .dlf-upd-owl .owl-item .dlf-upd-item {
  padding: 0 8px;
}

/* ── News Card ── */
.dlf-updated-section .dlf-upd-card {
  /* background: #1a1a1a; */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dlf-updated-section .dlf-upd-card:hover {
  transform: translateY(-4px);
}

.dlf-updated-section .dlf-upd-card-img {
  width: 100%;
  height: 215px;
  overflow: hidden;
}

.dlf-updated-section .dlf-upd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  border-radius: 15px;
}

.dlf-updated-section .dlf-upd-card:hover .dlf-upd-card-img img {
  transform: scale(1.05);
}

.dlf-updated-section .dlf-upd-card-body {
  padding: 20px 18px 24px;
  padding-left: 0px;
  padding-right: 0px;
}

.dlf-updated-section .dlf-upd-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height:111.00000000000001%;
  margin-bottom: 12px;
}

.dlf-updated-section .dlf-upd-card-text {
  font-size: 16px;
  color: #aaaaaa;
  line-height:  118%;
}

/* ── Custom Nav Buttons ── */
.dlf-updated-section .dlf-upd-nav-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
}

.dlf-updated-section .dlf-upd-nav-btn {
      width: 40px;
    height: 40px;
    border-radius: 50%;
  border:1px solid rgba(42, 179, 197, 0);
    background: rgba(53, 193, 212, 0.05);
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.dlf-updated-section .dlf-upd-nav-btn:hover {
  /* background: rgba(42, 179, 197, 1); */
   border:1px solid rgba(42, 179, 197, 1);
  color: #000!important;
}
.dlf-updated-section .dlf-upd-nav-btn:hover i {
  /* color: #000!important; */
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .dlf-updated-section .dlf-upd-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .dlf-updated-section .dlf-upd-card-img {
    height: 180px;
  }
  .dlf-updated-section {
    padding: 52px 0 48px;
  }
}

.dlf-cta-section {
  font-family: "DM Sans", sans-serif;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
}

/* Background city image with dark overlay */
.dlf-cta-section .dlf-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/contactbg.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.dlf-cta-section .dlf-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

/* Top teal line */

.dlf-cta-section .container {
  position: relative;
  z-index: 2;
}

/* ── Left: Text ── */
.dlf-cta-section .dlf-cta-left {
  padding-right: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  height: 100%;
  padding-top: 60px;
}

.dlf-cta-section .dlf-cta-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 20px;
}

.dlf-cta-section .dlf-cta-desc {
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
}

.dlf-cta-section .dlf-cta-desc p {
  margin-bottom: 4px;
}

/* ── Right: Form Card ── */
.dlf-cta-section .dlf-cta-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 30px 36px;
}

/* Form label */
.dlf-cta-section .dlf-cta-label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
  display: block;
}

.dlf-cta-section .dlf-cta-label span {
  color: #e53935;
}

/* Form inputs */
.dlf-cta-section .dlf-cta-input,
.dlf-cta-section .dlf-cta-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: #333333;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.dlf-cta-section .dlf-cta-input::placeholder,
.dlf-cta-section .dlf-cta-textarea::placeholder {
  color: #aaaaaa;
  font-size: 0.86rem;
}

.dlf-cta-section .dlf-cta-input:focus,
.dlf-cta-section .dlf-cta-textarea:focus {
  border-color: rgba(42, 179, 197, 1);
}

.dlf-cta-section .dlf-cta-textarea {
  resize: none;
  height: 110px;
}

/* Form group spacing */
.dlf-cta-section .dlf-cta-form-group {
  margin-bottom: 16px;
}

.dlf-cta-section .dlf-cta-form-group:last-of-type {
  margin-bottom: 24px;
}

/* Submit button */
.dlf-cta-section .dlf-cta-submit {
  width: 100%;
  padding: 13px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.dlf-cta-section .dlf-cta-submit:hover {
  background: rgba(42, 179, 197, 1);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .dlf-cta-section .dlf-cta-left {
    padding-right: 0;
    margin-bottom: 36px;
  }
  .dlf-cta-section {
    padding: 56px 0;
  }
}

@media (max-width: 575.98px) {
  .dlf-cta-section .dlf-cta-card {
    padding: 24px 20px 28px;
  }
  .dlf-cta-section .dlf-cta-heading {
    font-size: 1.6rem;
  }
}

.dlf-footer {
  font-family: "DM Sans", sans-serif;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* City skyline background */
.dlf-footer .dlf-footer-bg {
  position: absolute;
  inset: 0;
  /* background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1600&q=80'); */
  background-size: cover;
  background-position: center bottom;
  opacity: 0.18;
  z-index: 0;
}

.dlf-footer .container {
  position: relative;
  z-index: 1;
}

/* ── Main footer content ── */
.dlf-footer .dlf-footer-main {
  padding: 64px 0 48px;
}

/* Logo area */
.dlf-footer .dlf-footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dlf-footer-logo .brand img {
  height: 141px;
}

.dlf-footer .dlf-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* SVG DLF Logo */
.dlf-footer .dlf-footer-logo svg {
  width: 64px;
  height: auto;
}

.dlf-footer .dlf-footer-brand-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  display: none;
}
.dlf-footer .dlf-footer-links a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #909090;
  position: absolute;
  bottom: 0px;
}
/* Column headings */
.dlf-footer .dlf-footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* Links */
.dlf-footer .dlf-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlf-footer .dlf-footer-links li {
  margin-bottom: 0px;
  padding-bottom: 12px;
}

.dlf-footer .dlf-footer-links li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dlf-footer .dlf-footer-links a {
  font-size: 16px;
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
  width: fit-content;
}

.dlf-footer .dlf-footer-links a:hover {
  color: rgba(42, 179, 197, 1);
}

.dlf-footer .dlf-footer-links a .dlf-footer-arrow {
  font-size: 0.7rem;
  color: #888888;
  margin-left: 6px;
}

/* ── Bottom bar ── */
.dlf-footer .dlf-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.dlf-footer .dlf-footer-copy {
  font-size: 0.82rem;
  color: #888888;
}

/* Social icons */
.dlf-footer .dlf-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dlf-footer .dlf-footer-socials a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dlf-footer .dlf-footer-socials a:hover {
  color: #ffffff;
}

.dlf-footer .dlf-footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .dlf-footer .dlf-footer-main {
    padding: 48px 0 36px;
  }
}

@media (max-width: 767.98px) {
  .dlf-footer .dlf-footer-logo-wrap {
    margin-bottom: 36px;
  }
  .dlf-footer .dlf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-menu{
    gap: 20px;
  }
}

/* ══ FILTER BAR ══ */
.dlf-filter-bar {
  background: #ffffff;
  border-radius: 50px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.dlf-filter-bar .dlf-filter-label {
  font-size: 17px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  /* text-transform: uppercase; */
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.dlf-filter-bar .dlf-filter-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: #555555;
  background: rgba(217, 217, 217, 0.34);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.dlf-filter-bar .dlf-filter-select:focus {
  border-color: rgba(42, 179, 197, 1);
}

/* ══ SECTION WRAPPER ══ */
.dlf-projects-section {
  padding: 0 0 60px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

/* ══ CARD TYPE 1 — Image top, text below (white bg) ══ */
.dlf-card-v1 {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  height: 100%;
}

.dlf-card-v1:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

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

.dlf-card-v1 .dlf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.dlf-card-v1:hover .dlf-card-img img {
  transform: scale(1.05);
}

.dlf-card-v1 .dlf-card-body {
  padding: 14px 16px 16px;
}

.dlf-card-v1 .dlf-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dlf-card-v1 .dlf-card-desc {
  font-size: 0.78rem;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dlf-card-v1 .dlf-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dlf-card-v1 .dlf-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #666666;
}

.dlf-card-v1 .dlf-card-meta-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: #888888;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══ CARD TYPE 2 — Overlay text on image ══ */
.dlf-card-v2 {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 430px;
  transition: transform 0.3s;
}

.dlf-card-v2:hover {
  transform: translateY(-3px);
}

.dlf-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.dlf-card-v2:hover img {
  transform: scale(1.05);
}

.dlf-card-v2 .dlf-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    transparent 100%
  );
}

.dlf-card-v2 .dlf-card-v2-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.dlf-card-v2 .dlf-card-v2-name {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.dlf-card-v2 .dlf-card-v2-desc {
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dlf-card-v2 .dlf-card-v2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid grey;
  padding-top: 5px;
}

.dlf-card-v2 .dlf-card-v2-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: rgba(212, 212, 212, 0.8);
}

.dlf-card-v2 .dlf-card-v2-meta-item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Row spacing */
.dlf-cards-row {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 767.98px) {
  .dlf-card-v1 .dlf-card-img {
    height: 180px;
  }
  .dlf-card-v2 {
    height: 210px;
  }
}

@media (max-width: 575.98px) {
  .dlf-filter-bar {
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  .main-section-c-r {
    .prop-card {
      height: 300px;
    }
  }
  .main-section-c-r {
    .prop-card img {
      height: 100%;
    }
  }
  .about-heading,
  .privana-heading {
    font-size: 28px;
  }
  .main-section-c-r {
    .projects-heading {
      font-size: 28px;
    }
  }
  .launches-section {
    .section-heading {
      font-size: 28px;
    }
  }
  .launches-section {
    .tab-description {
      font-size: 16px;
    }
  }
  .launches-section {
    .tab-btn {
      padding: 7px 11px;
      font-size: 11px;
    }
  }
  .launches-section {
    #tabList {
      width: 100%;
    }
  }
  .launches-section {
    .left-col {
      padding-right: 0px;
    }
  }
  .launches-section {
    .owl-dot-custom {
      width: 6px;
    }
  }
  .launches-section {
    .owl-dot-custom.active {
      background: rgba(42, 179, 197, 1);
      width: 16px;
    }
  }
  .illustration-placeholder img {
    position: inherit;
    bottom: 0px;
    right: 0px;
    width: 100%;
  }
  .counter-section {
    .illustration-placeholder {
      height: auto;
    }
  }
}
.dlf-pr-detail {
  /* ══ HERO SECTION ══ */
  .dlf-hero {
    position: relative;
    width: 100%;
    /* height: 420px; */
    /* overflow: hidden; */
    z-index: 1;
    padding-top: 123px;
  }

  .dlf-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    height: 549px;
  }

  /* Dark gradient overlay bottom */
  .dlf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  /* Title block centered bottom */
  .dlf-hero-title-wrap {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    text-align: center;
    background: black;
    bottom: -30px;
    width: fit-content;
    padding: 10px 141px;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, 0px);
    clip-path: polygon(22.25% 0%, 78.75% 0%, 100% 100%, 0% 100%);
    background-color: #000000;
  }

  .dlf-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: rgba(42, 179, 197, 1);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .dlf-hero-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  /* ══ ABOUT SECTION ══ */
  .dlf-about-section {
    background: #000000;
    padding: 52px 0 56px;
    padding-top: 100px;
    position: relative;
    .container{
      position: relative;
    }
  }
  .hdgsdg{
    position: absolute;
    top: 0px;
    height:100%;
    width: 100%;
  }

  /* About heading */
  .dlf-about-heading {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
  }

  .dlf-about-heading .dlf-about-accent {
    color: rgba(42, 179, 197, 1);
    font-weight: bold;
  }

  /* About description */
  .dlf-about-desc {
    font-size: 18px;
    line-height: 27px;
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 36px;
    letter-spacing: 0px;
  }

  /* Stats row */
  .dlf-stats-row {
           display: flex;
        flex-wrap: wrap;
        gap: 28px 36px;
        /* align-items: flex-start; */
        margin-top: 70px;
        position: relative;
        width: fit-content;
  }

  .dlf-stat-item {
  }

  .dlf-stat-number {
    font-size: 27.21px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
  }

  .dlf-stat-label {
    font-size: 13.61px;
    color: #888888;
    line-height: 1.4;
    max-width: 90px;
  }

  /* Divider line between heading and desc */
  .dlf-about-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 28px;
  }

  /* Right image */
  .dlf-about-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 379px;
    min-height: 260px;
  }

  .dlf-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .dlf-pr-detail {
    /* .dlf-hero { height: 320px; } */
    .dlf-about-img-wrap {
      min-height: 200px;
      margin-top: 36px;
    }
  }
}

@media (max-width: 575.98px) {
  .dlf-pr-detail {
    /* .dlf-hero { height: 260px; } */
    .dlf-stats-row {
      gap: 20px 28px;
    }
    .dlf-stat-number {
      font-size: 1.2rem;
    }
  }
}

/* ══ SECTION ══ */
.dlf-floor-section {
  background: #000000;
  padding: 48px 0 56px;
  /* ── Top header row ── */
  .dlf-floor-header-row {
    margin-bottom: 32px;
  }

  .dlf-floor-main-title {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
  }

  .dlf-floor-main-title .dlf-floor-accent {
    color: rgba(42, 179, 197, 1);
    font-weight: 700;
  }

  .dlf-floor-header-desc {
    font-size: 18px;
    line-height: 27px;
    color: #888888;
  }

  /* ── Floor Plan Cards ── */
  .dlf-floor-card {
    background: #1a1d2600;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
  }

  .dlf-floor-card-img {
    width: 100%;
    height: 336px;
    overflow: hidden;
    /* background: #242731; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }

  .dlf-floor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    filter: brightness(0.7) saturate(0.6);
    transition: opacity 0.3s;
    padding: 10px;
    border-radius: 30px;
    padding-bottom: 0px;
  }

  .dlf-floor-card:hover .dlf-floor-card-img img {
    opacity: 0.95;
  }

  .dlf-floor-card-body {
    padding: 14px 16px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .dlf-floor-card-info {
    width: 60%;
  }

  .dlf-floor-card-title {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 30px;
  }

  .dlf-floor-card-sqft {
    font-size: 16px;
    color: #777777;
  }

  /* Request button */
  .dlf-floor-req-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 6px;
    border: 1px solid rgb(255 255 255 / 66%);
    background: transparent;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition:
      border-color 0.2s,
      color 0.2s,
      background 0.2s;
    flex-shrink: 0;
    align-self: center;
    border-radius: 21px;
  }

  .dlf-floor-req-btn:hover {
    border-color: rgba(42, 179, 197, 1);
    color: rgba(42, 179, 197, 1);
    background: rgba(43, 188, 212, 0.08);
  }

  /* ── Master Plan heading ── */
  .dlf-master-heading {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 40px 0 24px;
  }

  .dlf-master-heading .dlf-floor-accent {
    color: rgba(42, 179, 197, 1);
  }

  /* ── Master Plan Card ── */
  .dlf-master-card {
    /* background: #1a1d26; */
    border-radius: 10px;
    overflow: hidden;
  }

  .dlf-master-card-img {
    width: 100%;
    height: 335px;
    overflow: hidden;
    background: #242731;
  }

  .dlf-master-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    filter: brightness(0.7) saturate(0.5);
    transition: opacity 0.3s;
  }

  .dlf-master-card:hover .dlf-master-card-img img {
    opacity: 0.95;
  }

  .dlf-master-card-body {
    padding: 14px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .dlf-master-card-info {
  }

  .dlf-master-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .dlf-master-card-sqft {
    font-size: 0.75rem;
    color: #777777;
  }
}

/* Responsive */
@media (max-width: 767.98px) {
  .dlf-floor-section {
    .dlf-floor-card-img {
      height: 140px;
    }
    .dlf-master-card-img {
      height: 170px;
    }
    .dlf-floor-header-desc {
      margin-top: 12px;
    }
  }
}

.dlf-gallery-section {
  background: #0a0a0a;
  padding: 44px 0 48px;
  .dlf-gallery-heading {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
          position: relative;
        width: fit-content;
        margin: auto;
        margin-bottom: 50px;
  }

  .dlf-gallery-heading .dlf-gallery-accent {
    color: rgba(42, 179, 197, 1);
  }

  /* Pair fade transition */
  .dlf-gal-pair {
    animation: dlfGalFade 0.3s ease;
  }

  .dlf-gallery-card {
    border-radius: 0px;
    overflow: hidden;
    background: #1a1a1a;
  }

  .dlf-gallery-card-img {
    width: 100%;
    height: 479px;
    overflow: hidden;
  }

  .dlf-gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .dlf-gallery-card:hover .dlf-gallery-card-img img {
    transform: scale(1.04);
  }

  .dlf-gallery-card-btn {
    display: inline-flex;
    align-items: center;
    margin: 14px 0 4px 0;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #cccccc;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition:
      border-color 0.2s,
      color 0.2s;
    white-space: nowrap;
  }

  .dlf-gallery-card-btn:hover {
    border-color: rgba(42, 179, 197, 1);
    color: rgba(42, 179, 197, 1);
  }

  .dlf-gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
  }

  .dlf-gallery-page-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #aaaaaa;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      border-color 0.2s,
      color 0.2s;
    padding: 0;
  }

  .dlf-gallery-page-btn:hover {
    border-color: rgba(42, 179, 197, 1);
    color: rgba(42, 179, 197, 1);
  }

  .dlf-gallery-page-info {
    font-size: 0.82rem;
    color: #888888;
    letter-spacing: 0.04em;
  }
}
@keyframes dlfGalFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .dlf-gallery-card-img {
    height: 170px;
  }
}

/* ══ SECTION ══ */
.dlf-am-section {
  background: #0d0f14;
  padding: 56px 0 64px;
  /* ── Top: Heading + Desc ── */
  .dlf-am-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0;
  }

  .dlf-am-heading .dlf-am-accent {
    color: rgba(42, 179, 197, 1);
    display: block;
    font-weight: 700;
  }

  .dlf-am-top-desc {
    font-size: 18px;
    line-height: 27px;
    color: #888888;
    margin-bottom: 20px;
  }

  .dlf-am-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 31px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .dlf-am-book-btn:hover {
    border-color: rgba(42, 179, 197, 1);
    background: rgba(43, 188, 212, 0.1);
    color: rgba(42, 179, 197, 1);
  }

  /* ── Divider after top ── */
  .dlf-am-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 32px 0 28px;
  }

  /* ── Left: Amenity Tab List ── */
  .dlf-am-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dlf-am-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .dlf-am-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 10px;
    background: transparent;
    border: none;
    color: #888888;
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition:
      color 0.2s,
      background 0.2s;
    border-radius: 6px;
  }

  .dlf-am-tab-btn .dlf-am-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
  }

  .dlf-am-tab-btn.active,
  .dlf-am-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
  }

  .dlf-am-tab-btn.active .dlf-am-icon,
  .dlf-am-tab-btn:hover .dlf-am-icon {
    opacity: 1;
  }

  /* Active has teal icon */
  .dlf-am-tab-btn.active {
    color: #ffffff;
    font-weight: 600;
  }

  .dlf-am-tab-btn.active .dlf-am-icon svg {
    stroke: rgba(42, 179, 197, 1);
  }

  /* ── Progress bar inside each tab ── */
  .dlf-am-progress-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
  }

  .dlf-am-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(42, 179, 197, 1);
    border-radius: 2px;
    transition: none;
  }

  /* Tab btn needs relative for progress bar */
  .dlf-am-tab-btn {
    position: relative;
  }

  /* ── Right: Image ── */
  .dlf-am-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    position: relative;
  }

  .dlf-am-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: opacity 0.35s ease;
    position: absolute;
    inset: 0;
  }

  .dlf-am-img-wrap img.dlf-am-img-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .dlf-am-img-wrap img.dlf-am-img-visible {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .dlf-am-img-wrap {
    min-height: 260px;
    margin-top: 32px;
  }
}

@media (max-width: 575.98px) {
  .dlf-am-tab-btn {
    font-size: 0.8rem;
    padding: 11px 8px;
  }
  .dlf-am-img-wrap {
    min-height: 220px;
  }
}

/* ══ SECTION ══ */
.dlf-loc-section {
  background: #0d0f14;
  padding: 60px 0 64px;
  /* ── Heading ── */
  .dlf-loc-heading {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .dlf-loc-heading .dlf-loc-accent {
    color: rgba(42, 179, 197, 1);
    font-weight: bold;
  }

  /* ── Description ── */
  .dlf-loc-desc {
    font-size: 18px;
    line-height: 27px;
    color: #888888;
    margin-bottom: 32px;
  }

  /* ── Feature list ── */
  .dlf-loc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dlf-loc-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .dlf-loc-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(43, 188, 212, 0.1);
    border: 1px solid rgba(43, 188, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .dlf-loc-feat-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(42, 179, 197, 1);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dlf-loc-feat-label {
    font-size: 0.85rem;
    color: #bbbbbb;
    font-weight: 500;
  }

  /* ── Right: Map image ── */
  .dlf-loc-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
  }

  .dlf-loc-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .dlf-loc-map-wrap {
    min-height: 260px;
    margin-top: 36px;
  }
}

@media (max-width: 575.98px) {
  .dlf-loc-map-wrap {
    min-height: 220px;
  }
  .dlf-loc-section {
    padding: 48px 0 52px;
  }
}

/* ══ SECTION ══ */
.dlf-faq-section {
  background: #0d0f14;
  padding: 64px 0 72px;
  /* ── Left: Heading ── */
  .dlf-faq-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: rgba(42, 179, 197, 1);
    line-height: 1.2;
  }

  /* ── Right: FAQ Accordion ── */
  .dlf-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dlf-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dlf-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Question row */
  .dlf-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    color: #ffffff;
    /* font-family: "DM Sans", sans-serif; */
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
  }

  .dlf-faq-question:hover {
    color: rgba(42, 179, 197, 1);
  }

  /* Plus / X icon */
  .dlf-faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
    transition:
      transform 0.3s,
      color 0.2s;
    line-height: 1;
  }

  .dlf-faq-item.open .dlf-faq-icon {
    transform: rotate(45deg);
    color: rgba(42, 179, 197, 1);
  }

  .dlf-faq-item.open .dlf-faq-question {
    color: #ffffff;
  }

  /* Answer panel */
  .dlf-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition:
      max-height 0.4s ease,
      padding 0.3s ease;
  }

  .dlf-faq-answer-inner {
    padding: 4px 0 20px;
    font-size: 16px;
    line-height: 25px;
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
  }

  .dlf-faq-item.open .dlf-faq-answer {
    max-height: 400px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .dlf-faq-heading {
    margin-bottom: 36px;
  }
}
.dlf-hero {
  background-color: black;
  padding-top: 150px;
}
.dlf-hero-img {
  border-radius: 20px;
}

@media (max-width: 575.98px) {
  .dlf-pr-detail {
    .dlf-hero-img {
      height: 300px;
    }
  }

  .dlf-pr-detail {
    .dlf-hero-title-wrap {
      width: 100%;
      padding: 10px 65px;
    }
  }
  .dlf-pr-detail {
    .dlf-hero-title {
      margin: 0px;
      font-size: 20px;
    }
  }
  .dlf-pr-detail {
    .dlf-hero-subtitle {
      font-size: 12px;
    }
  }
  .dlf-pr-detail {
    .dlf-about-heading {
      font-size: 28px !important;
    }
  }
  .dlf-pr-detail {
    .dlf-about-desc {
      font-size: 16px;
    }
  }
  .dlf-floor-section {
    .dlf-floor-main-title {
      font-size: 28px !important;
    }
  }
  .dlf-floor-section {
    .dlf-master-heading {
      font-size: 28px !important;
    }
  }
  .dlf-gallery-section {
    .dlf-gallery-heading {
      font-size: 28px !important;
    }
  }
  .dlf-am-section {
    .dlf-am-heading {
      font-size: 28px !important;
    }
  }
}
@media (max-width: 992px) {
  .dlf-nav {
    width: 100%;
    backdrop-filter: inherit;
    transform: inherit;
    left: inherit;
  }
}
.section-newevent {
  padding: 90px 0px 60px 0px;
  /* ===== DLF CONTAINER ===== */
  .dlf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* ===== DLF HEADER ===== */
  .dlf-news-header {
    text-align: center;
    margin-bottom: 10px;
    padding: 48px 0;
  }

  .dlf-news-header .dlf-title {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-size: clamp(2rem, 5.5vw, 4rem);
  }

  .dlf-news-header .dlf-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
}

h2.dlf-section-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: black;
    bottom: -1px;
    position: absolute;
}
@media (max-width: 768px) {
  .section-newevent {
    .dlf-news-header .dlf-title {
      font-size: 1.8rem;
    }

    .dlf-news-header .dlf-subtitle {
      font-size: 0.9rem;
    }
  }
}

.section-newevent {
  /* ===== DLF SECTION ===== */
  .dlf-section {
    margin-bottom: 48px;
  }

  .dlf-section .dlf-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    position: relative;
            width: fit-content;
        padding-bottom: 5px;
  }

  /* ===== DLF ROW ===== */
  .dlf-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .section-newevent {
    .dlf-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
}

@media (max-width: 768px) {
  .section-newevent {
    .dlf-row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
}

.section-newevent {
  /* ===== DLF CARD ===== */
  .dlf-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .dlf-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  /* ===== DLF CARD IMAGE ===== */
  .dlf-card .dlf-card-image {
    width: 100%;
    height: 215px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
  }

  .dlf-card .dlf-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .dlf-card:hover .dlf-card-image img {
    transform: scale(1.05);
  }

  /* ===== DLF CARD BADGE ===== */
  .dlf-card .dlf-card-image .dlf-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    z-index: 10;
  }

  /* ===== DLF CARD CONTENT ===== */
  .dlf-card .dlf-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .dlf-card .dlf-card-content .dlf-card-category {
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .dlf-card .dlf-card-content .dlf-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .dlf-card:hover .dlf-card-content .dlf-card-title {
    color: #7c3aed;
  }

  .dlf-card .dlf-card-content .dlf-card-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
  }

  /* ===== DLF CARD LINK ===== */
  .dlf-card .dlf-card-content .dlf-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    /* font-weight: 600; */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border: 0.5px solid rgba(0, 0, 0, 0.5);
    width: fit-content;
    padding: 8px 20px;
    border-radius: 39px;
  }

  .dlf-card .dlf-card-content .dlf-card-link:hover {
    gap: 16px;
    color: #000;
  }

  .dlf-card .dlf-card-content .dlf-card-link:hover::after {
    transform: translateX(4px);
  }

  /* ===== ANIMATION ===== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dlf-card {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .dlf-section:nth-child(1) .dlf-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .dlf-section:nth-child(1) .dlf-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .dlf-section:nth-child(1) .dlf-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .dlf-section:nth-child(2) .dlf-card:nth-child(1) {
    animation-delay: 0.4s;
  }
  .dlf-section:nth-child(2) .dlf-card:nth-child(2) {
    animation-delay: 0.5s;
  }
  .dlf-section:nth-child(2) .dlf-card:nth-child(3) {
    animation-delay: 0.6s;
  }

  /* ===== UTILITY CLASSES ===== */
  .dlf-mt-1 {
    margin-top: 8px;
  }
  .dlf-mt-2 {
    margin-top: 12px;
  }
  .dlf-mt-3 {
    margin-top: 16px;
  }
  .dlf-mt-4 {
    margin-top: 24px;
  }
  .dlf-mt-5 {
    margin-top: 32px;
  }

  .dlf-mb-1 {
    margin-bottom: 8px;
  }
  .dlf-mb-2 {
    margin-bottom: 12px;
  }
  .dlf-mb-3 {
    margin-bottom: 16px;
  }
  .dlf-mb-4 {
    margin-bottom: 24px;
  }
  .dlf-mb-5 {
    margin-bottom: 32px;
  }

  .dlf-pt-5 {
    padding-top: 32px;
  }
  .dlf-pb-5 {
    padding-bottom: 32px;
  }

  .dlf-text-center {
    text-align: center;
  }
}

.section-blogdetail {
  padding: 150px 0px 60px 0px;

  /* Header Section */
  .dlf-header-section {
    margin-bottom: 40px;
  }

  .dlf-hero-banner {
    width: 100%;
    height: 465px;
    background:
      linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(255, 100, 0, 0.2) 100%
      ),
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="g1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23332200"/><stop offset="50%" style="stop-color:%23664400"/><stop offset="100%" style="stop-color:%23ff6600"/></linearGradient><filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="3"/></filter></defs><rect width="1200" height="400" fill="%231a1a1a"/><path d="M 0 200 Q 300 100 600 180 T 1200 150" stroke="url(%23g1)" stroke-width="3" fill="none" filter="url(%23blur)" opacity="0.6"/><circle cx="900" cy="100" r="50" fill="%23ff8833" opacity="0.4"/><circle cx="950" cy="150" r="80" fill="%23ff6600" opacity="0.3"/></svg>')
        center/cover;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 0px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }

  .dlf-hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        circle at 80% 30%,
        rgba(255, 200, 100, 0.2) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 20% 70%,
        rgba(255, 100, 50, 0.15) 0%,
        transparent 40%
      );
    pointer-events: none;
  }

  .dlf-phase-label {
    position: relative;
    z-index: 1;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 19px;
    backdrop-filter: blur(5px);
    width: 100%;
    font-size: 27px;
  }

  /* Main Content Area */
  .dlf-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    margin-bottom: 0px;
  }

  .dlf-article-section-main {
    grid-column: 1;
  }

  .dlf-sidebar-container {
    grid-column: 2;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        padding: 15px;
        border-radius: 5px;
        height: fit-content;
        position: sticky;
        top: 11px;
  }
  .dlf-sidebar-container ul{
    padding-left: 0px;
    li{
                list-style: none;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: normal;
            color: rgb(0, 166, 153);
      a{
        text-decoration: none;
        color: rgb(0, 166, 153);
      }
    }
  }

  /* Article Title */
  .dlf-article-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }

  /* Article Sections */
  .dlf-content-block {
    margin-bottom: 45px;
  }

  .dlf-block-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
  }

  .dlf-block-text {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
  }

  .dlf-block-text p {
    margin-bottom: 15px;
  }

  .dlf-text-highlight {
    color: #00a699;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #00a699;
  }

  .dlf-text-highlight:hover {
    background-color: rgba(0, 102, 204, 0.05);
  }

  /* Sidebar */
  .dlf-sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .dlf-sidebar-item {
    margin-bottom: 20px;
  }

  .dlf-sidebar-nav-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  .dlf-sidebar-nav-link.active {
    color: #00a699;
  }

  .dlf-sidebar-nav-link:hover {
    color: #0066cc;
  }

  .dlf-sidebar-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-blogdetail {
    .dlf-content-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .dlf-sidebar-container {
      grid-column: 1;
      border-top: 1px solid #e0e0e0;
      padding-top: 30px;
    }

    .dlf-article-heading {
      font-size: 24px;
    }

    .dlf-hero-banner {
      height: 200px;
    }
  }
}

/* Animations */
@keyframes dlf-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-blogdetail {
  .dlf-content-block {
    animation: dlf-fade-in 0.6s ease-out forwards;
  }

  .dlf-content-block:nth-child(1) {
    animation-delay: 0.1s;
  }
  .dlf-content-block:nth-child(2) {
    animation-delay: 0.2s;
  }
  .dlf-content-block:nth-child(3) {
    animation-delay: 0.3s;
  }
}
.dlf-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dlf-phase-label span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}

.section-neweventdetail {
  padding-top: 0px;
}

@media (max-width: 768px) {
  .dlf-content-wrapper {
    flex-direction: column-reverse;
    display: flex !important;
  }
  .section-blogdetail {
    .dlf-sidebar-item {
      margin-bottom: 6px;
    }
  }
}
.contact-sbvvsh {
  padding-bottom: 0px !important;
}

/* ===========white nav bar====== */
.white--nav {
  background-color: white;
  .nav-links .nl {
    color: black;
  }
  .nav-bar .brand img {
    filter: brightness(0.5);
  }
  .dd-panel {
    background-color: white;
  }
  .dd-panel .di,
  .ph {
    color: black;
    letter-spacing: 0px;
  }
  .dd-panel .di i,
  .ham span {
    color: black;
  }
  .dd-panel .lbl {
    color: rgb(0 0 0 / 61%);
  }
  .ham {
    border: 1.5px solid rgb(0 0 0 / 30%);
  }
  .ham span {
    background-color: black;
  }
  .nav-menu {
    background-color: white;
  }
  .brand .t2 {
    color: rgb(0 0 0 / 50%);
  }
  .brand .t1 {
    color: #000000;
  }
}

.black--logo {
  display: none;
}
.white--nav {
  .black--logo {
    display: block;
  }
  .white--logo {
    display: none;
  }
}

#viewPriceBtn {
  margin-top: 12px;
}
.dlf-card-content a {
  text-decoration: none !important;
}
.footerbgd{
      position: absolute;
    bottom: 0px;
    width: 57%;
    right: 0px;
}
#dlfUpdPrev i , #dlfUpdNext i{
  color: rgba(52, 194, 212, 1)!important;
}
a.nl.active {
    color: #2ab3c5!important;
}
@media (max-width: 768px) {
  .dlf-footer-logo .brand img {
    height: 100px;
}
  .hero-content h1 {
    width: 100%;
  }
  .hero-content p {
    font-size: 16px;
    width: 100%;
  }
  .btn-hero {
    padding: 10px 23px;
    font-size: 15px;
  }
  .about-section {
    padding: 72px 0 64px;
    padding: 40px 0px;
  }
  .about-body {
    font-size: 16px;
    line-height: 25px;
  }
  .about-img-wrap {
    margin-top: 20px;
  }
  .about-img-wrap img {
    height: auto;
  }
  .launches-section {
    padding: 40px 0px;
  }
  .section-heading {
    font-size: 28px;
    line-height: normal !important;
  }
  .launches-section {
    .tab-label {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 6px;
    }
  }
  .launches-section {
    .tab-btn {
      padding: 7px 11px;
      font-size: 11px;
      width: max-content;
    }
    #tabList {
      width: 100%;
      flex-wrap: nowrap;
      overflow: auto;
      padding-bottom: 15px;
    }
    .tab-btn {
      padding: 7px 11px;
      font-size: 12px;
      width: max-content;
    }
  }

  #tabList::-webkit-scrollbar {
    height: 5px;
    border-radius: 20px;
  }

  /* Track */
  #tabList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
  }

  /* Handle */
  #tabList::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
  }

  /* Handle on hover */
  #tabList::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .privana-section {
    padding: 40px 0px;
  }
  .privana-desc {
    font-size: 16px;
    line-height: 25px;
  }
  .card-right .card-info {
    top: 10px;
    bottom: auto;
  }
  .main-section-c-r {
    .projects-desc {
      font-size: 16px;
    }
    .projects-label {
      font-size: 16px;
    }
  }
  .dlf-updated-section .dlf-upd-heading {
    font-size: 28px;
  }
  .dlf-updated-section .dlf-upd-desc {
    font-size: 16px;

    max-width: 100%;
  }
  .dlf-cta-section .dlf-cta-heading {
    line-height: 34px;
  }
  .dlf-pr-detail {
    .dlf-hero-title-wrap {
      width: 100%;
      padding: 10px 82px;
    }
  }
  #viewPriceBtn {
    margin-top: 12px;
    display: block;
    margin: auto;
    margin-top: 10px;
  }
  .dlf-pr-detail {
    .dlf-hero-subtitle {
      font-size: 12px;
      line-height: normal;
      margin-top: 10px;
    }
  }
  .dlf-pr-detail {
    .dlf-about-section {
      background: #000000;
      padding: 40px 0px;
      padding-top: 100px;
    }
  }
  .dlf-floor-section {
    .dlf-floor-header-desc {
      font-size: 16px;
      line-height: 25px;
      color: #888888;
      margin-top: 0px !important;
    }
  }

  .dlf-floor-section {
    .dlf-floor-card-info {
      width: 100%;
    }
  }
  .dlf-floor-section {
    .dlf-floor-card-title {
      font-size: 22px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 5px;
      line-height: 1.3;
    }
  }
  .dlf-floor-section {
    .dlf-floor-card-info {
      width: 100%;
    }
    .dlf-floor-card-title {
      font-size: 20px;
    }
  }
  .dlf-floor-section {
    .dlf-floor-card-img {
      height: 215px;
    }
    .dlf-floor-req-btn {
      font-size: 14px !important;
    }
  }
  .dlf-gallery-section {
    .dlf-gallery-card-img {
      width: 100%;
      height: 250px;
      overflow: hidden;
    }
  }
  .dlf-am-section,
  .dlf-loc-section {
    padding: 40px 0px !important;
  }
  .dlf-loc-section {
    .dlf-loc-heading {
      font-size: 28px !important;
    }
  }

  .dlf-loc-section {
    .dlf-loc-desc {
      font-size: 16px;
      line-height: 27px;
      color: #888888;
      margin-bottom: 32px;
    }
  }
  .dlf-loc-map-wrap {
    margin-top: 0px !important;
  }
  .dlf-loc-map-wrap {
    height: 250px !important;
  }
  .dlf-faq-section {
    padding: 40px 0px !important;
  }
  .dlf-card-v2 {
    height: 350px !important;
  }
  .dlf-card-v2 .dlf-card-v2-name {
    font-size: 20px;
  }
  .dlf-card-v2 .dlf-card-v2-desc,
  .dlf-card-v2 .dlf-card-v2-meta-item {
    font-size: 14px;
  }
  .dlf-projects-section {
    padding-bottom: 40px !important;
  }

  .counter-section {
    padding: 40px 0px !important ;
  }
  .section-blogdetail {
    .dlf-phase-label {
      font-size: 17px;
      line-height: 18px;
      padding: 10px;
    }
  }
  .dlf-phase-label span {
    margin-top: 7px;
  }
  .section-blogdetail {
    .dlf-hero-banner {
      height: 300px;
    }
  }
  .section-blogdetail {
    padding-bottom: 0px;
  }
}

.launches-section .container-fluid {
  padding-left: 115px !important;
  padding-right: 0px !important;
}
.rowctar {
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 20px;
}
.Supportfooter {
  padding-left: 85px !important;
}
button.tab-pill-btn.Residentialtab {
  border-radius: 50px 50px 0px 50px;
  border-left: 1px solid;
  border-right: 0px;
}
button.tab-pill-btn.Commercialtab.active {
  border-radius: 50px 50px 50px 0px;
}
.section-newevent.section-neweventdetail{
  background: rgba(243, 251, 248, 1);
    padding: 40px 0px !important;
}
.relatedblog-title{
  margin-bottom: 20px;
          font-size: 42px;
        font-weight: 500;
        line-height: 48px;
        color: #111111;
        span{
                  color: rgba(42, 179, 197, 1);
        }
}
.enquiry-header{
  text-align: start!important;
  .btn-close-white{
        position: absolute;
    top: 15px;
    right: 15px;
  }
  h5{
    margin-bottom: 0px!important;
  }
}
.dlf-stats-row::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90.06deg, #000000 -26.4%, #000101 9.15%, #2AB3C5 84.5%);
    position: absolute;
    bottom: -25px;
    right: 0px;
}
h2.dlf-gallery-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #2AB3C5 0%, #FFFFFF 100%);
    position: absolute;
    bottom: -9px;
}
.owl-carousel-hero{
      position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    .item img{
      width: 100%!important;
      height: 100%!important;
      object-fit: cover!important;
    }
}
.dlf-am-section-jgj{
   background-image: url("../img/dlf-am-section-jgj.png");
   background-size: cover;
   background-position: bottom;
   padding-bottom: 120px;
}
@media (max-width: 768px) {

  .dlf-gallery-section {
    .dlf-gal-pair {
        animation: dlfGalFade 0.3s ease;
        .col-12.col-sm-6{
          width: 50%;
        }
                .dlf-gallery-card-img {
            width: 100%;
            height: 150px;
            overflow: hidden;
        }
    }
}
  .launches-section .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .hero-content h1 {
    font-size: 32px;
    letter-spacing: 0px;
    line-height: normal;
  }
  .hero {
    position: relative;
    width: 100%;
    /* min-height: auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 180px 0px;
    padding-top: 195px;
    padding-bottom: 158px;
  }
  .about-heading,
  .privana-heading {
    font-size: 28px;
    line-height: normal;
  }
  .card-title {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  .main-section-c-r {
    .projects-heading {
      font-size: 28px;
      line-height: normal;
    }
  }
  .about-heading,
  .privana-heading {
    width: 100%;
  }
  .btn-view-all {
    padding: 7px 23px;
    font-size: 15px;
  }
  .main-section-c-r {
    .tab-pills {
      flex-wrap: wrap;
      gap: 0px;
    }
  }
  .counter-section {
    .hero-heading {
      margin-bottom: 40px;
      line-height: normal !important;
    }
    .stat-number {
      font-size: 20px;
      margin: 0px;
    }
    .stat-label {
      font-size: 15px;
      color: rgba(0, 0, 0, 0.72);
      font-weight: 400;
      line-height: normal;
      /* max-width: 130px; */
    }
    .stats-row {
      gap: 29px;
      row-gap: 20px;
    }
    .stat-item {
      border-bottom: 1px solid #c1c1c1;
      padding-bottom: 6px;
    }
  }
  .dlf-updated-section .dlf-upd-btn {
    padding: 5px 26px;
    font-size: 15px;
  }
  .dlf-updated-section .dlf-upd-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .rowctar {
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 0px;
  }
  .Supportfooter {
    padding-left: 10px !important;
  }
  .nav-links .nl {
    font-size: 16px !important;
  }
  .dlf-pr-detail {
    .dlf-about-desc {
      font-size: 16px;
      line-height: inherit;
    }
  }
  .dlf-floor-section {
    .dlf-floor-card-title {
      font-size: 18px;
    }
  }
  .dlf-gallery-section {
    .dlf-gallery-card-btn {
      font-size: 16px;
    }
  }
  .dlf-am-section {
    .dlf-am-top-desc {
      font-size: 16px;
    }
  }
  .dlf-pr-detail {
    .hdgsdg {
        padding-top: 70px;
    }
}
.dlf-am-section {
    .dlf-am-img-wrap {
        border-radius: 10px;
        overflow: hidden;
        height: 100%;
        min-height: 300px;
        position: relative;
    }
}.section-blogdetail {
    .dlf-sidebar-container {
        position: inherit;
    }}
        .section-blogdetail {
        padding-top: 110px;
    }
}
