: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: #ffffff;
  -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 / 74%);
}
.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;
}

/* 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: aliceblue;
    color: #207ac9;
    border: 1px solid #87aed0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    margin: 10px 0 0 !important;
}

section#configurations {
    background: #f5f5f5;
}

/* 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: #e4f0ee;
    color: #0e4039;
    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: -22px;
  top: 6px;
  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: all 0.4s ease;
    z-index: 9999;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.floating-form.collapsed {
  transform: translateY(85%);
}

.form-toggle {
  position: absolute;
  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 {
    --bs-btn-color: #207ac9;
    --bs-btn-border-color: #207ac9;
}
.btn-outline-primary:hover {
    background: #207ac9;
    color: #fff;
    border-color: #207ac9;
}
.bg-bl {
    background: #ffffff;
}

section#connectivity {
    background: #0c73641c;
}

.bg-bl i, .i-color i {
    color: #ac8e61 !important;
}
section#connectivity i {
    color: #0e4039 !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;
}
a.btn.btn-outline-primary.w-100.mt-3.payment-btn {
    background: #0e4039;
    border-color: #0e4039;
    color: #ffffff;
}
a.btn.btn-outline-primary.w-100.mt-3.payment-btn:hover {
    background: #c89b5e;
    border-color: #c89b5e;
    color: #ffffff;
}
section#contact button {
    background: #ffffff;
    color: #906526;
    font-weight: 600;
    font-size: 19px;
    
}
.bg-primary {
    background-color: #92c2ff !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: #ffc205;
    font-size: 19px;
    width: 220px;
    margin-top: 15px;
    opacity: 0.8;
}
button.btn.btn-warning.bg-yellow:hover {
    opacity: 1;
}
.rt-content h5 {
    font-size: 20px;
    margin-bottom: 11px !important;
    color: #0e4039;
    font-weight: 700;
}
div#floatingForm h4 {
    color: #000000;
}

.mb-block{display:none}
.show-m{display: none;}
p.mt-4.text-muted.price-h {
    /* text-align: center; */
    color: #0e4039 !important;
    font-size: 31px;
    font-weight: 700;
    padding-top: 0;
    margin-bottom: 0;
}
p.mt-4.text-muted.price-h .price-highlight {
    color: #c89b5e;
}

.project-detail-spotlight, .project-detail-spotlight-custom {
    height: 90vh;
    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-left: -90px;
        z-index: 1;
    }
}



/* whatsapp form css End */
@media (max-width:767px) {
  .py-5 {
    padding-top: 28px !important;
    padding-bottom: 25px !important;
}
.show-m{display: block;}
.show-d{display: none;}

  .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 {
    display: none;
  }

     .floating-form {
        position: initial;
        bottom: 20px;
        right: 11px;
        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 35px;
    }
          h1.display-5.mb-2.text-center {
        font-weight: 600;
        font-size: 27px;
        margin-bottom: 24px !important;
        padding-bottom: 0;
        margin-bottom: 27px !important;
        border: none;
        margin-top: 24px;
    }
    .section-title {
        font-size: 25px;
        border-bottom: 1px dotted #80808054;
        padding-bottom: 8px;
        margin-bottom: 20px;
    }
        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 {
    background: #ffc205;
    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: 25px;
    margin-bottom: 14px !important;
}
    p.mt-4.text-muted.price-h {
        font-size: 32px;
        padding-top: 0;
        margin-bottom: 10px;
    }
section#payment h3 {
    font-size: 36px;
    font-weight: 700;
}
section#payment h3 .text-muted {
    color: #000000 !important;
}
    .project-detail-spotlight {
        height: auto;
        /* margin-top: 50px; */
    }
    .project-detail-spotlight .yt-wrap {
        padding-top: 56%;
        top: 0;
    }
    div#about {
    padding-bottom: 12px;
}
section#configurations {
    padding: 35px 0 !important;
}
    footer.footer {
        padding: 10px;
    }
}