:root {
  --green: #78be20;
  --green-dark: #5a9118;
  --green-light: #a3d45a;
  --green-pale: #eef6e0;
  --green-muted: #d4edaa;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f0;
  --gray-200: #e2e8d8;
  --gray-400: #aab89a;
  --gray-600: #6b7a5e;
  --gray-800: #2d3a25;
  --text: #1e2a16;
  --text-muted: #5a6b4a;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
   font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
}

/* ── NAVBAR ── */
/* ===== NAVBAR FIX ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Body offset for fixed header */
body {
  padding-top: 80px;
}

/* Logo */
.navbar-brand img {
  height: 55px;
}

/* Nav links */
.nav-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #222 !important;
}

.nav-link.active,
.nav-link:hover {
  color: #78be20 !important;
}

/* Toggler fix */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Ensure icon visible */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile menu style */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
  }

  .nav-link {
    padding: 10px 0 !important;
  }
}

/* ── HERO SLIDER ── */
.hero-slider-wrap { position: relative; }
.hero-owl .item {
  position: relative;
  height: 92vh; min-height: 560px;
  overflow: hidden;
}
.hero-owl .item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
/*.hero-owl .owl-item.active .item img { transform: scale(1.06); }*/
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-slide-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 5%;
}
.hero-slide-inner { max-width: 620px; }
.hero-tag {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.35rem 1rem; margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08; color: #fff; margin-bottom: 0.75rem;
}
.hero-title span { color: var(--green-light); }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.8;
  max-width: 480px; margin-bottom: 2rem; font-weight: 400;
}
.hero-price {
  border-left: 3px solid var(--green);
  padding-left: 1.1rem; margin-bottom: 2rem; display: inline-block;
}
.hero-price .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.65); }
.hero-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--green-light); line-height: 1.1; }
.hero-price .note { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.btn-primary-green {
  background: var(--green); color: #fff; border: none;
  padding: 0.85rem 2rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-primary-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-green {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline-green:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* Hero slider nav */
.hero-owl .owl-nav { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); pointer-events: none; }
.hero-owl .owl-nav button { pointer-events: all; }
.hero-owl .owl-prev, .hero-owl .owl-next {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center; justify-content: center;
  color: #fff !important; font-size: 1.1rem !important;
  backdrop-filter: blur(6px);
  transition: all 0.2s !important;
}
.hero-owl .owl-prev { left: 24px; }
.hero-owl .owl-next { right: 24px; }
.hero-owl .owl-prev:hover, .hero-owl .owl-next:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
}
/* Hero dots */
.hero-owl .owl-dots {
  position: absolute; bottom: 24px; width: 100%; text-align: center;
}
.hero-owl .owl-dots .owl-dot span {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.35) !important;
  margin: 0 3px; transition: all 0.3s;
}
.hero-owl .owl-dots .owl-dot.active span {
  background: var(--green) !important; width: 44px;
}
/* Slide counter */
.hero-counter {
  position: absolute; bottom: 28px; right: 40px; z-index: 10;
  color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 0.12em;
}
.hero-counter span { color: #fff; font-weight: 700; font-size: 1rem; }
/* Slide caption animate */
.hero-slide-inner .hero-tag,
.hero-slide-inner .hero-title,
.hero-slide-inner .hero-subtitle,
.hero-slide-inner .hero-price,
.hero-slide-inner .d-flex {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.owl-item.active .hero-slide-inner .hero-tag { opacity:1; transform:none; transition-delay:0.3s; }
.owl-item.active .hero-slide-inner .hero-title { opacity:1; transform:none; transition-delay:0.45s; }
.owl-item.active .hero-slide-inner .hero-subtitle { opacity:1; transform:none; transition-delay:0.6s; }
.owl-item.active .hero-slide-inner .hero-price { opacity:1; transform:none; transition-delay:0.72s; }
.owl-item.active .hero-slide-inner .d-flex { opacity:1; transform:none; transition-delay:0.85s; }

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--green);
  padding: 0.9rem 0;
}
.booking-bar .b-item {
  color: #fff; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.45rem;
}
.booking-bar .b-item i { font-size: 1rem; opacity: 0.85; }
.booking-bar .b-sep { color: rgba(255,255,255,0.35); }

/* ── SECTION COMMON ── */
.section-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem;
}
.section-tag::after { content: ''; flex: 1; max-width: 2.5rem; height: 2px; background: var(--green); }
.section-title { font-size: clamp(1.9rem, 2.5vw, 2.8rem); color: var(--gray-800); line-height: 1.15; }
.section-title em { color: var(--green); font-style: normal; }
.section-divider { width: 3rem; height: 3px; background: var(--green); margin: 1.2rem 0 1.5rem; border-radius: 2px; }

/* ── OVERVIEW ── */
.overview-section { background: var(--white); padding: 3rem 0; }
.feature-chip {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 1rem; margin-bottom: 0.5rem;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  font-size: 0.83rem; color: var(--text); font-weight: 600;
  border-radius: 0 4px 4px 0;
  transition: all 0.2s;
}
.feature-chip:hover { background: var(--green-muted); }
.feature-chip i { color: var(--green); font-size: 1rem; }
.overview-img-main { width: 100%; border-radius: 6px; box-shadow: 0 16px 48px rgba(120,190,32,0.12); }
.overview-stat-card {
  background: var(--green); color: #fff; border-radius: 4px;
  padding: 1.2rem 1.5rem; text-align: center;
}
.overview-stat-card .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.overview-stat-card .stat-label { font-size: 0.72rem; opacity: 0.85; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CONFIG TABLE ── */
.config-section { background: var(--gray-100); padding: 3rem 0; }
.config-table-wrap { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.config-table { width: 100%; margin: 0; }
.config-table thead th {
  background: var(--green); color: #fff;
  font-family: 'Nunito Sans', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 1.25rem; border: none;
}
.config-table tbody td {
  padding: 1.1rem 1.25rem; font-size: 0.88rem; color: var(--text);
  border-bottom: 1px solid var(--gray-200); vertical-align: middle;
}
.config-table tbody tr:last-child td { border-bottom: none; }
.config-table tbody tr:hover td { background: var(--green-pale); }
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-dark); }
.btn-get-price {
  background: var(--green); color: #fff; border: none;
  padding: 0.4rem 1.1rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px;
  transition: all 0.2s;
}
.btn-get-price:hover { background: var(--green-dark); }

/* ================= AMENITIES SECTION ================= */
.amenities-section {
  background: var(--gray-100);
  padding: 4rem 0;
}

/* Grid spacing fix */
.amenities-section .row {
  row-gap: 30px;
}

/* ================= CARD ================= */
.amenity-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  min-height: 190px;

  border: 1px solid #eef2e6;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Soft gradient overlay */
.amenity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120,190,32,0.08), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

/* Hover effect */
.amenity-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 20px 45px rgba(120,190,32,0.18);
}

.amenity-card:hover::before {
  opacity: 1;
}

/* Optional active card */
.amenity-card.active {
  border: 2px solid var(--green);
  box-shadow: 0 15px 35px rgba(120,190,32,0.2);
}

/* ================= ICON ================= */
.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;

  background: linear-gradient(135deg, #78be20, #5a9118);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 22px rgba(120,190,32,0.25);
  transition: all 0.35s ease;
}

/* Icon image */
.amenity-icon img {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Hover animation */
.amenity-card:hover .amenity-icon {
  transform: scale(1.12) rotate(6deg);
}

/* ================= TEXT ================= */
.amenity-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.4px;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .amenity-card {
    padding: 25px 15px;
    min-height: 170px;
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
  }

  .amenity-icon img {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .amenities-section {
    padding: 3rem 0;
  }

  .amenity-card {
    min-height: 170px;
    padding: 20px 12px;
  }

  .amenity-name {
    font-size: 0.85rem;
  }
}

/* ── AWARDS ── */
.awards-section { background: var(--white); padding: 3rem 0; }
.border_right {
    border-left: solid 1px #e4bb61;
    margin: 3% 0;
    height: 200px;
}
.award-card {
  background: var(--white); border-radius: 8px; padding: 2rem;
  text-align: center; box-shadow: 0 4px 20px rgba(120,190,32,0.1);
  transition: all 0.25s; height: 100%;
}
.award-card:hover { box-shadow: 0 12px 40px rgba(120,190,32,0.2); transform: translateY(-3px); }
.award-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.award-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.4rem; }
.award-body { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ── GALLERY CAROUSEL ── */
.gallery-section { background: var(--gray-100); padding: 3rem 0; }
/*.gallery-owl .item { padding: 0 8px; }
*//*.gallery-owl .item img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; }*/
.owl-theme .owl-dots .owl-dot span { background: var(--green-muted); }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background: var(--green); }
.owl-theme .owl-nav [class*="owl-"] {
  background: var(--green) !important; color: #fff !important; border-radius: 50% !important;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem !important;
}
.owl-theme .owl-nav [class*="owl-"]:hover { background: var(--green-dark) !important; }
.gallery-owl .owl-nav{    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;}
    .gallery-owl .owl-prev, .gallery-owl .owl-next {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center; justify-content: center;
  color: #fff !important; font-size: 1.1rem !important;
  backdrop-filter: blur(6px);
  transition: all 0.2s !important;
}
.gallery-owl .owl-prev { left: -55px; }
.gallery-owl .owl-next { right: -55px; }
.gallery-owl .owl-nav button {
    pointer-events: all;
}
.image-set {
    text-align: center;
    border: solid 0px #fff;
}
.gallery-owl .owl-item img {
    border-radius: 8px;
}
.image-set .hover-content {
-webkit-transition-duration: 500ms;
-o-transition-duration: 500ms;
transition-duration: 500ms;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.4);
opacity: 0;
z-index: 10;
cursor:zoom-in;
}
.image-set .hover-content i {
position: absolute;
top: 50%;
left: 50%;
margin-top: 0;
margin-left: -26px;
z-index: 100;
display: inline-block;
width: 52px;
height: 52px;
border-radius: 50%;
background-color: #000;
text-align: center;
line-height: 50px;
font-size: 30px;
color: #fff;
font-style: inherit;
}
.image-set .hover-content:hover, .image-set .hover-content:focus{opacity: 1; visibility: visible;}

.gallery_desc {
    position: absolute;
    bottom: 10px;
    left: 0px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
}
.gallery_desc h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin: 0px;
    padding: 0;
    text-transform: uppercase;
}
.img .img_tag {
    text-align: right;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 0px;
    width: 100%;
}
.plan-image-box {
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 10px;
    text-align: center; position: relative;
}
.plan-content-box {
    background: var(--green-pale);
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    left: 0;
    z-index: 99;
}
.plan-content-box h3 {
    font-weight: 600;
    margin-bottom: 20px;
}
.plan-content-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-content-box ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}
/*Feedback floating form*/
#feedback { position: fixed; right: 0; display: none; top: 20%; z-index: 999; margin-left: -3px; margin-bottom: -3px; background: transparent; }
#feedback-form { float: right; width: 320px; background: rgba(255, 255, 255, 0.85); height: 100%; padding:0px 0px 15px; z-index: 1000; background-clip: 'padding-box'; border: 1px solid rgba(0, 0, 0, .2); border-radius: 0px; }
#feedback-tab {     background: url(../images/enquiry_btn_colour.png) no-repeat bottom;
    float: left;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
    text-align: center;
    width: 44px;
    height: 228px; }
.enqury_btn { background: url(../images/enquiry_btn_colour.png) no-repeat top !important; width:44px; height:228px; }
#feedback-form .form-control{border-color: #333; padding-left: 5px;}
.feedback-header{ background: #151618; color: #fff; padding: 8px 20px; text-align: left; margin-bottom: 15px; font-size: 18px; }
.contact-form input, .contact-form textarea {  margin-bottom: 20px;height: 40px;
    margin-bottom: 20px; padding: 0px;  width: 100%; border: 0; border-bottom: solid 1px #8d8d8d !important;
    background: transparent;
    color: #000;
    border-radius: 0} 

/* ── TESTIMONIAL CAROUSEL ── */
.testimonial-section { background: var(--white); padding: 3rem 0; }
.testimonial-card {
  background: var(--white); border-radius: 8px; padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin: 1rem 0.5rem;
  text-align: center;
}
.testimonial-card .quote { font-size: 2rem; color: var(--green); line-height: 1; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.testimonial-card .author-name { font-weight: 700; color: var(--text); font-size: 0.88rem; }
.testimonial-card .author-unit { font-size: 0.72rem; color: var(--green); }
.stars { color: var(--green); font-size: 0.85rem; margin-bottom: 1rem; }

/* ── CONNECTIVITY ── */
.connectivity-section { background: var(--white); padding: 3rem 0; }
.conn-card {
  background: var(--green-pale); border-radius: 8px; padding: 1.75rem 1rem;
  border-bottom: 3px solid var(--green); text-align: center; transition: all 0.25s;
}
.conn-card:hover { background: var(--green); }
.conn-card:hover .conn-time, .conn-card:hover .conn-unit, .conn-card:hover .conn-place { color: #fff; }
.conn-time { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.conn-unit { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 0.4rem; }
.conn-place { font-size: 0.82rem; font-weight: 600; color: var(--text); }

/* ── LOCATION ── */
.location-section { background: var(--gray-100); padding: 5rem 0; }
.map-frame { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.map-frame iframe { display: block; border: none; }
.address-card {
  background: var(--white); border-radius: 8px; padding: 1.5rem;
  border-left: 4px solid var(--green); margin-bottom: 1rem;
}
.address-card .a-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green); font-weight: 700; margin-bottom: 0.25rem; }
.address-card .a-value { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── BANKING ── */
.banking-section { background: var(--white); padding: 4rem 0; }
.bank-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 700;
  font-size: 0.85rem; color: var(--text-muted); transition: all 0.2s;
  white-space: nowrap;
}
.bank-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

/* ── CONTACT ── */
.contact-section { background: var(--green-pale); padding: 3rem 0; }
.contact-form-card { background: var(--white); border-radius: 10px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(120,190,32,0.12); }
.form-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-200); border-radius: 4px;
  font-size: 0.88rem; padding: 0.7rem 1rem; color: var(--text);
  transition: border-color 0.2s; background: var(--white);
}
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(120,190,32,0.12); outline: none; }
.btn-submit {
  background: var(--green); color: #fff; border: none; width: auto;
  padding: 0.9rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 4px; transition: all 0.2s;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.contact-info-block { padding-top: 1rem; }
.rera-card { background: var(--white); border-radius: 8px; padding: 1.5rem; border-left: 4px solid var(--green); }
.rera-card .rc-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green); font-weight: 700; margin-bottom: 0.3rem; }
.rera-card .rc-val { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.info-row { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.25rem; }
.info-icon-box {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem;
}
.info-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green); font-weight: 700; margin-bottom: 0.15rem; }
.info-value { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: #1d1d1d; color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--green-light); font-weight: 700; }
.footer-legal { font-size: 0.7rem; line-height: 1.7; margin-top: 0.6rem; }
.footer-rera { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.disclaimer .rera {
    display: block;
    margin: 20px 0;
    background: #78be20;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    padding: 8px 15px;
    text-align: center;
}
.disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: normal;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 300;
}
/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MISC ── */
.text-green { color: var(--green) !important; }
.bg-green { background: var(--green) !important; }
.badge-rera { background: var(--green-pale); color: var(--green-dark); font-size: 0.68rem; font-weight: 700; padding: 0.35rem 0.75rem; border-radius: 50px; letter-spacing: 0.05em; }
.mobilebtn {
    display: none;
}
a.close-popup {
    border-radius: 50%;
    position: absolute;
    right: -6px;
    background: #78be20;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    width: 30px;
    height: 30px;
    font-size: 24px;
    text-align: center;
    line-height: 28px;
    opacity: 1 !important;
    top: -8px;
    text-shadow: none;
    text-decoration: none;
}
.modal-body {
    padding: 0 0 15px 0;
}
.heading-popup {
    border: 0px solid #ede692;
    border-bottom: 0;
    background: #202020;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
}
.heading-popup h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: #78be20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #5a9118;
}
/* Map card */
.map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Map image */
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom effect */
.map-card:hover img {
  transform: scale(1.05);
}

/* Map button */
.map-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: #78be20;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-btn:hover {
  background: #5a9118;
}


/* Mobile Fix */
@media (max-width: 768px) {
  .map-card {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .hero-owl .item {
    position: relative;
    height: 100%;
    min-height: auto;
    overflow: hidden;
}
.gallery-owl .owl-next{    right: 0px;}
.gallery-owl .owl-prev {
    left: 0;
}
.border_right{height: 0}
.mobilebtn {    display: block!important;}
  .mobilebtn {  width: 100%; float: left; position: fixed; bottom: 0; left: 0; margin: 0px; z-index: 99;}
  .mobilebtn a button {
    width: 100%;
    float: left;
    margin-right: 0;
    color: #fff;
    border: none;
    line-height: 48px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
     background: #78be20
  
}
    #feedback {
        display: none !important;
    }
    .conn-card{min-height: 180px}
}