body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

/* Popup box */

.popup-overlay {

position: fixed;
top: 0;
left: 0;

width: 100%;
height: 100%;

background: rgba(0,0,0,0.55);
backdrop-filter: blur(10px);

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

z-index: 9999;

}


/* Card */

.popup-card {

width: 360px;
background: white;

border-radius: 12px;
overflow: hidden;

box-shadow: 0px 20px 60px rgba(0,0,0,0.45);

animation: popupFade .4s ease;

}


/* Header */

.popup-header {

background: #1fa34a;

padding: 22px 20px;

text-align: center;

color: white;

position: relative;

}


.popup-header h2 {

margin: 0;
font-size: 22px;

}


.popup-header p {

font-size: 13px;
margin-top: 4px;

}


/* Close button */

.popup-close {

position: absolute;

right: 15px;
top: 10px;

font-size: 22px;

cursor: pointer;

}


/* Form */

.popup-form {

padding: 25px;

}


.popup-form label {

display: block;

font-size: 14px;

margin-bottom: 6px;

font-weight: 500;

}


.popup-form input {

width: 100%;

padding: 12px;

margin-bottom: 18px;

border-radius: 8px;

border: 1px solid #ddd;

font-size: 14px;

}


/* Button */

.popup-form button {

width: 100%;

padding: 14px;

background: #1fa34a;

color: white;

border: none;

border-radius: 8px;

font-size: 16px;

font-weight: 600;

cursor: pointer;

transition: .3s;

}


.popup-form button:hover {

background: #168a3c;

}


/* Animation */

@keyframes popupFade {

from {

transform: translateY(40px);
opacity: 0;

}

to {

transform: translateY(0);
opacity: 1;

}

}
/* Popup box */

/* whatsapp */
.whatsapp-float {
  position: fixed;
  
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  z-index: 1050;

  border-radius: 50%;
  overflow: hidden;
}

/* Image styling */
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* 📱 Responsive using clamp (BEST WAY) */
.whatsapp-float {
  width: clamp(45px, 10vw, 60px);
  height: clamp(45px, 10vw, 60px);

  bottom: clamp(10px, 4vw, 20px);
  right: clamp(10px, 4vw, 20px);
}
/* whatsapp */

/*PROJECT AMENTIES*/
.amenity-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;   /* 🔥 THIS ADDS ROW-WISE GAP */
  padding: 25px;
  text-align: center;
 
}
.row {
  row-gap: 55px;   /* 🔥 controls vertical gap only */
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #eaf7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
   color: #2f855a; 
   font-size: 25px;
}

.icon-box img {
  width: 30px;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 60px;       /* line width */
  height: 4px;       /* thickness */
  background: #28a745; /* green color */
  display: block;
  margin: 8px auto 0; /* space + center */
  border-radius: 2px;
}


/*PROJECT AMENTIES*/

/*Strategic Location Advantages*/
.location-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* COLORS */
.blue { background: #e7f0ff; }
.purple { background: #efe7ff; }
.pink { background: #ffe7f0; }
.red { background: #ffeaea; }
.yellow { background: #fff6d9; }

.location-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  
}

.location-card ul li span {
  background: #d4f5dd;
  color: #0a7a33;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 520;
}
/*Strategic Location Advantages*/
.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* custom */
/* HERO SECTION */
/* Mobile fix *//* HERO SECTION */
.hero {
  background: #ffffff !important;   /* ✅ white background */
  position: relative;

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

  height: 100vh;
  text-align: center;

  padding: 20px 0;
}

/* ❌ REMOVE DARK OVERLAY */
.hero::before {
  display: none;
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 800px;
  color: #000;   /* ✅ black text for white bg */
}

/* TAG */
.tag {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;

  background: rgba(34, 197, 45, 0.1);
  color: #22c55e !important;

  font-size: 12px;
  margin-bottom: 15px;
}

/* HEADING */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero h1 span {
  background: linear-gradient(
    90deg,
    #1c8f95 0%,
    #2aa79c 30%,
    #3fb07d 60%,
    #62c25c 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* TEXT */
.hero p {
  font-size: 18px;
  margin: 15px 0 25px;
  opacity: 0.8;
}

/* IMAGE */
.hero-image {
  margin-top: 30px;
  width: 100%;

  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;

  border-radius: 10px;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .hero {
    height: auto !important;       /* remove full screen height */
    min-height: unset !important;

    display: block;                /* shrink to content */
    padding: 20px 10px;

    margin: 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-image {
    margin-top: 15px;
  }

  .hero-image img {
    max-height: 240px;
    object-fit: cover;
  }
}
/* nav bar */

/* NAVBAR */
.navbar {
  width: 100%;
  background: #f8f9fa;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-container {
  width: 100%;
  max-width: 1400px;  
  margin: auto;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #1c8f95 0%,
    #2aa79c 30%,
    #3fb07d 60%,
    #62c25c 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

.logo span {
  color: #22c55e;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
   margin-left: auto; 
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #22c55e;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #22c55e;
  color: white !important;
  padding: 8px 18px;
  border-radius: 20px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    margin-left: auto;   /* pushes it to right */
      position: absolute;
  right: 20px;
  top: 15px;
  }

  .navbar {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
/* end navbar */

/* slider section */
.slider_section {
  padding: 75px 0;
  color: #0b0b0b;
}

.slider_section .container {
  position: relative;
  z-index: 2;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail-box h1 {
  color: #3554d1;
  font-weight: bold;
  font-size: 4rem;
}

.slider_section .detail-box h1 span {
  color: #0f2480;
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.slider_section .detail-box .btn-box {
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: transparent;
  color: #3554d1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #3554d1;
  border-radius: 25px;
  margin-bottom: 75px;
}

.slider_section .detail-box .btn-box a:hover {
  background-color: #3554d1;
  border-color: transparent;
  color: #ffffff;
}

.find_section {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.find_section form {
  padding: 10px 45px;
  -webkit-box-shadow: 0px 0px 20px 11px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 20px 11px rgba(0, 0, 0, 0.09);
  background-color: #ffffff;
}

.find_section form .form-control {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  height: 45px;
  margin: 10px 0;
}

.find_section form button {
  background-color: #f97616;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  height: 45px;
  width: 100%;
  margin: 10px 0;
}

/* ===== ABOUT SECTION ===== */

/* SECTION */
.about_section {
  padding: 80px 0;
  background: #f9fafb;
}

/* HEADING */
.about_heading {
  text-align: center;
  margin-bottom: 50px;
}

.about_heading h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about_heading h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #22c55e;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about_heading p {
  margin-top: 10px;
  color: #16a34a;
  font-style: italic;
}

/* TEXT */
.about_text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
}

/* IMAGE CARD */
.about_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.about_card img {
  width: 100%;
  border-radius: 15px;
}

/* OVERLAY */
.about_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.about_overlay h5 {
  margin: 0;
  font-size: 18px;
}

.about_overlay p {
  font-size: 13px;
  margin-top: 5px;
}
/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .about_heading h2 {
    font-size: 24px;
  }

  .about_text {
    text-align: center;
    margin-bottom: 20px;
  }

}
@media (max-width: 768px) {

  .about_section .heading_container h2 {
    font-size: 24px;
  }

  .about_section .row {
    text-align: center;
  }

  .about_section .detail-box {
    margin-top: 20px;
  }

}

/* end about */

/* footer section*/
.footer {
  background: linear-gradient(180deg, #071321, #020a17);
  padding: 60px 80px 30px;
  color: #cfd8e3;
}

.fcontainer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.brand-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.brand-title span {
   background: linear-gradient(
    90deg,
    #1c8f95 0%,
    #2aa79c 30%,
    #3fb07d 60%,
    #62c25c 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;

}

.brand-desc {
  margin-top: 18px;
  line-height: 1.8;
  color: #9fb2c7;
  text-align: justify;
  text-justify: inter-word;
    max-width: 350px;  /* improves spacing */
}

.phone {
  display: flex;
  align-items: center;
  margin-top: 22px;
  font-size: 16px;
}

.phone i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #22c55e;
}

.quick-links h3 {
  margin-bottom: 18px;
  color: white;
}

.quick-links a {
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: #9fb2c7;
  transition: 0.3s;
}
.contact-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 10px 40px rgba(0,0,0,0.35);
  max-width: 520px;
}

.contact-box h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 6px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  color: #6b7d93;
  font-size: 14px;
}

.contact-box p {
  color: #9fb2c7;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #1f2d44;
  background: #081526;
  color: white;
  font-size: 15px;
  outline: none;
}

.contact-box textarea {
  height: 130px;
  resize: none;
  margin-bottom: 15px;
}

.contact-box button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: #16a34a;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-box button:hover {
  background: #15803d;
}

/* end footer section*/
/* =========================
   PLOT SECTION (SCOPED)
========================= */

.plot-section {
  background: linear-gradient(135deg, #0f5132, #14532d);
  position: relative;
  z-index: 1;
}

/* Title underline (ONLY for plot section) */
.plot-section .section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #28a745;
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
}

/* Card */
.plot-section .plot-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  position: relative;
  transition: 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.plot-section .plot-card:hover {
  transform: translateY(-5px);
}

/* Highlight card */
.plot-section .plot-card.active {
  background: #16a34a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Badge */
.plot-section .badge-popular {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #ffc107;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
}

/* Icon */
.plot-section .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}

/* Text */
.plot-section .plot-card h3 {
  font-size: 28px;
  font-weight: bold;
}

.plot-section .plot-card h3 span {
  font-size: 14px;
  font-weight: normal;
}

.plot-section .plot-card p {
  margin: 10px 0;
  opacity: 0.9;
}

/* Button */
.plot-section .btn-custom {
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 500;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  /* Plot */
  .plot-section .plot-card {
    padding: 20px;
  }

  .plot-section .plot-card h3 {
    font-size: 22px;
  }


}
/* ===== MAP SECTION ===== */

.location_section {
  background: #f3f5f7;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* Container */
.location_container {
  max-width: 1200px;
  margin: auto;
  border-radius: 25px;
  padding: 40px 50px;
}

/* Heading */
.location_heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2d3d;
}

/* Map Box */
.location_map_box {
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Map */
.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 15px;
  overflow: hidden;
}

/* Iframe Fit */
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 992px) {
  .location_container {
    padding: 30px;
  }

  .location_heading {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .location_section {
    padding: 60px 0;
  }

  .location_container {
    padding: 20px;
    border-radius: 20px;
  }

  .location_heading {
    font-size: 22px;
  }

  .location_map_box {
    padding: 8px;
  }
}

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

  .location_heading {
    font-size: 20px;
  }

  .location_container {
    padding: 15px;
  }
}@media (min-width: 992px) {
  .map-responsive {
    padding-bottom: 40%; /* reduce height */
  }
}

/*# sourceMappingURL=style.css.map */
  #langBtn {
      padding: 8px 18px;
      border-radius: 25px;
      border: none;
      background: #2ecc71;
      color: white;
      font-size: 14px;
      cursor: pointer;
    }