/* ============================================================
   BHUMI GROUP — custom.css (fullPage.js compatible)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap");

/* ── CSS Variables ── */
:root {
  --or: #83c604;
  --ordk: #c46a18;
  --dark: #111;
  --hh: 75px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: calibri;
}
p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Optional smoother effect */
section {
  transition: all 0.5s ease;
}

/* ============================================================
         HEADER
         ============================================================ */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hh);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

#hdr.at-top {
  background: transparent;
}

#hdr.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

.hdr-wrap {
  margin: 0 auto;
  padding: 0 58px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ── */
.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hdr-logo svg {
  height: 56px;
  width: auto;
}

.hdr-logo .logo-dark {
  display: none;
}

.hdr-logo .logo-white {
  display: block;
}

#hdr.scrolled .logo-white {
  display: none;
}

#hdr.scrolled .logo-dark {
  display: block;
}

/* ── Desktop nav ── */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.hdr-nav .nl {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.hdr-nav .nl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--or);
  transition: width 0.25s;
}

.hdr-nav .nl:hover {
  color: var(--or);
}

.hdr-nav .nl:hover::after {
  width: 100%;
}

#hdr.scrolled .hdr-nav .nl {
  color: #222;
}

#hdr.scrolled .hdr-nav .nl:hover {
  color: var(--or);
}

/* ── Enquire button ── */
.btn-enq {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  cursor: pointer;
}

.btn-enq:hover {
  background: var(--or);
  border-color: var(--or);
  color: #fff;
}

#hdr.scrolled .btn-enq {
  border-color: var(--or);
  color: var(--or);
}

#hdr.scrolled .btn-enq:hover {
  background: var(--or);
  color: #fff;
}

/* ── Scrolled right (menu + enquire) ── */
.hdr-scroll-right {
  display: none !important;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

#hdr.scrolled .hdr-nav {
  display: flex !important;
}

/* #hdr.scrolled .hdr-scroll-right {
       display: none !important;
   } */

.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-btn svg {
  width: 22px;
}

.menu-btn svg line {
  stroke: #222;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.scrolled-enq {
  border-color: var(--or);
  color: var(--or);
}

.scrolled-enq:hover {
  background: var(--or);
  color: #fff;
}

/* ============================================================
         DRAWER
         ============================================================ */
.drw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drw-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drw {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drw.open {
  transform: translateX(0);
}

.drw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid #eee;
}

.drw-close {
  font-size: 34px;
  line-height: 1;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.drw-close:hover {
  color: var(--or);
}

.drw-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
  transition:
    color 0.2s,
    background 0.2s;
}

.drw-nav a:hover {
  color: var(--or);
  background: #fdf6ef;
}

.drw-nav a .plus {
  font-size: 20px;
  font-weight: 300;
  color: #bbb;
  line-height: 1;
}

/* ============================================================
         HERO SLIDER
         ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.leaving {
  animation: slideOut 0.9s ease forwards;
  z-index: 3;
}

.hero-slide.entering {
  animation: slideIn 0.9s ease forwards;
  z-index: 2;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Parallax wrapper */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 1400px;
}

.hero-img-wrap img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
  will-change: transform;
  transition:
    transform 0s linear,
    filter 0.4s ease;
  transform: perspective(1400px) rotateX(0deg) rotateY(0deg) scale(1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-img-wrap:hover img {
  filter: brightness(0.9);
}

/* Caption */
.hero-caption {
  position: absolute;
  z-index: 4;
  bottom: 110px;
  left: 56px;
  right: 100px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-caption {
  animation: captionIn 0.7s 0.2s ease forwards;
}

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

.hero-count {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-count::after {
  content: "";
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  display: block;
}

.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.hero-loc {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.8;
}

/* Arrows */
.hero-arrows {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h-arr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.h-arr:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

/* Bottom bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 13px 56px;
  background: rgba(0, 0, 0, 0.65);
}

.hero-bar a {
  color: var(--or);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hero-bar a:hover {
  color: #fff;
}

/* ============================================================
         OVERVIEW
         ============================================================ */
.sec-overview {
  background: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 40px;
}

.ov-grid {
  margin: 0 58px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.5fr;
  align-items: center;
  gap: 50px;
}

.ov-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--or);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.ov-body {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.ov-knowmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--or);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.22s;
}

.km-line {
  width: 36px;
  height: 2px;
  background: var(--or);
  flex-shrink: 0;
  display: block;
}

.ov-knowmore:hover {
  gap: 16px;
}

/* Big number with blob SVG */
.num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob-svg {
  width: clamp(200px, 22vw, 320px);
  height: auto;
  overflow: visible;
}

/* Blob animation */
.b1,
.b2,
.b3,
.b4 {
  opacity: 0;
}

.b1 {
  animation: blob1 3.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
}

.b2 {
  animation: blob2 4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
}

.b3 {
  animation: blob3 3.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.b4 {
  animation: blob4 4.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s forwards;
}

@keyframes blob1 {
  0% {
    transform: translate(-40px, 50px) scale(0.5);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    transform: translate(12px, -15px) scale(1.06);
    opacity: 1;
  }

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

@keyframes blob2 {
  0% {
    transform: translate(50px, -40px) scale(0.5);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    transform: translate(-14px, 12px) scale(1.07);
    opacity: 1;
  }

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

@keyframes blob3 {
  0% {
    transform: translate(-35px, 40px) scale(0.5);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    transform: translate(12px, -12px) scale(1.06);
    opacity: 1;
  }

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

@keyframes blob4 {
  0% {
    transform: translate(40px, -35px) scale(0.5);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    transform: translate(-10px, 14px) scale(1.05);
    opacity: 1;
  }

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

.ov-yr {
  padding-left: 16px;
  border-left: 3px solid #eee;
}

.yr-divider {
  display: none;
}

.yr-label {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  color: #222;
  line-height: 1.5;
}

.yr-label strong {
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
}

/* Progress track */
.ov-track {
  max-width: 1400px;
  margin: 44px auto 0;
  padding: 0 80px;
  display: flex;
  align-items: center;
}

.ov-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--or);
  opacity: 0.28;
  flex-shrink: 0;
}

.ov-dot.on {
  opacity: 1;
}

.ov-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.ov-tip {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--or);
  flex-shrink: 0;
}

/* Stats bar */
.ov-stats {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 80px;
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  border-top: 1px solid #eee;
}

.stat {
  font-size: 14px;
  color: #555;
}

.stat strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-right: 3px;
}

/* ============================================================
         PROJECTS
         ============================================================ */
.sec-projects {
  background: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.sec-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--or);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.proj-outer {
  position: relative;
  overflow: hidden;
  padding: 0 56px;
}

.proj-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-card {
  flex-shrink: 0;
  margin: 0 8px;
  background: var(--or);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: block;
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.proj-top {
  padding: 20px 20px 12px;
  text-align: center;
}

.proj-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.proj-name .dash {
  flex: 0 0 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  display: block;
}

.proj-loc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.proj-img {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.5s;
}

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

.proj-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 9.5px;
  font-style: italic;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

/* Carousel arrows */
.p-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}

.p-arr:hover {
  background: var(--ordk);
}

.p-arr.prev {
  left: 6px;
}

.p-arr.next {
  right: 6px;
}

/* ============================================================
         MAP
         ============================================================ */
.sec-map {
  background: #fff;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.map-inner {
  margin: 0 58px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-around;
}

.map-left {
  flex: 0 0 300px;
}

.map-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--or);
  margin-bottom: 26px;
}

.map-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--or);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: underline;
  margin-bottom: 26px;
  transition: color 0.2s;
}

.map-all-link:hover {
  color: var(--ordk);
}

.legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leg-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leg-pin {
  font-size: 19px;
  line-height: 1;
}

.leg-pin.red {
  color: #e84040;
}

.leg-pin.gold {
  color: var(--or);
}

.map-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.map-right svg {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
}

/* Map pin hover animation */
.mumbai-svg circle {
  transition:
    r 0.2s,
    opacity 0.2s;
  cursor: pointer;
}

.mumbai-svg circle:hover {
  r: 8;
}

/* ============================================================
         LIFESTYLE
         ============================================================ */
.sec-lifestyle {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.ls-parallax {
  position: absolute;
  inset: -20% 0;
  will-change: transform;
}

.ls-bg {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
}

.ls-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.ls-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  color: #fff;
  max-width: 960px;
  height: 100dvh;
}

.ls-sub {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.ls-title {
  font-size: clamp(26px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ls-title span {
  color: var(--or);
}

.ls-tag {
  font-size: 18px;
  opacity: 0.72;
  font-weight: 400;
}

/* ============================================================
         FOOTER — Fixed sticky bar at bottom
         ============================================================ */
footer#contact-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: transparent;
  padding: 0;
}

.ft-bottom {
  margin: 0 58px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ft-bottom a {
  font-size: 14px;
  color: var(--or);
  font-weight: 700;
  transition: color 0.2s;
}

.ft-bottom a:hover {
  color: #fff;
}

.ft-soc-sec {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-socials {
  display: flex;
  gap: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  padding-right: 14px;
}

.ft-soc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}

.ft-soc:hover {
  background: var(--ordk);
}

.ft-soc i {
  color: white !important;
}

.footer-copy {
  font-size: 12px;
  font-weight: 600;
  color: var(--or);
}

.hdr-logo img {
  width: 130px;
}

/* On light sections make footer text dark */
footer#contact-footer.dark-footer .ft-bottom a {
  color: var(--or);
}

footer#contact-footer.dark-footer .footer-copy {
  color: #555;
}

footer#contact-footer.dark-footer .ft-socials {
  border-right-color: #ddd;
}

@media (max-width: 991px) {
  .ft-bottom {
    margin: 0 24px;
  }

  .ft-soc-sec {
    flex-direction: row;
  }

  #hdr.scrolled .hdr-nav {
    display: none !important;
  }

  #hdr.scrolled .hdr-scroll-right {
    display: flex !important;
  }
}

@media (max-width: 680px) {
  .ft-bottom {
    margin: 0 16px;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
  }

  .ft-socials {
    border-right: none;
    padding-right: 0;
  }
}

/* ============================================================
         ENQUIRE MODAL
         ============================================================ */
.enq-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.enq-box {
  background: #fff;
  width: 380px;
  height: 100%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  position: relative;
  animation: slideFromRight 0.35s ease;
}

@keyframes slideFromRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.enq-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.enq-close:hover {
  color: var(--or);
}

.enq-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #222;
  margin-top: 20px;
}

.enq-box select,
.enq-box input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.enq-box select:focus,
.enq-box input:focus {
  border-color: var(--or);
}

.enq-submit {
  background: var(--or);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.enq-submit:hover {
  background: var(--ordk);
}

/* ============================================================
         BACK TO TOP
         ============================================================ */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    background 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

#btt.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

#btt:hover {
  background: var(--ordk);
}

/* ============================================================
         SCROLL REVEAL ANIMATIONS
         ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--d, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--d, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--d, 0s);
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-card.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
         RESPONSIVE
         ============================================================ */
@media (max-width: 1200px) {
  .hdr-wrap,
  .ov-grid,
  .ov-track,
  .ov-stats,
  .map-inner,
  .ft-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .proj-outer {
    padding: 0 40px;
  }

  .ls-content {
    padding: 0 40px;
  }

  .hero-caption {
    left: 40px;
    right: 80px;
  }

  .hero-bar {
    padding-left: 40px;
  }

  .proj-card {
    min-width: calc(50% - 16px) !important;
  }
}

@media (max-width: 900px) {
  .ov-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .ov-body {
    max-width: 100%;
  }

  .ov-yr {
    border-left: none;
    border-top: 3px solid #eee;
    padding: 16px 0 0;
    text-align: center;
  }

  .ov-knowmore {
    justify-content: center;
  }

  .ov-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .map-inner {
    flex-direction: column;
    gap: 40px;
  }

  .map-left {
    flex: none;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .sec-overview {
    padding: 90px 20px 50px;
  }

  .ov-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0;
    text-align: center;
  }

  .ov-left,
  .ov-right {
    width: 100%;
  }

  .ov-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .ov-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .yr-label {
    text-align: center;
  }

  .ov-stats {
    padding: 25px 10px;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat {
    width: 100%;
    text-align: center;
  }

  .sec-overview svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: auto;
  }

  .hdr-logo img {
    width: 90px;
  }

  .ft-soc-sec {
    flex-direction: column !important;
  }
}

@media (max-width: 680px) {
  :root {
    --hh: 60px;
  }

  .hdr-wrap {
    padding: 0 20px;
  }

  .hdr-logo svg {
    height: 46px;
  }

  #hdr.at-top .hdr-nav {
    display: none !important;
  }

  #hdr.at-top .hdr-scroll-right {
    display: flex !important;
  }

  #hdr.at-top .menu-btn {
    color: #fff;
  }

  #hdr.at-top .menu-btn svg line {
    stroke: #fff;
  }

  #hdr.at-top .scrolled-enq {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
  }

  #hdr.at-top .scrolled-enq:hover {
    background: var(--or);
    border-color: var(--or);
  }

  .hero-caption {
    left: 24px;
    right: 60px;
    bottom: 90px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -0.5px;
  }

  .hero-bar {
    padding: 12px 24px;
  }

  .hero-arrows {
    right: 12px;
  }

  .h-arr {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .ov-grid {
    padding: 0 24px;
  }

  .ov-track {
    padding: 0 24px;
  }

  .ov-stats {
    padding: 20px 24px;
  }

  .proj-outer {
    padding: 0 24px;
  }

  .proj-card {
    min-width: calc(100% - 16px) !important;
  }

  .proj-img {
    height: 300px;
  }

  .map-inner {
    padding: 0 24px;
  }

  .ls-content {
    padding: 0 24px;
  }

  .ls-title {
    font-size: 28px;
  }

  .ft-bottom {
    padding: 16px 24px;
  }

  .enq-box {
    width: 100%;
  }

  .drw {
    width: 100%;
  }
}

.ft-soc i {
  color: white !important;
}

.ft-soc-sec {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AUTO TEXT COLOR — handled in footer CSS above */

.w-23 {
  width: 23%;
}

/* =========================================
         NAGPUR MAP
         ========================================= */
.nagpur-map {
  width: 100%;
  max-width: 600px;
}

/* =========================================
         MAP PIN
         ========================================= */
.map-pin {
  cursor: pointer;
}

.pin-icon {
  transform-origin: center;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.tooltip-box {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.35s ease;
  pointer-events: none;
}

.map-pin:hover .tooltip-box {
  opacity: 1;
  transform: translateX(0);
}

.tooltip-title {
  font-size: 10px;
  font-weight: 800;
  fill: #111;
}

.tooltip-location {
  font-size: 8px;
  font-weight: 600;
  fill: #777;
}

/* Small Laptop + MacBook */
@media (min-width: 992px) and (max-width: 1366px) {
  .proj-img {
    height: 340px;
  }

  .sec-title {
    margin-bottom: 30px;
  }

  .nagpur-map {
    width: 100%;
    max-width: 400px;
  }

  .ov-track {
    margin: 24px auto 0px;
  }
}

.sec-overview,
.sec-projects,
.sec-map,
.sec-lifestyle {
  width: 100%;
}

/* ── fullPage.js section rules ── */
.fp-section {
  background: #fff;
}
