/* ==========================================================================
   Nyati Overseas – NRI landing page changes
   Offer strip / Hero band / Why Buy in Pune / Projects grid / NRI Services
   Brand palette: gold #c89a53, deep gold #d0ad67, orange #f48120, black #000
   ========================================================================== */

/* ---------- 1. Live offer strip (scrolling marquee) ---------- */

.nri-offer-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99995;
  background: #000;
  background: linear-gradient(90deg, #000 0%, #2b2115 50%, #000 100%);
  border-bottom: 2px solid #c89a53;
  color: #fff;
  padding: 9px 40px 9px 0;
  overflow: hidden;
}

.nri-marquee {
  overflow: hidden;
  width: 100%;
}

.nri-marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  -webkit-animation: nri-marquee-scroll 38s linear infinite;
  animation: nri-marquee-scroll 38s linear infinite;
}

.nri-offer-strip:hover .nri-marquee-track {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* Two identical groups sit side by side and the track shifts by exactly one
   group's width, so the message loops with no visible seam. */
.nri-marquee-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nri-marquee-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 45px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Gold diamond separator between repeats. */
.nri-marquee-item:after {
  content: "\25C6";
  color: #c89a53;
  font-size: 8px;
  vertical-align: middle;
  margin-left: 45px;
  position: relative;
  top: -1px;
}

.nri-marquee-tc {
  color: #d0ad67;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
}

@-webkit-keyframes nri-marquee-scroll {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes nri-marquee-scroll {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nri-marquee-track {
    -webkit-animation: none;
    animation: none;
  }
}

.nri-offer-strip .nri-offer-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #d0ad67;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  outline: none;
  z-index: 2;
}

/* The desktop banner images carry an inline `margin-top: -1em`, which pulled
   them up behind the fixed navbar. The offset below owns that spacing now. */
.carousel-inner .item img {
  margin-top: 0 !important;
}

/* Push the fixed navbar and the banner down by the strip height. */
body.has-offer-strip #hide-menu {
  top: 30px;
}

body.has-offer-strip .carousel-inner .item {
  margin-top: 110px;
}

/* When the strip is dismissed everything falls back to the original offsets. */
body.offer-strip-closed #hide-menu {
  top: 0;
}

body.offer-strip-closed .carousel-inner .item {
  margin-top: 70px;
}

/* ---------- Header / navigation ---------- */

.nri-header #hide-menu.navbar-default {
  background: #fff;
  border-bottom: 1px solid #ece5d9;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  padding: 0;
  min-height: 0;
}

.nri-header .navbar-brand {
  height: auto;
  padding: 10px 0;
}

.nri-header .navbar-brand img {
  max-height: 54px;
  width: auto;
}

.nri-header .navbar-nav {
  margin: 0;
}

.nri-header .navbar-nav > li {
  margin-left: 2px;
}

/* Links: small caps with a gold rule that grows in on hover. */
.nri-header .navbar-default .navbar-nav > li > a {
  position: relative;
  padding: 28px 13px;
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  line-height: 1 !important;
  color: #4a443c;
  background: transparent;
  transition: color 0.3s ease;
}

.nri-header .navbar-default .navbar-nav > li > a:after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 20px;
  height: 2px;
  background: #c89a53;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.nri-header .navbar-default .navbar-nav > li > a:hover,
.nri-header .navbar-default .navbar-nav > li > a:focus,
.nri-header .navbar-default .navbar-nav > .active > a,
.nri-header .navbar-default .navbar-nav > .active > a:hover,
.nri-header .navbar-default .navbar-nav > .active > a:focus {
  color: #1a1207;
  background: transparent;
}

.nri-header .navbar-default .navbar-nav > li > a:hover:after,
.nri-header .navbar-default .navbar-nav > .active > a:after {
  transform: scaleX(1);
}

/* Burger */
.nri-header .navbar-default .navbar-toggle {
  margin: 16px 0;
  border-color: #e2dcd1;
  border-radius: 3px;
}

.nri-header .navbar-default .navbar-toggle:hover,
.nri-header .navbar-default .navbar-toggle:focus {
  background: #faf8f4;
  border-color: #c89a53;
}

.nri-header .navbar-default .navbar-toggle .icon-bar {
  background-color: #c89a53;
}

@media (max-width: 991px) {
  .nri-header .navbar-default .navbar-nav > li > a {
    padding: 22px 9px;
    font-size: 11.5px;
    letter-spacing: 0.6px;
  }

  .nri-header .navbar-default .navbar-nav > li > a:after {
    bottom: 15px;
    left: 9px;
    right: 9px;
  }
}

@media (max-width: 767px) {
  .nri-header .navbar-brand img {
    max-height: 44px;
  }

  .nri-header .navbar-collapse {
    border-top: 1px solid #ece5d9;
    max-height: 78vh;
  }

  .nri-header .navbar-nav > li {
    margin-left: 0;
  }

  .nri-header .navbar-default .navbar-nav > li > a {
    padding: 14px 4px;
    text-align: left;
    border-bottom: 1px solid #f2ede4;
  }

  .nri-header .navbar-default .navbar-nav > li > a:after {
    display: none;
  }

  .nri-header .navbar-default .navbar-nav > li:last-child > a {
    border-bottom: none;
  }

}

/* ---------- Shared section furniture ---------- */

.nri-sec {
  width: 100%;
  padding: 70px 0;
}

.nri-sec.nri-sec-grey {
  background: #f6f4f0;
}

.nri-sec-sub {
  text-align: center;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 35px;
}

/* ---------- 2. Overview / about ---------- */

.nri-overview {
  width: 100%;
  padding: 85px 0;
  background: #fff;
}

.nri-overview-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nri-overview-row > [class*="col-"] {
  float: none;
}

.nri-overview-intro {
  padding-right: 30px;
}

.nri-overview-intro h2 {
  margin: 0 0 24px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}

.nri-overview-intro h2 span {
  color: #c89a53;
}

.nri-overview-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b6b6b;
  margin: 0 0 18px;
}

/* Credential strip: numerals instead of the old icon carousel. */
.nri-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid #e9e3d8;
  border-bottom: 1px solid #e9e3d8;
}

.nri-stat {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  padding: 26px 22px 24px;
}

.nri-stat + .nri-stat {
  border-left: 1px solid #e9e3d8;
}

.nri-stat-icon {
  display: block;
  margin-bottom: 14px;
  line-height: 0;
}

.nri-stat-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nri-stat-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #c89a53;
  letter-spacing: -0.5px;
}

.nri-stat-num sup {
  font-size: 18px;
  top: -0.6em;
  margin-left: 1px;
}

.nri-stat-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a7c66;
  line-height: 1.6;
}

/* --- enquiry panel --- */

.nri-overview-panel {
  background: #faf8f4;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
  padding: 34px 30px 30px;
}

.nri-overview-panel h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.nri-overview-panel-sub {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b6b6b;
  margin: 0 0 24px;
}

.nri-overview-panel .nri-input {
  margin-bottom: 20px;
}

/* ---------- 3. Why Buy in Pune ---------- */

/* Dark band that rhymes with the hero, so the section reads as a premium
   editorial break between the white "about" block and the light projects grid. */
.nri-sec.nri-sec-dark {
  position: relative;
  background: #14100b;
  background: linear-gradient(135deg, #14100b 0%, #241b11 55%, #0e0c08 100%);
  border-top: 1px solid rgba(200, 154, 83, 0.35);
  border-bottom: 1px solid rgba(200, 154, 83, 0.35);
  padding: 85px 0;
}

.nri-sec-eyebrow {
  display: block;
  text-align: center;
  color: #c89a53;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-head.nri-sec-head-light {
  color: #fff;
  font-size: 30px;
}

.nri-sec-sub.nri-sec-sub-light {
  color: #a9a094;
  margin-bottom: 50px;
}

.nri-why-row {
  margin-left: -14px;
  margin-right: -14px;
}

.nri-why-row > [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
}

.nri-why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(200, 154, 83, 0.22);
  border-radius: 2px;
  padding: 38px 26px 34px;
  margin-bottom: 28px;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Hairline of gold that sweeps across the top edge on hover. */
.nri-why-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c89a53 0%, #e6cf9b 50%, #c89a53 100%);
  transition: width 0.55s ease;
}

.nri-why-card:hover:before {
  width: 100%;
}

.nri-why-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 154, 83, 0.6);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  transform: translateY(-6px);
}

/* Oversized outlined index numeral, watermarked in the corner. */
.nri-why-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 154, 83, 0.42);
  text-stroke: 1px rgba(200, 154, 83, 0.42);
  transition: all 0.45s ease;
  pointer-events: none;
}

.nri-why-card:hover .nri-why-num {
  -webkit-text-stroke-color: rgba(200, 154, 83, 0.75);
  transform: translateY(-2px);
}

.nri-why-icon {
  display: block;
  font-size: 28px;
  color: #c89a53;
  line-height: 1;
  margin-bottom: 26px;
  transition: color 0.45s ease;
}

.nri-why-card:hover .nri-why-icon {
  color: #e6cf9b;
}

.nri-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.nri-why-rule {
  display: block;
  width: 34px;
  height: 2px;
  background: #c89a53;
  margin: 16px 0 14px;
  transition: width 0.45s ease;
}

.nri-why-card:hover .nri-why-rule {
  width: 60px;
}

.nri-why-card p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #a9a094;
  margin: 0;
}

/* Equal-height cards across the row. */
@media (min-width: 768px) {
  .nri-why-row,
  #nri-services .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nri-why-row > [class*="col-"],
  #nri-services .row > [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: none;
  }

  .nri-why-card,
  #nri-services .nri-service-card {
    width: 100%;
  }

  /* Hold two lines so the gold rule and body copy align across the row. */
  .nri-why-card h3 {
    min-height: 46px;
  }
}

/* ---------- 4. Projects grid (card design per the MANA NRI reference LP) ---------- */

.nri-projects-cta-wrap {
  text-align: center;
  margin-top: 20px;
}

.nri-project-col {
  margin-bottom: 30px;
}

.nri-card {
  background: #fff;
  border: 1px solid #e6e0d5;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.nri-card:hover {
  border-color: #c89a53;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* --- media --- */

.nri-card-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.nri-card-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 1s ease;
}

.nri-card-media:hover img {
  transform: scale(1.06);
}

/* --- body --- */

.nri-card-body {
  padding: 14px 4px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.nri-card-title {
  border: 1px solid #ddd5c7;
  border-radius: 4px;
  padding: 13px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

/* --- label / value rows --- */

.nri-card-rows {
  margin-top: 14px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.nri-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid #efeae1;
}

.nri-card-row:last-child {
  border-bottom: none;
}

.nri-card-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #9a9086;
  line-height: 1.5;
}

.nri-card-value {
  text-align: right;
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
}

.nri-card-value.nri-card-price {
  font-weight: 800;
}

/* Shown in place of the price where none is published yet. */
a.nri-card-ask {
  color: #b0863d !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

a.nri-card-ask:hover,
a.nri-card-ask:focus {
  color: #000 !important;
}

.nri-card-value.nri-card-rera {
  font-size: 11.5px;
  letter-spacing: 0.4px;
  color: #8a8177;
}

/* --- CTA pair --- */

.nri-card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.nri-card-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 4px;
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.35;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.nri-card-btn-primary {
  background: #000;
  border: 1px solid #000;
  color: #fff !important;
}

.nri-card-btn-primary:hover,
.nri-card-btn-primary:focus {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207 !important;
}

.nri-card-btn-ghost {
  background: transparent;
  border: 1px solid #cfc7ba;
  color: #111 !important;
}

.nri-card-btn-ghost:hover,
.nri-card-btn-ghost:focus {
  border-color: #000;
  background: #000;
  color: #fff !important;
}

.nri-price-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: #8a8a8a;
  margin-top: 5px;
}

.nri-price-note a {
  color: #b0863d !important;
  text-decoration: none !important;
}

.nri-price-note a:hover {
  text-decoration: underline !important;
}

/* Equal-height cards across each row of the grid. */
@media (min-width: 768px) {
  /* Full rows fill the width, so this only affects the leftover cards on the
     last row - they centre instead of hanging off to the left. */
  .tab-content-wrap > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab-content-wrap > .row > .nri-project-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: none;
  }
}

/* ---------- About Us ---------- */

.nri-about {
  width: 100%;
  padding: 85px 0;
  background: #14100b;
  background: linear-gradient(135deg, #14100b 0%, #241b11 55%, #0e0c08 100%);
  border-top: 1px solid rgba(200, 154, 83, 0.35);
  text-align: center;
}

.nri-about .nri-rule-eyebrow {
  margin-bottom: 18px;
}

.nri-about .nri-rule-eyebrow:before,
.nri-about .nri-rule-eyebrow:after {
  background: rgba(200, 154, 83, 0.45);
}

.nri-about .nri-rule-eyebrow > span {
  color: #c89a53;
}

.nri-about-head {
  margin: 0 0 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.3px;
}

.nri-about-head span {
  color: #c89a53;
}

/* style.css carries `#aboutus p { color:#000; width:70% }` from the old
   achievements block, and an id beats a class - hence the id here. */
#aboutus .nri-about-lead {
  width: auto;
  max-width: 760px;
  margin: 0 auto 46px;
  font-size: 15px;
  line-height: 1.9;
  color: #a9a094;
}

/* --- stat cards --- */

.nri-about-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 55px;
}

.nri-about-stat {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  max-width: 260px;
  padding: 30px 18px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 154, 83, 0.25);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.nri-about-stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 154, 83, 0.6);
  transform: translateY(-4px);
}

.nri-about-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #c89a53;
  letter-spacing: -0.5px;
}

.nri-about-num sup {
  font-size: 19px;
  top: -0.6em;
  margin-left: 1px;
}

.nri-about-label {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #a9a094;
  line-height: 1.6;
}

/* --- residence image --- */

.nri-about-figure {
  max-width: 860px;
  margin: 0 auto 45px;
  border: 1px solid rgba(200, 154, 83, 0.3);
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
}

.nri-about-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.nri-about-figure:hover img {
  transform: scale(1.04);
}

/* --- closing note + CTA --- */

.nri-about-foot h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c89a53;
}

#aboutus .nri-about-foot p {
  width: auto;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #a9a094;
}

a.nri-about-cta {
  display: inline-block;
  padding: 14px 34px;
  background: transparent;
  border: 1px solid #c89a53;
  border-radius: 3px;
  color: #d0ad67 !important;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.35s ease;
}

a.nri-about-cta:hover,
a.nri-about-cta:focus {
  background: #c89a53;
  color: #1a1207 !important;
}

a.nri-about-cta span {
  margin-left: 6px;
}

@media (max-width: 767px) {
  .nri-about {
    padding: 50px 0;
  }

  .nri-about-head {
    font-size: 22px;
  }

  .nri-about-lead {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .nri-about-stats {
    gap: 12px;
    margin-bottom: 34px;
  }

  .nri-about-stat {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    padding: 22px 10px 20px;
  }

  .nri-about-num {
    font-size: 26px;
  }

  .nri-about-num sup {
    font-size: 14px;
  }

  .nri-about-label {
    font-size: 10.5px;
    letter-spacing: 1px;
  }

  .nri-about-figure {
    margin-bottom: 30px;
  }

  .nri-about-figure img {
    height: 220px;
  }
}

/* ---------- EMI & currency calculator (MANA panel design) ---------- */

.nri-calc {
  width: 100%;
  padding: 80px 0;
  background: #faf8f4;
}

/* Eyebrow with a hairline rule either side. */
.nri-rule-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.nri-rule-eyebrow:before,
.nri-rule-eyebrow:after {
  content: "";
  width: 90px;
  height: 1px;
  background: #cfc4b0;
}

.nri-rule-eyebrow > span {
  color: #8a7c66;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nri-calc-head {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.25;
}

.nri-calc-head span {
  color: #c89a53;
}

.nri-calc-note {
  text-align: center;
  color: #7d7468;
  font-size: 14px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 45px;
}

.nri-calc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.nri-calc-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
}

/* --- left panel: inputs --- */

.nri-calc-panel {
  width: 100%;
  background: #fff;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
  padding: 36px 34px 28px;
}

.nri-field + .nri-field {
  margin-top: 34px;
}

.nri-field-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.nri-field-top label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a7c66;
}

.nri-field-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid #e2dcd1;
  border-radius: 3px;
  overflow: hidden;
}

.nri-field-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 42px;
  padding: 0 10px;
  background: #f4efe6;
  border-right: 1px solid #e2dcd1;
  color: #8a7c66;
  font-size: 13px;
}

.nri-field-unit-wide {
  min-width: 62px;
}

.nri-field-input input {
  width: 130px;
  border: none;
  outline: none;
  background: transparent;
  padding: 11px 14px;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* --- slider --- */

.nri-slider {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #e2dcd1;
  outline: none;
  margin: 0;
  cursor: pointer;
}

.nri-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1a1207;
  border: 3px solid #c89a53;
  cursor: pointer;
}

.nri-slider::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1a1207;
  border: 3px solid #c89a53;
  cursor: pointer;
}

.nri-field-scale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #9a9086;
}

/* --- right panel: results --- */

.nri-calc-result {
  width: 100%;
  border-radius: 4px;
  background: #14100b;
  background: linear-gradient(135deg, #1c150d 0%, #2b2115 60%, #14100b 100%);
  padding: 36px 34px;
  color: #fff;
}

.nri-calc-result h3 {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.nri-result-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 26px;
}

.nri-result-rows {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.nri-result-row + .nri-result-row {
  margin-top: 20px;
}

.nri-result-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #a1968a;
  margin-bottom: 6px;
}

.nri-result-value {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.nri-result-suffix {
  font-size: 12px;
  color: #a1968a;
  margin-left: 6px;
}

.nri-result-cta {
  display: block;
  margin-top: 26px;
  background: #000;
  border: 1px solid #3a3025;
  border-radius: 3px;
  color: #fff !important;
  text-align: center;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.nri-result-cta:hover,
.nri-result-cta:focus {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207 !important;
}

/* --- donut --- */

.nri-donut-wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}

.nri-donut {
  position: relative;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: conic-gradient(#c89a53 0 52%, rgba(255, 255, 255, 0.16) 0 100%);
  margin: 0 auto 16px;
}

.nri-donut-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #1c150d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nri-donut-hole span {
  font-size: 26px;
  font-weight: 700;
  color: #d0ad67;
  line-height: 1;
}

.nri-donut-hole small {
  font-size: 11px;
  color: #a1968a;
  margin-top: 4px;
}

.nri-donut-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  color: #a1968a;
}

.nri-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 6px;
}

.nri-dot-principal {
  background: rgba(255, 255, 255, 0.35);
}

.nri-dot-interest {
  background: #c89a53;
}

/* --- currency converter --- */

.nri-currency-head {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.nri-currency-row > [class*="col-"] {
  margin-bottom: 16px;
}

.nri-currency-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a7c66;
}

.nri-currency-input,
.nri-currency-select {
  width: 100%;
  height: 46px;
  border: 1px solid #e2dcd1 !important;
  border-radius: 3px !important;
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
  color: #1a1a1a;
  box-shadow: none !important;
  outline: none;
}

.nri-currency-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.nri-currency-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  height: 46px;
  border-radius: 3px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nri-currency-btn:hover {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207;
}

.nri-currency-btn-ghost {
  background: transparent;
  border-color: #cfc7ba;
  color: #111;
}

.nri-currency-out {
  display: none;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #efeae1;
  text-align: center;
}

.nri-currency-out-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a7c66;
  margin-bottom: 8px;
}

.nri-currency-out .finalValue {
  font-size: 28px;
  font-weight: 800;
  color: #c89a53;
}

/* ---------- Our Projects heading ---------- */

.nri-projects-head {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.25;
}

.nri-projects-head span {
  color: #c89a53;
}

/* The tabs still carried the old orange accent; bring them onto the gold/black
   palette so they sit with the new heading. */
#gallery .mytab > li > a {
  border-color: #ddd5c7;
  border-radius: 3px;
  color: #1a1a1a;
  font-weight: 600;
}

#gallery .mytab > li > a:hover,
#gallery .mytab > li > a:focus {
  border-color: #c89a53;
  color: #1a1207;
  background-color: transparent;
}

#gallery .mytab > li.active > a,
#gallery .mytab > li.active > a:hover,
#gallery .mytab > li.active > a:focus {
  background-color: #c89a53;
  border-color: #c89a53;
  color: #1a1207;
  border-radius: 3px;
}

.nri-projects-sub {
  text-align: center;
  color: #7d7468;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* ---------- 5. NRI Services ---------- */

.nri-services {
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

/* Split header: statement on the left, supporting copy and CTA on the right. */
.nri-services-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}

.nri-services-head-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 380px;
  flex: 1 1 380px;
}

.nri-services-head-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 380px;
  flex: 1 1 380px;
}

.nri-rule-eyebrow-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.nri-rule-eyebrow-left:before {
  display: none;
}

.nri-rule-eyebrow-left:after {
  width: 70px;
}

.nri-services-head-left h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}

.nri-services-head-right p {
  font-size: 15px;
  line-height: 1.85;
  color: #6b6b6b;
  margin: 0 0 22px;
}

/* Hairline grid: cells separated by rules rather than boxed as cards. */
.nri-service-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #e9e3d8;
  border-left: 1px solid #e9e3d8;
}

.nri-service-cell {
  position: relative;
  width: 33.3333%;
  padding: 40px 34px 38px;
  border-right: 1px solid #e9e3d8;
  border-bottom: 1px solid #e9e3d8;
  background: #fff;
  transition: background 0.4s ease;
}

/* Gold wash and a gold left edge on hover. */
.nri-service-cell:after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 0;
  background: #c89a53;
  transition: height 0.45s ease;
}

.nri-service-cell:hover {
  background: #fdfbf7;
}

.nri-service-cell:hover:after {
  height: 100%;
}

.nri-service-index {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #d8cfc0;
  transition: color 0.4s ease;
}

.nri-service-cell:hover .nri-service-index {
  color: #c89a53;
}

.nri-service-icon {
  display: block;
  font-size: 26px;
  color: #c89a53;
  line-height: 1;
  margin-bottom: 24px;
}

.nri-service-cell h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  padding-right: 34px;
}

.nri-service-cell p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b6b6b;
}

.nri-btn-dark {
  display: inline-block;
  background: #000;
  color: #fff !important;
  border: 2px solid #000;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 12px 32px;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.4s ease;
  cursor: pointer;
}

.nri-btn-dark:hover,
.nri-btn-dark:focus {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207 !important;
}

/* ---------- 6. RERA QR strip ---------- */

.nri-qr-sec {
  width: 100%;
  padding: 60px 0 70px;
  background: #faf8f4;
  border-top: 1px solid #eee7db;
}

.nri-qr-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #8a7c66;
  margin: 0 0 30px;
}

.nri-qr-sec .nri-qr-carousel {
  position: relative;
  padding: 0 56px;
}

/* Owl injects the nav after the stage; pin it and draw the buttons ourselves so
   they are always visible regardless of the theme CSS load order. */
.nri-qr-sec .nri-qr-carousel .owl-nav {
  margin: 0 !important;
  position: static !important;
  display: block !important;
  opacity: 1 !important;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev,
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next {
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid #ddd5c7 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #1a1207 !important;
  font-size: 0;
  line-height: 0;
  opacity: 1 !important;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

/* Chevrons drawn in CSS, so a missing arrow image can't leave an empty button. */
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev:after,
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next:after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #1a1207;
  border-right: 2px solid #1a1207;
  transition: border-color 0.3s ease;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-left: 3px;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 3px;
}

/* The <img> arrows Owl was given are redundant next to the CSS chevrons. */
.nri-qr-sec .nri-qr-carousel .owl-nav img {
  display: none !important;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev:hover,
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next:hover {
  background: #c89a53 !important;
  border-color: #c89a53 !important;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev:hover:after,
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next:hover:after {
  border-color: #fff;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev.disabled,
.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next.disabled {
  opacity: 0.35 !important;
  cursor: default;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev {
  left: 0 !important;
  right: auto !important;
}

.nri-qr-sec .nri-qr-carousel .owl-nav .owl-next {
  right: 0 !important;
  left: auto !important;
}

/* Owl sets each item to the stage's item width; keep the tiles level. */
.nri-qr-sec .nri-qr-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nri-qr-item {
  width: 100%;
  background: #fff;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
  padding: 16px 14px 14px;
  text-align: center;
  transition: all 0.35s ease;
}

.nri-qr-item:hover {
  border-color: #c89a53;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nri-qr-item a {
  display: block;
  line-height: 0;
}

.nri-qr-item img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto;
}

.nri-qr-name {
  margin: 12px 0 3px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.nri-qr-code {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #9a9086;
  line-height: 1.3;
}

/* ---------- 7. Contact Us ---------- */

/* style.css puts a fixed photo background on #contactus; the id in the selector
   is needed to outrank it and keep this section white. */
#contactus.nri-contact {
  position: relative;
  width: 100%;
  padding: 85px 0;
  background: #fff;
  border-top: 1px solid #eee7db;
}

.nri-contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nri-contact-row > [class*="col-"] {
  float: none;
}

/* --- left column --- */

.nri-rule-eyebrow-dark > span {
  color: #c89a53;
}

.nri-rule-eyebrow-dark:after {
  background: #cfc4b0;
}

.nri-contact-intro h2 {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}

.nri-contact-intro > p {
  font-size: 15px;
  line-height: 1.85;
  color: #6b6b6b;
  margin: 0 0 34px;
  max-width: 460px;
}

.nri-contact-details {
  border-top: 1px solid #e9e3d8;
}

.nri-contact-item {
  padding: 16px 0;
  border-bottom: 1px solid #e9e3d8;
}

.nri-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a7c66;
  margin-bottom: 6px;
}

.nri-contact-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}

a.nri-contact-link {
  color: #b0863d !important;
  text-decoration: none !important;
  transition: color 0.35s ease;
  word-break: break-word;
}

a.nri-contact-link:hover,
a.nri-contact-link:focus {
  color: #000 !important;
}

a.nri-contact-link .fa {
  margin-right: 8px;
  font-size: 13px;
}

a.nri-contact-link .fa-phone,
a.nri-footer-phone .fa-phone {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nri-contact-address {
  font-size: 13.5px;
  font-weight: 400;
  color: #a9a094;
  line-height: 1.8;
}

/* --- right column: enquiry panel --- */

.nri-contact-panel {
  background: #faf8f4;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
  padding: 38px 34px 32px;
}

/* style.css sets `#contact-form { display: flex }`, which would collapse the
   two-column field grid. */
#contact-form {
  display: block;
}

.nri-contact-panel h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
}

.nri-contact-panel-sub {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0 0 26px;
}

/* Underline-style fields, as on the reference LP. */
.nri-input {
  margin-bottom: 24px;
}

.nri-input > label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #8a7c66;
}

.nri-input > label.error {
  margin: 6px 0 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
}

#contact-form .nri-input input,
#contact-form .nri-input select,
.nri-input input,
.nri-input select {
  width: 100% !important;
  height: 42px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd5c7;
  border-radius: 0;
  padding: 0 2px;
  color: #1a1a1a;
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.35s ease;
}

#contact-form .nri-input input:focus,
#contact-form .nri-input select:focus,
.nri-input input:focus,
.nri-input select:focus {
  border-bottom-color: #c89a53;
}

#contact-form .nri-input input::-webkit-input-placeholder,
.nri-input input::-webkit-input-placeholder { color: #a49a8c; }
.nri-input input::-moz-placeholder { color: #a49a8c; opacity: 1; }
.nri-input input:-ms-input-placeholder { color: #a49a8c; }

/* Native select options render on the OS layer, so keep them readable. */
#contact-form .nri-input select {
  font-size: 15px;
}

#contact-form .nri-input select option,
.nri-input select option {
  color: #1a1a1a;
  background: #fff;
}

/* Chrome autofill would otherwise paint a white box over the dark panel. */
.nri-input input:-webkit-autofill,
.nri-input input:-webkit-autofill:hover,
.nri-input input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 1000px #faf8f4 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.nri-contact-submit {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: #c89a53;
  border: 1px solid #c89a53;
  border-radius: 3px;
  color: #1a1207;
  padding: 15px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nri-contact-submit:hover,
.nri-contact-submit:focus {
  background: transparent;
  color: #d0ad67;
  outline: none;
}

.nri-contact-consent {
  margin: 14px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: #8a7c66;
  line-height: 1.6;
}

/* --- map --- */

.nri-contact-map {
  margin-top: 45px;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.nri-contact-map iframe {
  display: block;
  width: 100%;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  /* These rows are laid out with flexbox for equal-height columns, but their
     children are col-md-* only. Below the md breakpoint Bootstrap gives those
     columns no width, so as flex items they would shrink to their content.
     Fall back to normal block flow. */
  .nri-calc-row,
  .nri-contact-row,
  .nri-overview-row {
    display: block;
  }

  .nri-calc-row > [class*="col-"],
  .nri-contact-row > [class*="col-"],
  .nri-overview-row > [class*="col-"] {
    display: block;
  }

  .nri-why-card {
    padding: 32px 22px 28px;
  }

  .nri-why-num {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .nri-offer-strip {
    padding: 12px 32px 12px 0;
  }

  .nri-marquee-item {
    font-size: 12px;
    letter-spacing: 0.3px;
    padding: 0 22px;
  }

  .nri-marquee-item:after {
    margin-left: 22px;
  }

  /* The navbar sits directly under the strip (43px). The banner offsets are
     measured values: at this width the slide already clears the navbar by
     50px, so they make up the remainder. */
  body.has-offer-strip #hide-menu {
    top: 43px;
  }

  body.has-offer-strip .carousel-inner .item {
    margin-top: 60px;
  }

  body.offer-strip-closed .carousel-inner .item {
    margin-top: 17px;
  }

  .nri-sec {
    padding: 45px 0;
  }

  .nri-service-card {
    min-height: 0;
  }

  .nri-sec.nri-sec-dark {
    padding: 50px 0;
  }

  .sec-head.nri-sec-head-light {
    font-size: 24px;
  }

  .nri-sec-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nri-sec-sub.nri-sec-sub-light {
    margin-bottom: 32px;
  }

  .nri-why-card {
    padding: 28px 20px 26px;
    margin-bottom: 20px;
  }

  .nri-card-media img {
    height: 200px;
  }

  .nri-card-actions {
    display: block;
  }

  .nri-card-btn {
    display: block;
    width: 100%;
  }

  .nri-card-btn + .nri-card-btn {
    margin-top: 8px;
  }

  /* calculator */
  .nri-calc {
    padding: 50px 0;
  }

  .nri-rule-eyebrow:before,
  .nri-rule-eyebrow:after {
    width: 40px;
  }

  .nri-calc-head {
    font-size: 24px;
  }

  .nri-calc-note {
    margin-bottom: 30px;
  }

  .nri-calc-panel,
  .nri-calc-result {
    padding: 26px 20px;
  }

  .nri-field-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nri-field-input input {
    width: 105px;
    font-size: 17px;
  }

  .nri-result-grid {
    display: block;
  }

  .nri-donut-wrap {
    margin-top: 30px;
  }

  .nri-result-value {
    font-size: 21px;
  }

  /* services */
  .nri-services {
    padding: 50px 0;
  }

  .nri-services-head {
    display: block;
    margin-bottom: 32px;
  }

  .nri-services-head-left h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .nri-service-cell {
    width: 100%;
    padding: 28px 22px;
  }

  /* overview */
  .nri-overview {
    padding: 45px 0;
  }

  .nri-overview-intro {
    padding-right: 0;
  }

  .nri-overview-intro h2 {
    font-size: 24px;
  }

  .nri-stats {
    display: block;
    margin-top: 30px;
  }

  .nri-stat {
    padding: 18px 0;
  }

  .nri-stat + .nri-stat {
    border-left: none;
    border-top: 1px solid #e9e3d8;
  }

  .nri-overview-panel {
    margin-top: 34px;
    padding: 26px 20px 24px;
  }

  /* QR */
  .nri-qr-sec {
    padding: 40px 0 45px;
  }

  .nri-qr-sec .nri-qr-carousel {
    padding: 0 42px;
  }

  .nri-qr-sec .nri-qr-carousel .owl-nav .owl-prev,
  .nri-qr-sec .nri-qr-carousel .owl-nav .owl-next {
    width: 34px;
    height: 34px;
  }

  .nri-qr-item {
    padding: 12px 10px 10px;
  }

  .nri-qr-item img {
    width: 88px;
    height: 88px;
  }

  /* contact */
  .nri-contact {
    padding: 50px 0;
  }

  .nri-contact-intro h2 {
    font-size: 24px;
  }

  .nri-contact-panel {
    margin-top: 36px;
    padding: 26px 20px 24px;
  }

  .nri-contact-map {
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .nri-service-cell {
    width: 50%;
  }
}

/* ---------- 8. Fixed floating CTAs ---------- */

/* style.css pins these to a black background with !important, so match it. */
.interested,
.dwnld,
button.interested,
button.dwnld {
  background: #c89a53 !important;
  border: 1px solid #c89a53 !important;
  color: #1a1207 !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: all 0.35s ease;
}

/* style.css rotates .dwnld -90deg and pins it to the right edge below 768px.
   The mobile fixed footer already carries Call Now / Enquire Now, so drop that
   vertical tab rather than stack a third CTA on top of it. */
@media (max-width: 767px) {
  .dwnld,
  button.dwnld {
    display: none !important;
  }
}

.interested:hover,
.interested:focus,
.dwnld:hover,
.dwnld:focus {
  background: #f4efe6 !important;
  border-color: #c89a53 !important;
  color: #1a1207 !important;
}

/* ---------- 9. Footer ---------- */

.nri-footer {
  width: 100%;
  background: #14100b;
  background: linear-gradient(135deg, #14100b 0%, #241b11 55%, #0e0c08 100%);
  border-top: 2px solid #c89a53;
  padding: 55px 0 30px;
  color: #a9a094;
}

.nri-footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(200, 154, 83, 0.22);
}

.nri-footer-brand {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.nri-footer-brand img {
  max-width: 150px;
  height: auto;
}

.nri-footer-office {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
}

.nri-footer-reach {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.nri-footer-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8d8377;
  margin-bottom: 12px;
}

.nri-footer-office p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #a9a094;
}

a.nri-footer-phone {
  display: block;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 700;
  color: #d0ad67 !important;
  text-decoration: none !important;
  transition: color 0.35s ease;
}

a.nri-footer-phone:hover,
a.nri-footer-phone:focus {
  color: #fff !important;
}

a.nri-footer-phone .fa {
  margin-right: 8px;
  font-size: 14px;
}

.nri-footer-cta {
  font-size: 12px;
  padding: 11px 24px;
  background: transparent;
  border-color: #c89a53;
  color: #d0ad67 !important;
}

.nri-footer-cta:hover,
.nri-footer-cta:focus {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207 !important;
}

.nri-footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.nri-footer-copy {
  margin: 0 0 12px;
  font-size: 13px;
  color: #a9a094;
}

.nri-footer-copy a {
  color: #c89a53 !important;
  text-decoration: none !important;
  margin-left: 6px;
}

.nri-footer-copy a:hover {
  color: #fff !important;
}

.nri-footer-disc {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.8;
  color: #7d7468;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .nri-footer {
    padding: 40px 0 90px;
  }

  .nri-footer-top {
    display: block;
    text-align: center;
  }

  .nri-footer-brand,
  .nri-footer-office {
    margin-bottom: 26px;
  }

  .nri-footer-brand img {
    margin: 0 auto;
  }

  .nri-projects-head {
    font-size: 24px;
  }
}

/* ---------- 10. Thank-you page ---------- */

.nri-ty {
  padding: 90px 0 100px;
  background: #fff;
}

.nri-ty > .container {
  width: 100%;
}

.nri-ty-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 44px 44px;
  text-align: center;
  background: #faf8f4;
  border: 1px solid #e6e0d5;
  border-radius: 4px;
}

.nri-ty-tick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #c89a53;
  color: #1a1207;
  font-size: 28px;
  box-shadow: 0 0 0 8px rgba(200, 154, 83, 0.16);
}

.nri-ty-eyebrow {
  display: block;
  color: #b0863d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.nri-ty-head {
  margin: 0 0 18px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.nri-ty-lead {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.85;
  color: #6b6b6b;
}

/* --- what happens next --- */

.nri-ty-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  border-top: 1px solid #e9e3d8;
  border-bottom: 1px solid #e9e3d8;
}

.nri-ty-step {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  padding: 26px 22px;
}

.nri-ty-step + .nri-ty-step {
  border-left: 1px solid #e9e3d8;
}

.nri-ty-step-num {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b0863d;
}

.nri-ty-step h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
}

.nri-ty-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #6b6b6b;
}

/* --- actions --- */

.nri-ty-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

a.nri-ty-btn {
  display: inline-block;
  background: #c89a53;
  border: 1px solid #c89a53;
  border-radius: 3px;
  color: #1a1207 !important;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

a.nri-ty-btn:hover,
a.nri-ty-btn:focus {
  background: transparent;
  color: #1a1207 !important;
}

a.nri-ty-btn .fa {
  margin-right: 8px;
}

a.nri-ty-btn-ghost {
  background: transparent;
  border-color: #cfc7ba;
  color: #1a1207 !important;
}

a.nri-ty-btn-ghost:hover,
a.nri-ty-btn-ghost:focus {
  background: #c89a53;
  border-color: #c89a53;
  color: #1a1207 !important;
}

@media (max-width: 767px) {
  .nri-ty {
    min-height: 0;
    padding: 45px 0;
  }

  .nri-ty-card {
    padding: 34px 20px 30px;
  }

  .nri-ty-head {
    font-size: 26px;
  }

  .nri-ty-tick {
    width: 60px;
    height: 60px;
    font-size: 23px;
  }

  .nri-ty-steps {
    display: block;
  }

  .nri-ty-step {
    padding: 20px 0;
  }

  .nri-ty-step + .nri-ty-step {
    border-left: none;
    border-top: 1px solid #e9e3d8;
  }

  .nri-ty-actions {
    display: block;
  }

  a.nri-ty-btn {
    display: block;
  }

  a.nri-ty-btn + a.nri-ty-btn {
    margin-top: 10px;
  }
}

/* ---------- 11. Popup / modal forms ---------- */

/* All nine lead modals (main popup, price popup, enquire now and the six
   per-project virtual-call modals) share one markup shape, so they are
   restyled here rather than rewritten. style.css targets several of them by
   id, hence the !important on the properties that clash. */

.modal-backdrop.in {
  opacity: 0.6;
}

.modal-dialog {
  margin-top: 60px;
}

.modal-content {
  background: #fff;
  border: 1px solid #e6e0d5;
  border-top: 3px solid #c89a53;
  border-radius: 4px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

/* --- header --- */

.modal-content .modal-header {
  background: transparent !important;
  border: none;
  border-radius: 0;
  padding: 32px 34px 0 !important;
  text-align: center;
}

.modal-content .modal-title {
  color: #1a1a1a;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Gold rule under the title. */
.modal-content .modal-header:after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 16px auto 0;
  background: #c89a53;
}

.modal-content .modal-header .close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2dcd1;
  background: #fff;
  color: #8a7c66;
  font-size: 20px !important;
  font-weight: 400;
  line-height: 28px;
  opacity: 1;
  text-shadow: none;
  transition: all 0.3s ease;
}

.modal-content .modal-header .close:hover,
.modal-content .modal-header .close:focus {
  background: #c89a53 !important;
  border-color: #c89a53;
  color: #1a1207;
}

/* --- body --- */

.modal-content .modal-body {
  padding: 20px 34px 32px;
  border-radius: 0;
  background: transparent;
}

.modal-content .modal-body > p {
  margin: 0 0 26px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b6b6b;
}

/* --- fields --- */

.modal-content .modal-body .form-group {
  height: auto !important;
  width: 100%;
  float: none;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 18px !important;
}

/* Boxed field: icon cell + input, matching the on-page panels. */
.modal-content .modal-body .input-group {
  width: 100%;
  background: #faf8f4;
  border: 1px solid #e2dcd1;
  border-radius: 3px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.modal-content .modal-body .input-group:focus-within {
  border-color: #c89a53;
  background: #fff;
}

.modal-content .modal-body .input-group-addon {
  width: 44px;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0;
  color: #c89a53 !important;
  font-size: 14px;
  text-align: center;
}

.modal-content .modal-body .input-group-addon .form-ico {
  font-size: 15px !important;
}

.modal-content .modal-body input,
.modal-content .modal-body select,
.modal-content .modal-body textarea,
.modal-content .modal-body .form-control {
  height: 46px !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  padding: 0 12px 0 0;
  color: #1a1a1a !important;
  font-size: 15px;
  letter-spacing: 0 !important;
  outline: none;
}

.modal-content .modal-body input::-webkit-input-placeholder { color: #a49a8c !important; }
.modal-content .modal-body input::-moz-placeholder { color: #a49a8c !important; opacity: 1; }
.modal-content .modal-body input:-ms-input-placeholder { color: #a49a8c !important; }

.modal-content .modal-body select option {
  color: #1a1a1a;
  background: #fff;
}

/* Keep autofill inside the field's own colours. */
.modal-content .modal-body input:-webkit-autofill,
.modal-content .modal-body input:-webkit-autofill:hover,
.modal-content .modal-body input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 1000px #faf8f4 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.modal-content .modal-body label.error {
  display: block;
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
}

/* --- submit --- */

.modal-content .modal-body .price-btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px 18px;
  background: #c89a53 !important;
  border: 1px solid #c89a53;
  border-radius: 3px;
  color: #1a1207;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none;
  transition: all 0.35s ease;
}

.modal-content .modal-body .price-btn:hover,
.modal-content .modal-body .price-btn:focus {
  background: #1a1207 !important;
  border-color: #1a1207;
  color: #fff;
}

@media (max-width: 767px) {
  .modal-dialog {
    margin-top: 70px;
  }

  .modal-content .modal-header {
    padding: 26px 20px 0 !important;
  }

  .modal-content .modal-title {
    font-size: 19px;
  }

  .modal-content .modal-body {
    padding: 16px 20px 24px;
  }

  .modal-content .modal-body > p {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
