
/* ══════════════════════════════════════════════════════════
   port.css
   ══════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #111;
  overflow-x: hidden;
  width: 100%;
}
html{
 /* overflow-x: hidden; */
  width: 100%;
  scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  text-transform: uppercase;
}

p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.4px;
  color: #000;
}

.main-heading {
  letter-spacing: 8px;
  font-weight: 400;
}
.menu-num{
        background: #ba570f;
    margin: 0;
    padding: 10px !important;
    color: #fff !important;
    border-radius: 4px;
}

.sub-heading {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 12px;
}

.main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-style: normal;
  letter-spacing: 0px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.9;
  max-width: 620px;
}

/* ─── LOADER ─── */
#luxury-loader {
  position: fixed;
  inset: 0;
  background: url("../image/b-loader.webp");
  background-size: cover;
  background-position: left;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.loader-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 200;
  letter-spacing: 14px;
  color: #fff;
  opacity: 0;
}

.loader-logo img {
  width: 210px;
  object-fit: contain;
}

.loader-line-wrap {
  width: 210px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.loader-line {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ba570f, #e0c98a, #ba570f);
}

.loader-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  letter-spacing: 6px;
  color: #ba570f;
  text-transform: uppercase;
  opacity: 0;
}


/* ─── SCHEDULE SITE VISIT MODAL ─── */
.svm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 16, 10, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.svm-overlay.active {
  opacity: 1;
  visibility: visible;
}

.svm-modal {
  width: 100%;
  max-width: 960px;
  max-height: auto;
  background: #fff;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.9,.25,1), opacity 0.5s ease;
  overflow: hidden;
  border-radius: 6px;
}

.svm-overlay.active .svm-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.svm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
}

.svm-close:hover {
  background: #ba570f;
  color: #fff;
  transform: rotate(90deg);
}

.svm-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-height: 90vh;
}

.svm-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.svm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svm-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}

.svm-img-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 26px;
  color: #fff;
}

.svm-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.svm-caption-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.svm-caption-list li {
  margin-bottom: 8px;
  opacity: 0.9;
}

.svm-caption-list i {
  color: #ff8f0c;
  margin-right: 8px;
}

.svm-content {
  padding: 20px 42px;
  overflow-y: auto;
}

.svm-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.svm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svm-field {
  margin-bottom: 16px;
  position: relative;
}

.svm-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 6px;
}

.svm-field input,
.svm-field select,
.svm-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.svm-field input:focus,
.svm-field select:focus,
.svm-field textarea:focus {
  border-color: #ba570f;
  background: #fff;
}

.svm-field textarea {
  resize: none;
  min-height: 80px;
}

.svm-select-wrap select {
  appearance: none;
  padding-right: 34px;
}

.svm-select-arrow {
  position: absolute;
  right: 14px;
  top: 38px;
  font-size: 12px;
  color: #888;
  pointer-events: none;
}

.svm-submit-btn {
  width: 100%;
  text-align: center;
  margin-top: 6px;
  cursor: pointer;
  background: transparent;
}

.svm-status {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}

@media (max-width: 767px) {
  .svm-grid {
    grid-template-columns: 1fr;
  }
  .svm-content h2{
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .svm-field{
    margin-bottom: 12px;
  }
  .svm-desc{
    margin-bottom: 16px;
  }
  .svm-img { min-height: 180px; }
  .svm-row { grid-template-columns: 1fr;gap: 2px; }
  .svm-content { padding: 16px 24px; }
  .svm-modal { max-height: 94vh; }
}




/* ─── NAVBAR ─── */
.baranwal-header {
  width: 100%;
  background: transparent;
  padding: 10px 28px;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: background 0.3s ease;
}

.baranwal-header.scrolled {
  background: #f7f6f3;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-bottom: 1px solid;
  border-image: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%) 1;
}

.baranwal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.baranwal-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #111;
  text-decoration: none;
}

.main-logo img {
  width: 90px;
  object-fit: contain;
}

.baranwal-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.baranwal-menu li {
  position: relative;
}

.baranwal-menu li a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.baranwal-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: #D4AF37;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.baranwal-menu li a:hover::after {
  width: 100%;
}

.baranwal-menu li a:hover {
  color: #D4AF37;
  transition: color 0.3s ease;
}

.baranwal-header.scrolled .baranwal-menu li a {
  color: #ba570f;
}

.baranwal-header.scrolled .baranwal-menu li a:hover {
  color: #D4AF37;
}

.baranwal-menu li a i {
  font-size: 10px;
  margin-left: 8px;
}

.baranwal-dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  min-width: 210px;
  background: #fff;
  list-style: none;
  padding: 14px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.baranwal-dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  letter-spacing: 2px;
  font-size: 11px;
}

.baranwal-dropdown:hover .baranwal-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hamburger */
.baranwal-hamburger {
  width: 34px;
  height: 17px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  align-items: end;
}

.baranwal-hamburger span {
  height: 1.5px;
  background: #ffffff;
  display: block;
  transition: width 0.3s ease;
}

.baranwal-header.scrolled .baranwal-hamburger span {
  background: #000;
}

.ham-one {
  width: 100%;
}

.ham-two {
  width: 80%;
}

.ham-three {
  width: 60%;
}

.baranwal-hamburger:hover span {
  width: 100% !important;
  height: 1.5px;
}

/* Full Menu */
.baranwal-full-menu {
  position: fixed;
  width: 100%;
  inset: 0;
  background: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.75s cubic-bezier(.77, 0, .18, 1);
}

.baranwal-full-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.baranwal-menu-img {
  height: 100vh;
  background: url("../image/projectlotus.webp") center/cover no-repeat;
  transform: scale(1.08);
  transition: 1s ease;
}

.baranwal-full-menu.active .baranwal-menu-img {
  transform: scale(1);
}

.baranwal-menu-content {
  height: 100vh;
  padding: 70px 0 0;
  position: relative;
  overflow-y: auto;
}

.baranwal-close {
  position: absolute;
  top: 60px;
  right: 70px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  font-size: 14px;
  cursor: pointer;
}

.baranwal-close i {
  font-size: 22px;
}

.baranwal-close:hover i {
  animation: rotateOnce 0.6s ease;
}

@keyframes rotateOnce {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.baranwal-full-list {
  list-style: none;
  padding: 50px 0 0;
  margin: 0;
}

.baranwal-full-list>li {
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
}

.baranwal-full-list>li>a,
.baranwal-full-dropdown>button {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 1rem;
  align-items: center;
  border: none;
  background: transparent;
  padding: 24px 70px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: letter-spacing 0.4s ease, color 0.3s ease;
}

.baranwal-full-list>li>a::after,
.baranwal-full-dropdown>button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ba570f;
  transition: width 0.5s ease;
}

.baranwal-full-list>li>a:hover::after,
.baranwal-full-dropdown>button:hover::after {
  width: 100%;
}

.baranwal-full-list>li>a:hover,
.baranwal-full-dropdown>button:hover {
  color: #ba570f;
  letter-spacing: 9px;
}

.baranwal-full-dropdown>button i {
  font-size: 13px;
  transition: 0.3s ease;
}

.baranwal-full-dropdown.active>button i {
  transform: rotate(180deg);
}

.baranwal-full-dropdown ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 70px 22px;
}

.baranwal-full-dropdown ul li a {
  display: block;
  padding: 9px 0;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s, letter-spacing 0.3s;
}

.baranwal-full-dropdown ul li a:hover {
  color: #ba570f;
  letter-spacing: 5px;
}



/* ═══ shared section rhythm — 80px top & bottom on every screen size ═══ */
.section-pad {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* ═══ 1. PAGE HERO ═══ */
.project-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0rem;
    color: #fff;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0.527) 40%, rgba(0, 0, 0, .75) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.project-hero-content .sub-heading {
    color: rgba(255, 255, 255, .75);
}

.project-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 55px);
    letter-spacing: 0px;
    line-height: 1.05;
    color: #fff;
    margin: 14px 0 22px;
    text-transform: uppercase;
}

.project-hero-title span {
    background: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-hero-tag {
    color: rgba(255, 255, 255, .85) !important;
    font-size: 16px;
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto 32px;
}

.project-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
}

.project-hero-meta i {
    color: #e8820a;
    margin-right: 8px;
}



















/* ─── BANNER ─── */
.baranwal-banner {
  position: relative;
  width: 100%;
  height: 99vh;
  overflow: hidden;
}

.baranwal-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
}

.baranwal-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 13%);
  z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.scroll-mouse {
  width: 22px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ─── ABOUT ─── */
#about {
  position: relative;
  background: #f7f4ef;
  overflow: hidden;
  padding: 80px 0;
}



.project-intro .container-fluid {
  z-index: 1;
}

.about-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-heading p {
  max-width: 700px;
  text-align: center;
  color: #000000;
}

.about-des {
  padding: 1.5rem 3rem 3rem 1rem;
}

.object-fit-cover {
  object-fit: cover;
}

/* Image reveal clip */
.img-reveal-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.img-reveal-wrap img {
  transform: scale(1.08);
  transition: transform 1.6s ease;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.img-reveal-wrap.revealed {
  clip-path: inset(0 0% 0 0);
}

.img-reveal-wrap.revealed img {
  transform: scale(1);
}

/* Gold line divider */
.gold-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ba570f, transparent);
  margin: 0 auto 20px;
  transition: width 1s ease 0.3s;
}

.gold-line.visible {
  width: 120px;
}

.luxury-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  padding: 14px 32px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.luxury-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: #c77c19; */
  background: #ba570f;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
  z-index: -1;
}

.luxury-btn:hover::before {
  transform: translateX(0);
}

.luxury-btn span,
.luxury-btn {
  position: relative;
  z-index: 1;
}

.luxury-btn:hover {
  color: #fff;
   border: 1px solid #ba570f;
}

/* ─── KEY FEATURES ─── */
#key-features {
  background-image: url("../image/shade_bg.svg");
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.kf-header {
  text-align: center;
  padding: 0 20px 50px;
}

.kf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

.kf-row.reverse {
  direction: rtl;
}

.kf-row.reverse>* {
  direction: ltr;
}

.kf-row.reverse .kf-wipe {
  transform: translateX(0%) scaleX(-1);
}

.kf-img-pane {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.kf-img-pane img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: left;
  display: block;
  transform: scale(1.12);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.kf-wipe {
  position: absolute;
  inset: 0;
  background: #f7f4ef;
  transform: translateX(0%);
  z-index: 3;
  pointer-events: none;
}

.kf-img-pane:hover img {
  transform: scale(1);
}

.kf-img-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.kf-content-pane {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 60px 64px;
  position: relative;
}

.kf-content-pane::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: -1px;
  width: 4px;
  background: linear-gradient(180deg, transparent, #ba570f, transparent);
  opacity: 0.4;
}

.kf-row.reverse .kf-content-pane::before {
  left: auto;
  right: -1px;
}

.kf-content-inner {
  max-width: 520px;
}
.kf-content-inner p{
    text-align:justify;
}

.kf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 300;
  line-height: 1;
  color: #1b3228;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 2px;
  user-select: none;
}

.kf-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.kf-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #1b3228;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b3228;
  font-size: 15px;
  flex-shrink: 0;
}

.kf-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
}

.kf-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 18px;
  display: inline-block;
  margin-bottom: 17px;
  background: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kf-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, #ba570f, transparent);
  margin-bottom: 12px;
}

.kf-row.kf-last {
  display: block;
  position: relative;
  min-height: 560px;
}

.kf-last .kf-img-pane {
  width: 100%;
  height: 560px;
}

.kf-last-card {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  padding: 52px 52px;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-top: 2px solid #ba570f;
}

/* ─── WHY INVEST ─── */
.why-invest-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../image/home_whyus_bg.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

.why-invest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      #f7f4ef 0%,
      rgba(247, 244, 239, 0.55) 12%,
      rgba(247, 244, 239, 0.15) 28%,
      rgba(247, 244, 239, 0.15) 72%,
      rgba(247, 244, 239, 0.55) 88%,
      #f7f4ef 100%);
  z-index: 1;
}

.why-invest-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  background: linear-gradient(rgb(27 50 40), rgb(27 50 40 / 79%)), url(../image/director-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 60px 70px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.why-invest-card .sub-title {
  margin: 0 auto 10px;
  color: #fff !important;
}

.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0 45px;
  border-top: 1px solid rgba(155, 122, 69, 0.25);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 22px 26px 0;
  border-bottom: 1px solid rgba(155, 122, 69, 0.25);
}

.why-invest-grid .why-item:nth-child(3n+1),
.why-invest-grid .why-item:nth-child(3n+2) {
  border-right: 1px solid rgba(155, 122, 69, 0.25);
  padding-right: 22px;
}

.why-invest-grid .why-item:nth-child(3n+2),
.why-invest-grid .why-item:nth-child(3n+3) {
  padding-left: 22px;
}

.why-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  margin-top: 2px;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #fff !important;
}
.why-invest-section .luxury-btn{
  border: 1px solid #fff;
  color: #ffff;
}

/* ─── MODERN ─── */
#modern {
  position: relative;
  background-image: url("../image/news_line.webp");
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
  height: 80vh;
  z-index: 0;
  overflow: hidden;
}

#modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}

.modern-div {
  position: relative;
  z-index: 9;
}

.mirror {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.mirror:last-child {
  border-right: none;
}

.mirror::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 122, 69, 0.18), rgba(255, 255, 255, 0.04));
  opacity: 0;
  transition: all 0.5s ease;
}

.mirror:hover::before {
  opacity: 1;
}

.mirror:hover {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mirror-content {
  max-width: 360px;
  position: relative;
  z-index: 2;
  transform: translateY(45px);
  transition: all 0.5s ease;
}

.mirror:hover .mirror-content {
  transform: translateY(0);
}

.mirror-content span {
  display: inline-block;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 18px;
  opacity: 0.8;
  font-family: 'Montserrat', sans-serif;
}

.mirror-content h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.hiden-con {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.mirror:hover .hiden-con {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 260px;
}

.hiden-con p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85) !important;
}

.mirror-content .luxury-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 11px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.mirror-content .luxury-btn::before {
  background: #fff;
  border-radius: 30px;
  color: #000;
}

.mirror-content .luxury-btn:hover {
  color: #000;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  position: relative;
  overflow: hidden;
  background: url("../image/shade_bg.svg");
  padding: 80px 0;
}



.testi-carousel .owl-stage-outer {
  padding-top: 55px;
  margin-top: -55px;
}

.testi-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testi-carousel .owl-item {
  display: flex;
  height: auto;
  opacity: 0.78;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testi-carousel .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
}

.testi-card {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 36px 38px;
  background: #fff;
  border: 1px solid rgba(155, 122, 69, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  position: relative;
}

.testi-carousel .owl-item.active.center .testi-card {
  box-shadow: 0 25px 60px rgba(155, 122, 69, 0.18);
  border-color: rgba(155, 122, 69, 0.4);
}

.testi-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin-top: -46px;
  margin-bottom: 18px;
  padding: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  flex-shrink: 0;
}

.testi-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
  z-index: -1;
}

.testi-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.testi-stars {
  margin-bottom: 18px;
}

.testi-stars i {
  color: #c67529;
  font-size: 14px;
  margin: 0 2px;
}

.testi-quote-short {
  font-size: 14.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 22px;
  max-width: 380px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testi-name {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}

.testi-role {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ba570f;
  margin-bottom: 22px;
}

.testi-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  padding: 6px 2px;
  position: relative;
}

.testi-readmore::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ba570f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.testi-readmore:hover::after {
  transform: scaleX(1);
}

.testi-readmore i {
  font-size: 11px;
  color: #ba570f;
  transition: transform 0.35s ease;
}

.testi-readmore:hover i {
  transform: translateX(5px);
}

.testi-bottom {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.testi-nav {
  display: flex;
  gap: 15px;
}

.testi-prev,
.testi-next {
  width: 52px;
  height: 52px;
  /* border-radius: 50%; */
  border: 1px solid rgba(155, 122, 69, 0.45);
  background: transparent;
  color: #ba570f;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-prev:hover,
.testi-next:hover {
  background: #ba570f;
  color: #fff;
  transform: translateY(-3px);
}

/* ─── TESTIMONIAL MODAL ─── */
.testi-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(20, 16, 10, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.testi-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.testi-modal {
  width: 100%;
  max-width: 920px;
  max-height: 86vh;
  background: #fff;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2, .9, .25, 1), opacity 0.5s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testi-modal-overlay.active .testi-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.testi-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 17px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
}

.testi-modal-close:hover {
  background: #ba570f;
  color: #fff;
  transform: rotate(90deg);
}

.testi-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-height: 86vh;
}

.testi-modal-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.testi-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-modal-wipe {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0%);
  z-index: 2;
  pointer-events: none;
}

.testi-modal-overlay.active .testi-modal-wipe {
  transition: transform 0.9s cubic-bezier(.65, 0, .15, 1) 0.15s;
  transform: translateX(101%);
}

.testi-modal-content {
  padding: 56px 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.testi-modal-quote-icon {
  color: #f0e8d8;
  font-size: 34px;
  margin-bottom: 18px;
}

.testi-modal-stars {
  margin-bottom: 20px;
}

.testi-modal-stars i {
  color: #c67529;
  font-size: 15px;
  margin-right: 3px;
}

.testi-modal-text {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.95;
  color: #555;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.testi-modal-divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, #ba570f, transparent);
  margin-bottom: 18px;
}

.testi-modal-name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 6px;
}

.testi-modal-role {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ba570f;
}

/* ─── FAQ ─── */
#faq {
  background: #f7f4ef;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-leaf {
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  height: 500px;
  background: url(../image/leaf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  transform: scaleX(-1);
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.faq-header .sub-title {
  max-width: 600px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 120px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(155, 122, 69, 0.2);
  padding: 10px 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.faq-cat-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(155, 122, 69, 0.12), transparent);
  transition: width 0.4s ease;
}

.faq-cat-btn:hover::before,
.faq-cat-btn.active::before {
  width: 100%;
}

.faq-cat-btn.active {
  border-color: #ba570f;
  color: #ba570f;
  border-left: 3px solid #ba570f;
}

.faq-cat-btn:hover {
  color: #ba570f;
  border-color: rgba(155, 122, 69, 0.5);
}

.faq-cat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(155, 122, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ba570f;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.faq-cat-btn.active .faq-cat-icon,
.faq-cat-btn:hover .faq-cat-icon {
  background: #ba570f;
  color: #fff;
  border-color: #ba570f;
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid rgba(155, 122, 69, 0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(155, 122, 69, 0.2);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ba570f;
}

.faq-question[aria-expanded="true"] {
  color: #ba570f;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(155, 122, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ba570f;
  font-size: 12px;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: #ba570f;
  color: #fff;
  border-color: #ba570f;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  padding-right: 52px;
}

/* ─── CONTACT ─── */
#contact.lf-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  overflow: hidden;
}

.lf-img-pane {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.lf-img-pane>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1.8s ease;
}

.lf-img-pane.revealed>img {
  transform: scale(1);
}

.lf-wipe {
  position: absolute;
  inset: 0;
  background: #f7f4ef;
  transform: translateX(0%);
  z-index: 3;
  pointer-events: none;
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.15, 1);
}

.lf-img-pane.revealed .lf-wipe {
  transform: translateX(101%);
}

.lf-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 14, 6, 0.65) 0%, rgba(20, 14, 6, 0.38) 55%, rgba(155, 122, 69, 0.15) 100%);
  z-index: 2;
}

.lf-trust-card {
  position: absolute;
  bottom: 44px;
  left: 44px;
  right: 44px;
  background:linear-gradient(rgb(27 50 40 / 99%), rgba(27, 50, 40, 0.75)), url(../image/director-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  border: 1px solid rgba(155, 122, 69, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px 32px;
  z-index: 4;
}

.lf-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lf-trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.4px;
  line-height: 1.5;
}

.lf-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c77c19;
  flex-shrink: 0;
}

.lf-form-pane {
  background: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 54px;
  position: relative;
}
.lf-desc{
  margin-bottom: 30px;
}

/* .lf-form-pane::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  background: url(../image/leaf2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
} */

.lf-form-inner {
  width: 100%;
  max-width: 90%;
}

.lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}

.lf-field {
  margin-bottom: 24px;
  position: relative;
}

.lf-field label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  /* letter-spacing: 1.5px;
  text-transform: uppercase; */
  color: #353535;
  margin-bottom: 8px;
}

.lf-field input,
.lf-field select,
.lf-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(155, 122, 69, 0.3);
  background: #ffffff;
  padding: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  letter-spacing: 0.3px;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.lf-field input::placeholder,
.lf-field textarea::placeholder {
  color: #bbb;
}

.lf-field input:focus,
.lf-field select:focus,
.lf-field textarea:focus {
  border-color: #ba570f;
}

.lf-field textarea {
  resize: none;
  height: 72px;
}

.lf-select-wrap {
  position: relative;
}

.lf-select-arrow {
  position: absolute;
  right: 9px;
  bottom: 12px;
  font-size: 10px;
  color: #ba570f;
  pointer-events: none;
}

.lf-submit-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 4px;
  background: #fff;
}

.lf-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  color: #bbb;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lf-or::before,
.lf-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(155, 122, 69, 0.2);
}

.lf-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(155, 122, 69, 0.4);
  background: transparent;
  padding: 14px;
  cursor: pointer;
  color: #ba570f;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.lf-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.lf-whatsapp:hover {
  background: rgba(155, 122, 69, 0.1);
  color: #ba570f;
}

.lf-privacy {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  background: #ede5d6;
  padding: 90px 0 0;
  color: #111;
  font-family: inherit;
  overflow: hidden;
}


.footer-leaf {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  height: 220px;
  background: url(../image/leaf2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.site-footer .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 11px;
  padding-bottom: 60px;
}

.footer-col-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ba570f;
  margin-bottom: 26px;
}

.footer-logo img {
  width: 130px;
  object-fit: contain;
  margin-bottom: 22px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  max-width: 320px;
  margin-bottom: 26px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(155, 122, 69, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ba570f;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

/* .footer-links-list a::before {
  content: '—';
  color: #ba570f;
  margin-right: 8px;
  opacity: 0.6;
  transition: margin-right 0.3s ease;
} */

.footer-links-list a:hover {
  color: #ba570f;
}

.footer-links-list a:hover::before {
  margin-right: 12px;
}

.footer-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 13px 22px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-brochure-btn:hover {
  background: #ba570f;
  transform: translateY(-2px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.footer-contact-list i {
  color: #ba570f;
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #ba570f;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 122, 69, 0.35), transparent);
}

.footer-disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
}

.footer-badges {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.badge-box {
  width: 72px;
  height: 58px;
  border: 1.5px solid #ba570f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  line-height: 1.1;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.badge-box:hover {
  background: #ba570f;
  color: #fff;
}

.badge-box span {
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.85;
  color: #000000;
  margin: 0;
  font-style: italic;
}

.footer-disclaimer i {
  color: #ba570f;
  margin-right: 6px;
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.footer-bottom a {
  color: #ba570f;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.project-intro::before,
.project-intro::after,
#testimonials::before,
#testimonials::after,
.stages-section::before,
.am-section::before,
.am-section::after,
.pricing-section::before,
.pricing-section::after{
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;      
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* individual position + image only */
.project-intro::before {
  left: 0; top: 0;
  background-image: url(../image/lotus-e.png);
}
.project-intro::after {
  right: 0; bottom: 0;
  background-image: url(../image/lotus-s.png);
}
#testimonials::before {
  right: 0; top: 0;
  background-image: url(../image/lotus-f.png);
}
.am-section::before{
    right: 0; top: 0;
  background-image: url(../image/lotus-f.png);
}
#testimonials::after {
  left: 0; bottom: 0;
  background-image: url(../image/lotus.png);
}
.am-section::after{
  left: 0; bottom: 0;
  background-image: url(../image/lotus.png);
}
.stages-section::before{
    right: 0; top: 0;
  background-image: url(../image/lotus-f.png);
}
.pricing-section::before{
  left: 0; top: 0;
  background-image: url(../image/lotus-e.png);
}
.pricing-section::after{
right: 0; bottom: 0;
  background-image: url(../image/lotus-s.png);
}





/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — ALL MEDIA QUERIES CONSOLIDATED
   ════════════════════════════════════════════════════════════════ */

/* ── max-width: 1199px ── */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-about {
    max-width: 480px;
  }
  .baranwal-full-list{
    padding: 76px 0 0;
  }
   
  .baranwal-full-list>li>a,
.baranwal-full-dropdown>button{
  font-size: 15px;
  padding: 17px 60px;
}


}

/* ── max-width: 1024px ── */
@media (max-width: 1024px) {
  .main-logo img{
    width: 80px;
  }
   .main-title{
    font-size: 30px;
   }
   .mirror-content h3{
    font-size: 27px;
   }
   #key-features{
    padding: 80px 0px;
   }
   .kf-header{
    padding: 0 20px 40px;
   }
  /* Key Features */
  .kf-content-pane {
    padding: 10px 40px;
  }
  .kf-img-pane img{
    height: 500px;
  }

  .kf-last-card {
    right: 40px;
    max-width: 420px;
    padding: 40px;
  }

  .mirror{
    padding: 1rem;
  }
  .testi-card{
    min-height: 390px;
  }

  /* FAQ */
  #faq{
    padding: 80px 0px 80px;
  }
  .faq-layout {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }

  /* Contact */
  .lf-form-pane {
    padding: 80px 44px;
  }

  .lf-trust-card {
    left: 28px;
    right: 28px;
    bottom: 30px;
    padding: 24px 26px;
  }

  .baranwal-full-list{
    padding: 76px 0 0;
  }
   
  .baranwal-full-list>li>a,
.baranwal-full-dropdown>button{
  font-size: 15px;
  padding: 17px 60px;
}

}

/* ── max-width: 991px ── */
@media (max-width: 991px) {
    
    p{
     color: #000!important;
    }
    .about-des p, .kf-body{
        text-align: justify;
    }
    .sub-heading{
        letter-spacing: 1px;
    }

  /* Loader */
  #luxury-loader {
    background: url("../image/side-bg.webp");
    background-size: cover;
    background-position: right;
  }

  .loader-logo img {
    width: 200px;
    object-fit: contain;
  }

  .loader-line-wrap {
    width: 200px;
    height: 2px;
  }

  .loader-tagline {
    font-size: 14px;
    font-weight: 600;
  }

  /* Navbar */
  .baranwal-menu {
    display: none;
  }

  .baranwal-header {
    padding: 12px 18px;
  }

  .main-logo img {
    width: 85px;
  }

  .baranwal-logo {
    font-size: 28px;
  }

  .baranwal-menu-content {
    padding-top: 60px;
  }

  .baranwal-close {
    top: 30px;
    right: 25px;
  }

  .baranwal-full-list {
    padding-top: 100px;
  }

  .baranwal-full-list>li>a,
  .baranwal-full-dropdown>button {
    padding: 22px 25px;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 500;
    justify-content: start;
    gap: 1rem;
  }

  .baranwal-full-dropdown ul {
    padding: 0 25px 20px;
  }


  /* Modern */
  #modern {
    height: auto;
  }

  .mirror {
    min-height: 330px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .mirror:last-child {
    border-bottom: none;
  }

  .mirror-content {
    transform: translateY(0);
  }

  .hiden-con {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 260px;
  }

  /* Project */
  .project-heading h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .project-heading p {
    letter-spacing: 3px;
    line-height: 1.7;
  }

  .project-card {
    height: 430px;
  }

  .project-bottom {
    width: 100%;
    padding: 0 15px;
  }

  .project-hero{
    min-height: 50vh;
  }

  /* About */
  .about-des {
    padding: 1.2rem;
  }
 

  /* Why Invest */
  .why-invest-card {
    padding: 50px 40px;
    max-width: 90%;
  }

  .why-invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-invest-grid .why-item:nth-child(3n+2) {
    border-right: none;
    padding-right: 0;
  }

  .why-invest-grid .why-item:nth-child(odd) {
    border-right: 1px solid rgba(155, 122, 69, 0.25);
    padding-right: 20px;
  }

  .why-invest-grid .why-item:nth-child(even) {
    padding-left: 20px;
  }
  #modern{
    background-image: url("../image/why_us_bg.jpg");
  }
  .lf-form-inner{
    max-width: 100%;
  }

  .project-intro::before,
  .project-intro::after,
  #testimonials::before,
  #testimonials::after,
  .stages-section::before,
  .am-section::before,
  .am-section::after,
  .pricing-section::before,
  .pricing-section::after{
    width: 130px;
    height: 130px;
  }
}

/* ── max-width: 900px ── */
@media (max-width: 900px) {

  /* Testimonial Modal */
  .testi-modal-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .testi-modal {
    max-height: 90vh;
  }

  .testi-modal-grid {
    max-height: 90vh;
  }

  .testi-modal-img {
    min-height: 220px;
  }

  .testi-modal-content {
    padding: 40px 28px;
    overflow-y: visible;
  }
  .lf-field{
    margin-bottom: 10px;
  }
  .section-pad{
    padding: 3rem 0rem;
  }
}

/* ── max-width: 768px ── */
@media (max-width: 768px) {

  /* Key Features */
  #key-features {
    padding: 3rem 0;
  }

  .kf-row {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr !important;
  }

  .kf-row.reverse .kf-img-pane {
    order: -1;
  }

  .kf-img-pane {
    min-height: 300px;
  }

  .kf-content-pane {
    padding: 44px 28px;
  }

  .kf-img-pane img {
    height: 300px;
  }

  .kf-content-pane::before {
    display: none;
  }

  .kf-num {
    font-size: 56px;
  }

  .kf-row.kf-last {
    min-height: auto;
  }

  .kf-last .kf-img-pane {
    height: 280px;
    position: relative;
  }

  .kf-last-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    box-shadow: none;
    border-top: 2px solid #ba570f;
    border-left: none;
    padding: 40px 28px;
  }

  /* FAQ */
  #faq {
    padding: 3rem 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }

  .faq-categories {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .faq-cat-btn {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    width: auto;
    flex: 1 1 auto;
    justify-content: center;
  }

  .faq-cat-icon {
    display: none;
  }

  .faq-question {
    font-size: 17px;
    padding: 18px 0;
  }

  .faq-answer p {
    padding-right: 10px;
    font-size: 14px;
  }

  .faq-header {
    margin-bottom: 45px;
  }

  .faq-leaf {
    width: 130px;
    opacity: 0.3;
  }

  /* Contact */
  #contact.lf-section {
    grid-template-columns: 1fr;
  }

  .lf-img-pane {
    min-height: 340px;
  }

  .lf-trust-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 22px;
  }

  .lf-tagline {
    font-size: 20px;
    color: #fff !important;
  }

  .lf-trust-item {
    font-size: 12px;
  }

  .lf-form-pane {
    padding: 80px 28px;
  }

  .lf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Testimonial Cards */
  .testi-card {
    min-height: auto;
    padding: 0 22px 30px;
  }

  .testi-photo {
    width: 78px;
    height: 78px;
    margin-top: -39px;
    margin-bottom: 14px;
  }

  .testi-stars i {
    font-size: 13px;
  }

  .testi-quote-short {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .testi-name {
    font-size: 17px;
  }

  .testi-prev,
  .testi-next {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .testi-carousel .owl-stage-outer {
    padding-top: 46px;
    margin-top: -46px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 0;
  }

  .site-footer .container-fluid {
    padding: 0 24px;
  }

  .footer-leaf {
    width: 140px;
    height: 140px;
    opacity: 0.4;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 45px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-disclaimer-row {
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ── max-width: 767px ── */
@media (max-width: 767px) {

  /* Testimonial Cards (breakpoint-specific overrides) */
  .testi-card {
    min-height: auto;
    padding: 0 22px 30px;
  }
   .baranwal-banner {
    height: 55vh;
  }

  .testi-photo {
    width: 78px;
    height: 78px;
    margin-top: -39px;
    margin-bottom: 14px;
  }

  .testi-stars i {
    font-size: 13px;
  }

  .testi-quote-short {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .testi-name {
    font-size: 17px;
  }

  .testi-prev,
  .testi-next {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .testi-carousel .owl-stage-outer {
    padding-top: 46px;
    margin-top: -46px;
  }
}

/* ── max-width: 575px ── */
@media (max-width: 575px) {

  /* Banner */
 

  /* Why Invest */
  .why-invest-section {
    background-attachment: scroll;
    padding: 3rem 14px;
  }

  .why-invest-card {
    padding: 38px 22px;
    max-width: 100%;
  }

  .why-invest-grid {
    grid-template-columns: 1fr;
    margin: 35px 0 30px;
  }

  .why-invest-grid .why-item {
    border-right: none !important;
    padding: 20px 0 !important;
  }

  /* Project */
  #all-project-crawl {
    padding: 45px 0;
  }

  .project-heading h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .project-heading p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .project-card {
    height: 360px;
  }

  .project-info {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .project-info h3 {
    font-size: 15px;
  }

  .project-info h5 {
    font-size: 13px;
  }

  .project-info p {
    font-size: 16px;
  }

  .project-bottom {
    flex-direction: column;
    gap: 20px;
  }

  /* Modern */
  #modern {
    background-attachment: scroll;
  }

  .mirror {
    padding: 1.5rem;
    min-height: 300px;
  }

  .mirror-content h3 {
    font-size: 24px;
  }

  .mirror-content span {
    font-size: 42px;
  }

  /* Typography */
  .main-title {
    font-size: 26px;
    letter-spacing: 0px;
  }
  .project-intro::before,
  .project-intro::after,
  #testimonials::before,
  #testimonials::after {
    width: 90px;
    height: 90px;
    /* opacity: 0.5; */
  }
}

/* ── max-width: 480px ── */
@media (max-width: 480px) {

  /* Key Features */
  .kf-header {
    padding-bottom: 20px;
  }

  .kf-content-pane {
    padding: 22px 20px;
  }

  .kf-last-card {
    padding: 32px 20px;
  }

  /* FAQ */
  .faq-cat-btn span:last-child {
    display: none;
  }

  .faq-cat-icon {
    display: flex;
  }

  .faq-cat-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    flex: 0 0 auto;
  }

  .faq-question {
    font-size: 16px;
  }

  /* Contact */
  .lf-form-pane {
    padding: 80px 22px;
  }

  .lf-submit-btn {
    letter-spacing: 2px;
    padding: 14px 20px;
  }

  /* Testimonial Modal */
  .testi-modal-overlay {
    padding: 14px;
  }

  .testi-modal-img {
    min-height: 180px;
  }

  .testi-modal-content {
    padding: 32px 22px;
  }

  .testi-modal-name {
    font-size: 22px;
  }

  .testi-modal-text {
    font-size: 14.5px;
  }

  /* Footer */
  .footer-col-title {
    margin-bottom: 18px;
  }

  .badge-box {
    width: 64px;
    height: 52px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   (Previously duplicated as an inline <style> block on every
   page — consolidated here once so every page stays in sync.)
   ══════════════════════════════════════════════════════════ */
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 9999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}

@media (max-width:768px) {
    #scrollTopBtn {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
        font-size: 18px;
    }
}
 .about-des p{
      text-align: justify;
  }
  /* ─── TESTIMONIAL MODAL (desktop base — unchanged structure, minor safety additions) ─── */
.testi-modal {
  width: 100%;
  max-width: 920px;
  max-height: 86vh;
  background: #fff;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2, .9, .25, 1), opacity 0.5s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testi-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-height: 86vh;
  overflow: hidden;
}

.testi-modal-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.testi-modal-content {
  padding: 56px 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  max-height: 86vh;
}

/* ─── MOBILE / TABLET FIX ─── */
@media (max-width: 900px) {
  .testi-modal-overlay {
    padding: 16px;
  }

  .testi-modal {
    max-height: 92vh;
    width: 100%;
  }

  .testi-modal-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    overflow: hidden; /* container itself doesn't scroll — content does */
  }

  .testi-modal-img {
    height: 200px;      /* FIXED height, not min-height, so object-fit:cover actually crops */
    min-height: 0;
    flex-shrink: 0;      /* image never gets squeezed or stretched by flex */
  }
  .testi-modal-img img{
      object-fit: contain;
  }

  .testi-modal-content {
    padding: 32px 24px;
    overflow-y: auto;    /* only the text scrolls, image stays fixed */
    flex: 1 1 auto;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .testi-modal-overlay {
    padding: 10px;
  }

  .testi-modal-img {
    height: 210px;
  }
  

  .testi-modal-content {
    padding: 28px 18px;
  }

  .testi-modal-name {
    font-size: 20px;
  }

  .testi-modal-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
