@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}
:root {
  --bg: #ffffff;
  --text: #0b1b2b; /* dark blue */
  --muted: #5b6b7a;
  --gold: #c79a3d; /* BBG-ish gold */
  --gold2: #f5c77a; /* lighter gold */
  --line: rgba(11, 27, 43, 0.12);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  --radius: 14px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth !important;
}

@media (min-width: 1900px) {
  .container {
    max-width: 1760px;
  }
}

@media (min-width: 1700px) and (max-width: 1899px) {
  .container {
    max-width: 1560px;
  }
}

@media (min-width: 1600px) and (max-width: 1699px) {
  .container {
    max-width: 1460px;
  }
}

.lang-switch {
  display: flex;
  background: rgba(11, 27, 43, 0.04);
  border: 1px solid rgba(11, 27, 43, 0.12);
  border-radius: 999px;
  padding: 4px;
  overflow: hidden;
  width: fit-content;
  /* margin: auto; */
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  color: rgba(11, 27, 43, 0.65);
  border-radius: 999px;
}
.lang-btn.active {
  background: linear-gradient(135deg, #c79a3d, #f5c77a);
  color: #1a1406;
  box-shadow: 0 6px 16px rgba(199, 154, 61, 0.28);
}
/* ================= HERO ================= */

.navbar-custom {
  background: transparent; /* avoid full-width white bar */
}

.navbar-custom .container {
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(11, 27, 43, 0.1);
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #1d2b2a;
  padding: 10px 14px !important;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  background: rgba(199, 154, 61, 0.12);
  color: #0b1b2b;
}

.navbar-nav .nav-link:active {
  background: rgba(199, 154, 61, 0.12);
  color: #0b1b2b;
}

.hero {
  position: relative;
  min-height: 80vh;
  height: auto;
  overflow: hidden;
  /* padding-top: 20px; */
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1.02);
}
.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 27, 43, 0.78) 0%,
    rgba(11, 27, 43, 0.55) 45%,
    rgba(11, 27, 43, 0.3) 70%,
    rgba(11, 27, 43, 0.18) 100%
  );
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.swiper-slide {
  height: initial;
}
.bannerSwiper img {
  height: 100%;
}

.hero-left {
  color: #fff;
  padding: 10px 0;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: 46px; /* slightly larger */
  line-height: 1.06;
  color: #f5c77a;
  letter-spacing: -0.7px;
  font-weight: 800;
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}
/* ================= FORM CARD ================= */
.hero-right {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: 1;
  width: 420px;
}

.form-card {
  width: 100%;
  min-width: -webkit-fill-available;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(11, 27, 43, 0.12);
  padding: 20px;
}

.form-title {
  margin: 0 0 4px;
  font-size: 18px;
  color: #000;
  text-align: center;
}
.form-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.form-success {
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(199, 154, 61, 0.12);
  border: 1px solid rgba(199, 154, 61, 0.35);
  color: var(--text);
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.field span {
  font-size: 12px;
  color: var(--muted);
}
.field input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  outline: none;
  font-size: 14px;
}

.field input:focus {
  border-color: rgba(199, 154, 61, 0.7);
  box-shadow: 0 0 0 3px rgba(199, 154, 61, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  transition: transform 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1406;
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-block {
  width: 100%;
  border-radius: 12px;
}

.form-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.call-now {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text);
  background: rgba(11, 27, 43, 0.06);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
}

.sec_proj {
  padding: 60px 0;
}
.section-title {
  color: #097a46;
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.section-title::before,
.section-title::after {
  content: "";
  background-color: #097a46;
  width: 60px; /* longer looks more premium */
  height: 2px;
  opacity: 0.85;
  flex-shrink: 0;
  position: relative;
}
.section-title::before {
  margin-right: 14px;
}
.section-title::after {
  margin-left: 14px;
}
.section-text {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}
.proj_sec p {
  font-size: 16px;
  margin: 0 auto 18px;
  max-width: 850px;
  color: #1d2b2a;
  line-height: 1.75;
}

/* Bullet list base */
.proj_list {
  list-style: none; /* remove default bullets */
  padding-left: 0; /* reset */
  margin: 14px auto 0;
  max-width: 850px;
}
/* proj_sec */
.proj_sec {
  padding: 70px 0;
  background: linear-gradient(
    180deg,
    rgba(207, 156, 42, 0.45),
    rgba(207, 156, 42, 0.25)
  );
}
.proj_head {
  color: #097a46;
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.proj_head::before,
.proj_head::after {
  content: "";
  background-color: #097a46;
  width: 60px; /* longer looks more premium */
  height: 2px;
  opacity: 0.85;
  flex-shrink: 0;
  position: relative;
}
.proj_head::before {
  margin-right: 14px;
}
.proj_head::after {
  margin-left: 14px;
}

.proj_list {
  padding-left: 20px;
  margin-bottom: 0;
}
.proj_sec ::marker {
  color: #097a46;
}
.proj_list li {
  position: relative;
  font-size: 16px; /* increase from 14 */
  padding: 10px 0 10px 38px; /* left space for icon */
  color: #1d2b2a;
  line-height: 1.6;
  border-top: 1px dashed rgba(11, 27, 43, 0.1);
}
.proj_list li:first-child {
  border-top: 0;
}

/* Circle + check icon */
.proj_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(9, 122, 70, 0.1);
  border: 1px solid rgba(9, 122, 70, 0.25);
}
.proj_list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 14px;
  font-size: 14px;
  font-weight: 900;
  color: #097a46;
}
.proj_sec ::marker {
  display: none;
}
.sec-des {
  background: #ffffff;
  padding: 56px 56px;
  border-radius: 24px;
  border: 1px solid rgba(11, 27, 43, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.sec-des::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(9, 122, 70, 0.18), transparent 60%);
  border-radius: 50%;
}
/* Project Block */
.project-block {
  background: #fff;
  border: 1px solid rgba(11, 27, 43, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  padding: 16px;
  height: 100%;
}
.project-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}
.cont {
  padding: 10px 20px;
  text-align: center;
}
.card-meta {
  margin: 0 0 6px;
  font-size: 14 px;
}
.count-box {
  height: 100%;
}
.count-box h2 {
  font-size: 2.5rem;
}
.count span {
  color: oklab(0.5 -0.11 0.05);
}
.text-primary {
  color: oklab(0.5 -0.11 0.05) !important;
}
.video-placeholder {
  margin-top: 18px;
  height: 320px;
  border-radius: 14px;
  background: #e9edf2;
  border: 1px solid rgba(11, 27, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6b7a;
  font-weight: 700;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(
    135deg,
    rgba(199, 154, 61, 0.12),
    rgba(11, 27, 43, 0.03)
  );
  border-top: 1px solid rgba(199, 154, 61, 0.35);
  border-bottom: 1px solid rgba(199, 154, 61, 0.35);
  padding: 26px 0;
}
.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.final-inner h2 {
  margin: 0;
  color: #000;
  font-size: 22px;
}
.final-inner p {
  margin: 6px 0 0;
  color: #000;
}
.btn-primary {
  background: linear-gradient(135deg, #c79a3d, #f5c77a);
  color: #1a1406;
}

/* navbar */
/* .logo {
  display: block;
}
.navbar-custom {
  position: fixed;
  width: 86%;
  z-index: 111;
  background: #fff;
  height: 80px;
  border-radius: 22px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: auto;
  top: 16px;
}
.navbar-custom .logo-black {
  display: block;
}
.navbar-button a {
  color: #fff;
  background: #097a46;
  border-radius: 22px;
}
.navbar-button a:hover {
  color: #fff;
  background: #097a46;
}
.nav-item a {
  color: #000;
}
header {
  position: relative;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-brand img {
  height: 60px;
}
nav.navbar.navbar-expand-md {
  left: 0;
  right: 0;
}
.navbar-button a {
  color: #fff;
  background: #097a46;
  border-radius: 22px;
}
.navbar-button a:hover {
  color: #fff;
  background: #097a46;
}
nav.navbar.navbar-expand-md .nav-item a:hover {
  color: #097a46;
} */
/* common */
.sec_head h3 {
  color: #097a46;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_head h3::before {
  content: "";
  background-color: #097a46;
  width: 40px;
  height: 2px;
  top: 0;
  bottom: 0;
  flex-shrink: 0;
  position: relative;
  margin-right: 10px;
}
.sec_head h3::after {
  content: "";
  background-color: #097a46;
  width: 40px;
  height: 2px;
  top: 0;
  bottom: 0;
  flex-shrink: 0;
  position: relative;
  margin-left: 10px;
}
/* specification section */
.specific_sec {
  padding: 60px 0;
}
.specific_sec .accordion-item {
  margin-bottom: 10px;
  border: none;
  background-color: #f8fafe;
  border-radius: 10px;
}
.specific_sec .accordion-button {
  background-color: #f8fafe;
  border-radius: 10px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.specific_sec .accordion-body p {
  margin-bottom: 0;
}
.specific_sec .accordion-button:focus {
  box-shadow: none;
}
.specific_sec .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000;
}
.specific_sec .accordion-item:first-of-type .accordion-button {
  border-radius: 10px;
}
.specific_sec .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 10px;
}
.specific_sec .accordion-button:not(.collapsed):after {
  transform: rotate(-180deg);
  background-image: url(../images/minus-icon.png) !important;
  width: 15px;
}
.specific_sec .accordion-button:after {
  background-image: url(../images/plus-icon.png) !important;
}

/* footer */
footer {
  background-color: #097a46;
  padding: 60px 30px 60px;
}
.footer-tab {
  color: #fff;
}
.footer_txt p {
  padding: 0 100px 0 0;
}
.f_txt {
  display: flex;
  flex-direction: column;
}
.f_txt a {
  text-decoration: none;
  color: #fff;
  padding: 6px 0;
}
.f_txt a:hover {
  color: #f26906;
}
.navbar-button a:hover,
.btn-submit:hover,
.broch_btn:hover,
.floor-plan-sec .nav-pills .nav-link:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.navbar-custom .nav-item a:hover {
  color: #097a46 !important;
}
.footer-logo img {
  margin-bottom: 16px;
  height: 60px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero-overlay {
    /* position: relative; */
    padding: 34px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-carousel {
    height: 520px;
    position: relative;
  }
  .hero-slide {
    position: absolute;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .section-title {
    text-align: center;
  }
  .sec-des {
    padding: 34px 20px;
    border-radius: 18px;
  }
  .proj_head {
    font-size: 28px;
    line-height: 36px;
  }
  .proj_head::before,
  .proj_head::after,
  .section-title::before,
  .section-title::after {
    width: 38px;
    display: none;
  }
  .proj_sec p,
  .proj_list li {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .bannner_content h3 {
    font-size: 24px;
  }
  .bannner_content .few-line::after {
    display: none;
  }
  .luxury-villas p {
    font-size: 12px;
  }
  .rera_num .row .col-md-3 {
    width: 25%;
    padding: 0px 6px;
    margin: auto;
  }
  .rera-txt p {
    font-size: 9px;
  }
  .navbar-custom {
    position: relative;
    height: 100%;
    transition: none;
    padding-top: 10px !important;
  }
  .nav-item a {
    color: #000;
    padding: 0 0 4px;
  }
  .navbar > .container {
    background: #fff;
    padding-bottom: 10px;
  }
  .navbar-button a {
    border-radius: 22px;
    font-size: 12px;
    padding: 6px 24px;
  }
  .broch_btn {
    font-size: 12px;
    padding: 6px 20px;
  }
  .nav-item a:hover {
    color: #097a46 !important;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .btn:first-child:active,
  .navbar-button a:hover {
    color: #fff !important;
    background: #097a46 !important;
  }
  /* .navbar-custom {
    position: fixed;
    width: 100%;
    z-index: 111;
    background: #fff;
    height: 80px;
    border-radius: 0;
    border: none;
    margin: auto;
    top: 0;
  } */

  .navbar-button {
    justify-content: center;
  }
  footer {
    padding: 40px 20px 50px !important;
  }
  .footer_txt p {
    padding: 0;
  }
  .f_txt a {
    padding: 4px 0;
  }
  .footer-tab .col-md-3 {
    padding-bottom: 20px;
  }
  .gallery-carousel {
    padding: 0;
  }
  .project-bg,
  .master-bg {
    min-height: 400px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-tab {
    font-size: 14px;
  }
  .banner-sec img {
    height: 400px;
  }
  .sticky-mobile {
    display: block !important;
  }
  .banner_form .form-control {
    margin: 0 0 10px 0;
    padding: 0.375rem 0.75rem;
  }
  .btn-submit {
    margin: 0 0 10px 0;
    padding: 0.375rem 0.75rem;
  }
  .floor-plan-sec .col-md-8 {
    padding: 12px !important;
  }
  .specific_sec .accordion-button {
    font-size: 16px;
  }

  .bannerSwiper img {
    height: 500px;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 200px) and (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }
  .sec_head h3 {
    font-size: 20px;
  }
  .sec_head h3::before {
    width: 14px;
  }
  .sec_head h3::after {
    width: 14px;
  }
  .proj_head {
    font-size: 24px;
  }
  .overlayer {
    position: relative;
    left: 0;
    right: 0;
  }
  .banner-caption {
    position: relative;
  }
  .bannner_content {
    bottom: 100px;
    left: 0;
    right: 0;
  }
  .banner_form.banner_top {
    /* position: absolute; */
    /* top: 100%; */
    box-shadow: 0 7px 29px 0 rgba(100, 100, 111, 0.2);
    left: 0;
    right: 0;
    /* margin-top: 20px; */
    /* display: none; */
    position: relative;
    margin-bottom: 10px;
  }
  .baneer991 {
    width: 0;
  }
  .broch_sec {
    /* margin-top: 320px; */
  }
  .floor-plan-sec::before {
    display: none;
  }
  .floor-plan-sec .nav-pills .nav-link {
    width: calc(50% - 20px);
    margin: 6px 8px;
    font-size: 14px;
  }
  .floor-plan-sec .col-md-4 {
    border-radius: 14px !important;
    padding: 10px;
  }

  iframe {
    height: 360px;
  }
  .proj_sec,
  .amenities-sec,
  .master-plan,
  .floor-plan-sec,
  .gallery-sec,
  .project-sec,
  .specific_sec {
    padding: 30px 0;
  }
  footer {
    padding: 60px 30px 30px;
  }
  .master-plan .container {
    top: 60px;
  }
  .project-sec .container {
    top: 60px;
  }
  .footer_txt p {
    font-size: 14px;
  }
  .f_txt a {
    padding: 4px 0;
  }

  .hero-right {
    position: relative;
    top: 0;
    transform: none;
    right: 0;
    z-index: 1;
    padding: 20px;
    width: 100%;
  }
  .navbar-nav {
    text-align: center;
	padding-bottom: 14px;
  }
  .navbar-nav .nav-item a {
    font-size: 14px;
    padding: 6px !important;
  }
  .lang-switch {
	margin: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar-button a {
    font-size: 12px;
  }
  .amenities-carousel .row .col-md-2 {
    width: 33.33%;
  }
  .rera_num .col-md-3 {
    padding: 0 4px;
  }
  .rera-border {
    padding: 6px;
  }
  .rera-txt p {
    font-size: 10px !important;
  }
  .map_form {
    width: 360px;
  }
  .zoom-icon img {
    width: 20px;
  }
  .project-bg,
  .master-bg {
    min-height: 400px;
  }
  .footer_txt p {
    padding: 0;
  }
  .broch_btn {
    font-size: 12px;
    padding: 4px 14px;
  }
  .banner_form .form-control {
    margin: 0 0 10px 0;
    padding: 0.375rem 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* .navbar-custom {
    width: 90%;
  } */
  .rera-img img {
    width: 30px;
    height: 30px;
  }
  .rera-txt p {
    font-size: 12px;
  }
  .amen_card {
    height: 80px;
  }
  .gallery-sec .owl-nav .owl-prev {
    left: 0px;
  }
  .gallery-sec .owl-nav .owl-next {
    right: 0px;
  }
  .gallery-sec .owl-nav img {
    width: 36px;
  }
  .f_txt a {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .project-bg,
  .master-bg {
    min-height: 520px;
  }
  .banner_form .form-control {
    margin: 0 0 14px 0;
    padding: 10px 18px;
  }
  .banner_form {
    padding: 20px 30px;
  }
  .bannner_content h3 {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .project-bg,
  .master-bg {
    height: 700px;
  }
  .floor-plan-sec .nav-pills .nav-link {
    padding: 22px 10px;
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .project-bg,
  .master-bg {
    height: 800px;
  }
}
@media (min-width: 1900px) {
  .project-bg,
  .master-bg {
    height: 860px;
  }
}
@media (min-width: 2100px) {
  .floor-plan-sec::before {
    width: 20%;
  }
}
/* sticky buttons */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
  z-index: 998;
}
.sticky-mobile > div {
  display: flex;
}
.sticky-mobile .btn-enq,
.sticky-mobile .vmn-mb {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 10px 18px;
  color: #fff;
  text-transform: uppercase;
}
.sticky-mobile .btn-enq {
  border-radius: 5px 5px 0 0;
  background: #097a46;
  width: 100%;
}
.sticky-mobile .vmn-mb {
  border-radius: 0 5px 0 0;
  background: #f48120;
  width: 50%;
}
