:root {
  --brand: #0d6efd;
  --bg-soft: #f7f9fc;
  --bg-soft-2: #eef3f9;
  --text: #222;
  --muted: #1b1b1b;
  --card-border: #e9eef5;
  --accent: #22c55e;
}

html,
body {
  height: 100%
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
  color: var(--text);
  /* background: #ac8e6117; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* Navbar */
.navbar {
  background: #000000;
  box-shadow: 0 6px 20px rgba(16, 24, 40, .06);
}

.navbar-brand img {
  height: 67px;
}

.nav-link i {
  margin-right: 8px;
}

.nav-link {
  transition: color .15s ease, transform .15s ease;
  color: #ad8d62;
}

.nav-link:focus,
.nav-link:hover {
  color: rgb(168 127 60);
}


/* Hero */
header .container-fluid {
  padding: 0 41px;
}

li.nav-item.pdf-btn button {
  background: #005ce3;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.8;
  transition: ease-in-out 0.3s;
}

li.nav-item.pdf-btn button:hover {

  opacity: 1;
}

li.caltonum a {
  background: #ac8e61;
  color: #000000;
  border: 1px solid #ac8e61;
  padding: 7px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

li.caltonum a i {
  font-size: 14px;
}

li.caltonum a:hover {
  text-decoration: underline;
}


h1.display-5.mb-2.text-center {
    font-weight: 400;
    border-bottom: 1px dotted #00000075;
    padding-bottom: 14px;
    margin-bottom: 35px !important;
    /* display: block; */
}

.hero p.lead {
  opacity: .95;
  font-size: 1.05rem;
}

.hero .btn-primary {
    box-shadow: 0 12px 30px rgb(172 142 97 / 72%);
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: -1;
}

/* Content on top */
.hero-content {
    position: relative;
    z-index: 2;
    background: #0000009c;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    font-weight: 400 !important;
    border-bottom: 1px dotted #00000075;
    padding-bottom: 14px;
    /* margin-bottom: 50px !important; */
    text-align: center;
    font-size: 40px !important;
}
h1.display-5.mb-2.show-d {
    margin-bottom: 38px !important;
}

/* Section titles */
.section-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 26px;
}

.section-sub {
  /* max-width: 900px; */
  margin: 0 auto 22px;
  color: var(--muted);
  text-align: center;
}

/* Cards */
.card-lite {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s ease, border-color .28s ease;
}

.card-lite:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, .08);
  border-color: #dbe8fb;
}

/* Config images */
.config-img {
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.badge-tag {
    display: inline-block;
    background: #f3f1f0;
    color: #705130;
    border: 1px solid #705130;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    margin: 10px 0 0 !important;
}
section#configurations {
    background: #54382a12;
}

/* Buttons */
.btn-outline-primary {
  border-width: 2px;
}

.btn-outline-primary:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Gallery thumbnails */
.gallery img {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, .06);
  transition: transform .22s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Gallery modal: constrain image area */
.gallery-modal .modal-dialog {
  max-width: 820px;
  margin: 1.5rem auto;
}

.gallery-modal .carousel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.gallery-modal .carousel-item img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.gallery-modal .carousel-control-prev-icon,
.gallery-modal .carousel-control-next-icon {
  background: none;
  font-size: 20px;
  color: #fff;
}

.gallery-modal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Location highlights */
.location-list li {
  margin-bottom: 10px;
}

.distance-badge {
  background: #eef6ff;
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
}

/* Amenities - restored design */
.amenities-grid .amenity {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.amenities-grid .amenity:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
}

.amenities-grid .amenity i {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 10px;
}

.amenities-grid .amenity p {
  margin: 0;
  font-weight: 600;
}

/* USP & small cards */
.usp-card {
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--card-border);
  transition: transform .22s ease, box-shadow .22s ease;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
}

/* Connectivity */
.connect-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px;
}

.connect-card .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e6edf7;
}

.connect-card .item:last-child {
  border-bottom: 0;
}

.connect-card .item i {
  color: #0ea5e9;
}

/* Payment plan */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dbeafe;
}

.timeline .step {
  position: relative;
  margin-bottom: 14px;
  padding-left: 8px;
}

.timeline .step::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e0edff;
}

/* Tables */
.table-sm td,
.table-sm th {
  padding: .5rem .6rem;
}

/* Contact */
.contact-wrap {
  background: #ac8e61;
  color: #e6eef8;
  padding-top: 36px;
  padding-bottom: 36px;
  display: none;
}

.contact-wrap .form-control {
    background: #ac8e61;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.contact-wrap .form-control::placeholder {
  color: #ffffff;
}

.contact-wrap .btn-primary {
  background: linear-gradient(90deg, #0d6efd, #2563eb);
  border: 0;
}

/* Footer */
.footer {
    background: #000000;
    text-align: center;
    color: #ffffff;
    padding: 50px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  gap: 10px;
}

.sticky-cta .btn {
  box-shadow: 0 12px 30px rgba(2, 6, 23, .18);
  border-radius: 10px;
}

.thankyou-content img {
  width: 220px;
}

/* whatsapp form css Start */
.whatsapp-form {
  width: 190px;
  border-radius: 20px;
  position: fixed;
  bottom: 24px;
  left: 22px;
  z-index: 9999;
  background: #25d366;
  padding: 10px;
  display: none;
  z-index: 99999;
}

.whatsapp-form input {
  margin: 8px 0 6px;
  padding: 3px 6px;
  font-size: 14px;
}

.wht-submit {
  margin-bottom: 0 !important;
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff;
  padding: 1px !important;
  font-size: 14px !important;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pos-re button {
  width: 100%;
  border-radius: 50px;
}

.wht-submit i {
  margin-right: 1px;
  padding: 4px;
  color: #ffffff;
  font-size: 15px;
  border-radius: 50%;
}

button#hd-modal {
  position: absolute;
  top: -16px;
  right: 39%;
  border: 3px solid #25d366;
  color: #343434;
  background: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  width: 60px;
  height: 60px;
}

.whatsapp-btn i {
  font-size: 37px;
}

.modal-content {
  padding: 20px;
}

.modal-content input {
  font-size: 14px;
  margin-bottom: 7px;
}

.modal-header {
  border-bottom: 1px solid #80808054;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.floating-form {
  position: fixed;
  bottom: 20px;
  right: 11px;
  width: 322px;
  background: #fff;
  box-shadow: -4px 0 20px rgb(0 0 0 / 23%);
  transition: transform 0.4s ease;
  z-index: 9999;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.float-text h4 {
    color: #000000;
}

.floating-form.collapsed {
  transform: translateY(85%);
}

.form-toggle {
  position: fixed;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  border-radius: 8px 0 0 8px;
}

.float-text h4 {
  font-size: 20px;
}

.float-text p {
  font-size: 12px;
  color: #373737;
}

.form-body input {
  font-size: 13px;
}

.float-btn-rt button {
  display: block;
  width: 100%;
  font-size: 14px;
  background: #ac8e61;
  border: 1px solid #ac8e61;
}

.float-btn-rt button {
  display: block;
  width: 100%;
  font-size: 14px;
  background: #ac8e61;
  border: 1px solid #ac8e61;
}

.float-btn-rt button:hover {
  background: #977543 !important;
  border-color: #977543;
}
a.btn.btn-outline-light.btn-lg {
    background: #ffffff;
    color: #000000;
}
a.btn.btn-primary.btn-lg.me-2 {
    background: #ac8e65;
    box-shadow: none;
    border: #ac8e65;
}
.btn-outline-primary {
    color: #ffffff;
    --bs-btn-color: #ac8e61;
    background: #ac8e61;
    border-color: #ac8e61;
}
.btn-outline-primary:hover {
    color: #ffffff;
    --bs-btn-color: #705130;
    background: #705130;
    border-color: #705130;
}
/* .btn-outline-primary:hover {
    background: #207ac9;
    color: #fff;
    border-color: #207ac9;
} */
.bg-bl {
    background: #f5f5f5;
}

.bg-bl i, .i-color i {
    color: #a07e4c !important;
}
.amenities-c i{color: #000000!important;}
.gallery-c{
  background: #ebddce;
background: linear-gradient(90deg,rgba(235, 221, 206, 1) 24%, rgba(248, 245, 241, 1) 93%);
}
button.col-md-12.btn.btn-primary.btn-lg {
    background: #ac8e61;
    box-shadow: none;
    border: none;
    opacity: 0.9;
}
button.col-md-12.btn.btn-primary.btn-lg:hover {
       opacity: 1;
}

section#contact button {
    background: #ffffff;
    color: #906526;
    font-weight: 600;
    font-size: 19px;
    
}
.bg-primary {
    background-color: #e4c457 !important;
}

.about-start, .about-end {
    background: url(../images/abt-back.jpg) center center no-repeat;
    background-size: contain;
}
button.btn.btn-warning.bg-yellow {
    background: #533527;
    font-size: 19px;
    width: 220px;
    margin-top: 15px;
    opacity: 0.8;
    color: #ffffff;
}
button.btn.btn-warning.bg-yellow:hover {
    opacity: 1;
}
.rt-content h5 {
    font-size: 28px;
    margin-bottom: 11px !important;
}
.show-m {
    display: none;
}

.mb-block{display:none}
ul.nav.nav-pills.justify-content-center.mb-4 button {
    /* color: #000000;
    background: #ebebeb;
    margin: 0 11px;
    border-radius: 30px;
    padding: 9px 30px; */
    font-weight: 500;
}
 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #ac8e61;
}
a.btn.btn-primary.btn-lg {
    background: #ac8e61;
    border-color: #ac8e61;
    
}
a.btn.btn-primary.btn-lg:hover {
    background: #a87c3b;
}
.hgl {
    font-size: 20px;
    font-weight: 600;
    color: #000000 !important;
    opacity: 1;
    /* text-decoration: underline; */
}
/* Section Background */
/* .payment-section {
  background: #f8f9fb;
} */

/* Heading */
.main-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0e4039;
}

.main-heading span {
  color: #c89b5e;
}

.subtitle {
  color: #6c757d;
  font-size: 15px;
}

/* Plan Cards */
.plan-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 26%);
    transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
}

/* Card Heading */
.plan-card h4 {
  margin-bottom: 15px;
  color: #0e4039;
  font-weight: 600;
}

/* List Styling */
.plan-card ul {
  list-style: none;
  padding: 0;
}

.plan-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

/* Button */
.btn-gradient {
  background: linear-gradient(45deg, #c89b5e, #a67c3c);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #a67c3c, #c89b5e);
  color: #fff;
}

.project-detail-spotlight, .project-detail-spotlight-custom {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.project-detail-spotlight .yt-wrap {
  position: relative;
    background: #000000;
    border-radius: 0;
    z-index: 1;
    padding-top: 57%;
    top: -12%;
        overflow: hidden;
}
.yt-wrap iframe, .yt-wrap video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.toggle-btn {
    position: absolute;
    top: 9px;
    right: 10px;
    background: #ac8e61;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
span#toggleIcon {
    margin-bottom: 3px;
}
@media (min-width: 992px) {


    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }
}



/* whatsapp form css End */
@media (max-width:767px) {
  .show-d {
    display: none;
}
  .show-m {
    display: block;
}
div#about p {
    margin-bottom: 30px;
}
  .py-5 {
    padding-top: 28px !important;
    padding-bottom: 25px !important;
}
  .container-fluid .container {
    padding: 0 !important;
}
  .contact-wrap {
  display: flex;
}
  li.caltonum {
    margin: 16px 0 20px;
  }

  ul.navbar-nav.ms-auto.align-items-lg-center {
    margin-left: 12px !important;
  }

  /* .hero {
    padding: 134px 20px 100px;
  } */

  header.hero a {
    font-size: 13px;
  }

  .navbar-brand img {
    height: 57px;
  }

  .config-img {
    height: 140px;
  }

  .gallery-modal .modal-dialog {
    max-width: 95%;
  }

  .gallery-modal .carousel-inner {
    min-height: 260px;
  }

  .thankyou-content {

    width: 92%;

  }

  .thankyou-content h1 {
    font-size: 19px;
    font-weight: 500;
  }

  .thankyou-content p {
    text-align: center;
    font-size: 12px;
  }

  p.bottom-heading {
    margin-bottom: 18px;
    font-size: 12px;
  }

  a.logo-target {

    padding: 7px;

    font-size: 14px;
  }

  .hero {

    height: 75vh;
  }

  section#contact button {
    font-size: 15px;
  }

  header .container-fluid {
    padding: 0 15px 0 0;
  }

  .hero a.btn.btn-primary.btn-lg.me-2 {
    font-size: 14px;
  }
  h1.display-5.mb-2 {
    font-weight: 500;
}

    .floating-form {
        position: relative;
        bottom: 20px;
        right: 0;
        width: 85%;
        background: #fff;
        box-shadow: -4px 0 20px rgb(0 0 0 / 23%);
        transition: transform 0.4s ease;
        z-index: 9999;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        margin: 0 auto 16px;
        z-index: 99;
    }
     h1.display-5.mb-2.text-center {
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 24px !important;
        padding-bottom: 14px;
    }
        .section-title {
        font-size: 24px;
        border-bottom: 1px dotted #80808054;
        padding-bottom: 8px;
        margin-bottom: 20px;
        color: #000000 !important;
        font-weight: 600;
    }
        h2.section-title.w-l {
        font-size: 22px;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
.mb-block {
    display: block;
    margin-bottom: 22px;
    border-radius: 6px;
}
.about-start.bg-primary.p-5 {
    padding: 20px !important;
}
.about-start.bg-primary.p-5 h2 {
    font-size: 17px;
}
button.btn.btn-warning.bg-yellow {
    font-size: 18px;
    width: 100%;
    margin-top: 7px;
}
.col-lg-6.desktop-block {
    display: none;
}
.badge-tag {
    margin: 9px 0 0 !important;
    display: inline-block;
}
    .rt-content h5 {
        font-size: 27px;
        margin-bottom: 13px !important;
        color: #000000;
    }
    section#payment h4 {
    text-align: center;
    color: #000000 !important;
    font-size: 19px;
    font-weight: 600;
}
section#contact h2 {
    color: #ffffff !important;
}
h2.text-center.mb-2.hgl1 {
    font-size: 27px;
    color: #000000 !important;
    font-weight: 600;
}
.main-heading {
    font-size: 31px;
}
.project-detail-spotlight {
        height: auto;
        /* margin-top: 67px; */
    }
        .project-detail-spotlight .yt-wrap {
        padding-top: 57%;
        top: 0;
    }
    .yt-wrap iframe, .yt-wrap video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
h1 {
    font-size: 26px !important;
}
h1.display-5.mb-2.show-m {
    margin-bottom: 35px !important;
}
h1.display-5.mb-2.show-m {
    padding: 21px 10px;
    border-bottom: none;
    font-weight: 400 !important;
}
section#usp {
    padding: 44px 0 !important;
}
    .footer {
        padding: 10px;
    }
}