@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,600,800&display=swap&subset=latin-ext");

/* BODY */
* {
  outline: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #26282b;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* HTML ELEMENT */
img {
  max-width: 100%;
}

/* CUSTOM CLASSES */
.overflow {
  overflow: hidden;
}

/* LINKS */
a {
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #26282b;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* CUSTOM CONTAINER */
.container {
  max-width: 1280px;
}

/* FORM ELEMENTS */
input[type=text] {
  width: 100%;
  height: 54px;
  border: 1px solid #eee;
  padding: 0 20px;
}

input[type=email] {
  width: 100%;
  height: 54px;
  border: 1px solid #eee;
  padding: 0 20px;
}

textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #eee;
  padding: 15px 20px;
}

button[type=submit] {
  height: 54px;
  border: none;
  background: #9f8054;
  color: #fff;
  padding: 0 55px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  /* margin-left: 29%; */
}


.lux-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1001;
  padding: 15px 30px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* IMPORTANT */
  z-index: 1200;
}

.nav-logo img {
  height: 40px;
}

/* Desktop menu */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cta {
  background: #111;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
}

/* MOBILE BUTTON */
.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 2001;
  position: relative;
  /* IMPORTANT */
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #111;
  color: #fff;
  z-index: 2000;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1500;
}

.menu-overlay.active {
  display: block;
}

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  z-index: 3000;
}

#mobileMenu a {
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  /* background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Dark overlay for premium feel */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

/* Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: Gotham;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: #d4af37;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
}

.hero-content {
  animation: fadeUp 1s ease;
}

.benefits-modern {
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
  padding: 60px 20px;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.benefit-card {
  background: #f9f9f9;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s ease;
}

.benefit-card img {
  width: 40px;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
}

/* Hover luxury effect */
.benefit-card:hover {
  transform: translateY(-5px);
  background: #111;
  color: #fff;
}

.benefit-card:hover p {
  color: #ccc;
}

.overview-lux {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
  position: relative;
}

.overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.overview-text h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  margin-bottom: 15px;
}

/* .overview-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
} */

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
}

.btn-dark {
  background: #111;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 15px;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
}

.highlights-creative {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  /* font-family: "Playfair Display", serif; */
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.highlight-card {
  background: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.4s;
  cursor: pointer;
}

/* TEXT */
.highlight-card h3 {
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: #aaa;
}

/* HOVER EFFECT 🔥 */
.highlight-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #d4af37;
  color: #000;
}

.highlight-card:hover p {
  color: #000;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lux-curve {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f9f6ef, #eaf6fb);
}

.heading-wrap {
  text-align: left;
}

/* WRAPPER */
.curve-wrap {
  position: relative;
  max-width: 1200px;
  height: 220px;
  margin: auto;
}

/* SVG */
.curve-svg {
  width: 100%;
  height: 100%;
}

.curve-svg path {
  stroke: #76b6c4 !important;
  stroke-width: 5;
  fill: none;
}

/* POINT */
.curve-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* ICON */
.curve-point i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #76b6c4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 20px;
}

/* TEXT */
.curve-point span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.curve-svg path {
  stroke: #76b6c4;
  stroke-width: 3;
  /* thicker */
  fill: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* POINT */
.curve-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* FLOAT CHILD ONLY (NOT parent) */
.curve-point i {
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* TEXT */
.curve-point span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.3px;
}

/* 🔥 HOVER (LUXURY EFFECT) */
.curve-point:hover i {
  background: #76b6c4;
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* .curve-point {
  animation: float 4s ease-in-out infinite;
} */
.curve-point span {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2c;
}

.curve-point i {
  backdrop-filter: blur(6px);
}

.curve-point:nth-child(odd) {
  animation-delay: 0s;
}

.curve-point:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
}

.curve-svg path {
  stroke: url(#goldWave);
}

.proj-amenities-wrapper {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
}

/* CARD */
.amenity-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.amenity-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* TEXT */
.amenity-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* HOVER EFFECT 🔥 */
.amenity-card:hover img {
  transform: scale(1.1);
}

.amenity-card:hover .amenity-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55, 0.8), transparent);
}

#amenities-slider .owl-item {
  transform: scale(0.9);
  opacity: 0.5;
  transition: 0.4s;
}

#amenities-slider .owl-item.active.center {
  transform: scale(1);
  opacity: 1;
}



.heading-wrap span {
  font-size: 17px;
  letter-spacing: 2px;
  color: #b8965a;
  font-family: 'Gotham';
  font-weight: 700;

}

.heading-wrap h2 {
  font-size: 14px;
  margin-top: 10px;
  position: relative;
  color: #0000005e;
}

/* GOLD UNDERLINE */
.heading-wrap span::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin-top: 10px;
}

.lux-video {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
}

/* GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

/* IMAGE */
.video-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLAY BUTTON (LUXURY STYLE) */
.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.5);
  background: #1d417f;
}

/* PLAY ICON */
.play-btn::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

/* HOVER EFFECT 🔥 */
.video-card:hover img {
  transform: scale(1.1);
}

.video-card:hover .video-overlay {
  background: linear-gradient(to top, rgb(29 65 127 / 40%), transparent);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

.price-lux {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

/* CARD */
.price-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.price-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  padding: 10px 20px;
  border-radius: 25px;
  color: #000;
}

/* HOVER */
.price-card:hover {
  transform: translateY(-10px);
}

/* HIGHLIGHT */
.price-card.highlight {
  background: #111;
  color: #fff;
}

.plan-lux {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
  text-align: center;
}

/* MAIN TABS */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid #1d417f;
  background: transparent;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, #1d417f, #1d417fa6);
}

/* INNER TABS */
.unit-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.unit-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.unit-btn.active {
  background: #111;
  color: #fff;
}

/* IMAGE */
.plan-image img,
.unit-content img {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* SHOW/HIDE */
.tab-content,
.unit-content {
  display: none;
}

.tab-content.active,
.unit-content.active {
  display: block;
}

/* MAIN ACCORDION */
.accordion-lux {
  max-width: 850px;
  margin: auto;
}

/* ITEM */
.accordion-lux .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* HEADER BUTTON */
.accordion-lux .accordion-button {
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 20px;
  box-shadow: none;
}

/* REMOVE DEFAULT ICON */
.accordion-button::after {
  display: none;
}

/* CUSTOM ICON */
.accordion-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: 0.3s;
}

/* ACTIVE ICON */
.accordion-button:not(.collapsed)::before {
  content: "−";
}

/* ACTIVE STYLE */
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  color: #000;
}

/* BODY */
.accordion-body {
  padding: 20px;
  font-size: 14px;
  color: #555;
}

/* LIST */
.accordion-body ul {
  padding-left: 0;
  list-style: none;
}

.accordion-body li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

/* BULLET POINT */
.accordion-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* HOVER */
.accordion-item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.brochure-lux {
  padding: 100px 0;

  /* 🌊 GOA FEEL BACKGROUND */
  background: linear-gradient(to right, #f9f6ef, #e6f3f8);
}

/* BOX */
.brochure-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);

  padding: 50px;
  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.brochure-content h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  margin-bottom: 15px;
}

.sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  display: block;
  margin-bottom: 10px;
}

.brochure-content p {
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  padding: 12px 28px;
  border-radius: 30px;
  color: #000;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* IMAGE */
.brochure-image img {
  width: 100%;
  max-width: 350px;
  transform: rotate(-5deg);
  transition: 0.5s;
}

.brochure-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

.benefits-modern {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fdfbf7, #eef9fc);
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD */
.benefit-card {
  flex: 1;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* ICON */
.benefit-card img {
  width: 45px;
  margin-bottom: 10px;
  transition: 0.4s ease;
}

/* TEXT */
.benefit-card p {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
}

.benefit-card h4 {
  font-size: 16px;
  margin-top: 5px;
}

/* 🔥 HOVER EFFECT (LUXURY) */
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover img {
  transform: scale(1.2);
  filter: invert(1);
}

/* GOLD LINE EFFECT */
.benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #f5d77a);
  transition: 0.4s;
}

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

.curve-svg path {
  stroke-dasharray: 30;
  animation: waveFlow 2s linear infinite;
}

@keyframes waveFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -60;
  }
}

.curve-point i {
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.why-lux {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fdfbf7, #eaf6fb);
  position: relative;
}

/* LAYOUT */
.why-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-left {
  flex: 1;
}

.tag {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
}



.why-left p {
  color: #555;
  line-height: 1.7;
}

/* BUTTON */
.btn-gold {
  display: inline-block;
  margin-top: 20px;
  padding: 7px 34px;
  background: #1d417f;
  color: #fff;
  border-radius: 10px;
}

/* RIGHT GRID */
.why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;

  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.why-card i {
  font-size: 20px;
  color: #6fb3c0;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card:hover i {
  color: #d4af37;
}

.goa-footer {
  background: linear-gradient(to top, #0f2e35, #1d4e57);
  color: #fff;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  padding: 0 20px 60px;
  flex-wrap: wrap;
}

/* COL */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* BRAND */
.footer-col.brand h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* LINKS */
.footer-col.links ul {
  list-style: none;
  padding: 0;
}

.footer-col.links li {
  margin-bottom: 10px;
}

.footer-col.links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col.links a:hover {
  color: #d4af37;
}

/* ADDRESS */
.address .contact {
  margin-top: 15px;
}

/* WAVE */
.footer-wave {
  position: absolute;
  bottom: 0px;
  width: 100%;
  opacity: 0.2;
}

.footer-wave svg {
  width: 100%;
}

.price-lux {
  position: relative;
}

section.overview-lux:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 240px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/leaf-adg-p.webp);
  left: 0px;
  right: 0px;
  background-size: 100%;
  /* top: 0px; */
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  bottom: 0px;
}

section.overview-lux:after {
  position: absolute;
  content: "";
  width: 180px;
  height: 240px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/leaf-adg.webp);
  /* left: 0px; */
  right: -20px;
  background-size: 100%;
  /* top: 0px; */
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  bottom: 0px;
}

.price-lux:before {
  position: absolute;
  content: "";
  width: 210px;
  height: 310px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/leaf-adg-p.webp);
  left: 0px;
  right: 0px;
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  bottom: 0px;
}

.price-lux:after {
  position: absolute;
  content: "";
  width: 210px;
  height: 310px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/leaf-adg-p.webp);
  right: 0px;
  background-size: 100%;
  top: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  transform: rotate(540deg);
}

/* .why-lux:after {
  position: absolute;
  content: "";
  width: 140px;
  height: 150px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/shutterstock_2597576285-1.png);
  right: -40px;
  background-size: 100%;
  top: -30px;
  background-size: contain;
  background-repeat: no-repeat;

}

.why-lux:before {
  position: absolute;
  content: "";
  width: 140px;
  height: 150px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/shutterstock_2597576285-1.png);
  left: 0px;
  right: 0px;
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  bottom: 0px;
} */



.lux-curve {
  position: relative;
}

/*  */
.plan-lux {
  position: relative;
}

.plan-lux:after {
  position: absolute;
  content: "";
  width: 140px;
  height: 140px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/boat.png);
  /* left: 0px; */
  right: -10px;
  background-size: 100%;
  bottom: 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.proj-amenities-wrapper {
  position: relative;
}

.proj-amenities-wrapper:before {
  position: absolute;
  content: "";
  width: 142px;
  height: 140px;
  background: url(https://www.providenthousing.com/wp-content/uploads/2026/04/boat.png);
  left: 0px;
  right: 0px;
  background-size: 100%;
  /* top: 0px; */
  background-size: contain;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  bottom: 0px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 13px;
}

.goa-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* VIDEO */
.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (IMPORTANT FOR TEXT VISIBILITY) */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* CONTENT */
.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  max-width: 1200px;
  margin: auto;
}

/* COLUMNS */
.footer-col {
  max-width: 300px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #d4af37;
}

/* BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faqs .accordion-item.hidden-faq {
  display: none;
}

.faqs .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #1d417f, #1d417f);
  color: #fff;
}

#popup-form input {
  font-size: 16px;
  margin: 15px 0px;
}





.form-design {
  display: flex;
  width: 100%;
}

.first-icon {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.first-icon img {
  width: 20px;
  width: 35px;
  height: 35px;
}

.first-icon p {
  font-size: 12px;
  margin: 0;
}

.mfp-content .white-popup-block {
  width: 40% !important;
  margin: auto;
  background: white;
  padding: 35px;
  border-radius: 10px;
  position: relative;
}

form#book-popup-form input {
  margin: 10px 0px;
  height: 44px;
}

.submit-popup {
  border: 1px;
}

.enquire-heading p {
  font-size: 16px;
}

.enquire-heading h3 {
  font-size: 17px;
  font-weight: 600;
}

.form-submit-btn.animation_button {
  display: flex;
  justify-content: center;
}

.plan-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.unit-plan-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blur-plan {
  position: relative;
  filter: blur(4px);
}

.unit-content img {
  max-width: 620px;
  filter: blur(6px);
}

.blur-plan-link {
  position: absolute;
}

.amenities-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #ccc;
  cursor: pointer;
  margin: 0 5px;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (Luxury dark gradient) */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.3));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  /* top: 25%;
  transform: translateY(-50%); */
  padding: 0 20px;
  width: 50%;
}

/* H1 */


/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  margin-top: 10px;
}

/* CTA */
.hero-cta {
  margin-top: 20px;
}

.stats-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f9f6ef, #eef7fb);
  color: #1d417f;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box i {
  font-size: 20px;
  /* margin-bottom: 10px; */
  color: #1d417f;
  border-radius: 50%;
  padding: 20px 20px;
  background: #fff;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-box h3 {
  font-size: 24px;
  margin: 10px 0;
}

.stat-box p {
  font-size: 14px;
  line-height: 1.5;
}

.stat-box small {
  color: #aaa;
}

.stat-box {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@font-face {
  font-family: 'Gotham';
  src: url('../font/Gotham-Thin.woff2') format('woff2'),
    url('../font/Gotham-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.disclaimer {
  position: absolute;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  text-align: center;
  width: 50%;
  margin: auto;
  right: 0px;
}

.project-logo {
  width: 250px;
}

.luxury-typology {
  background: linear-gradient(to bottom, #fdfbf7, #eaf6fb);
  padding: 80px 0;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #d4af37;
  /* gold */
  margin-bottom: 10px;
}

.section-header p {
  color: #aaa;
  letter-spacing: 1px;
}

/* Grid */
.typology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Card */
.typology-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.4s ease;
  position: relative;
}

/* Hover Effect */
.typology-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Highlight Card */
/* .typology-card.highlight {
      border: 1px solid #d4af37;
      background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
    } */

/* Text */
.typology-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.typology-card .area {
  font-size: 18px;
  color: #1d417f;
  margin-bottom: 20px;
}

/* Button */


.typology-card button:hover {
  background: #d4af37;
  color: #000;
}

.hero-video-mobile {
  display: none;
}

.heading-wrap {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 20px;
}

.goa-calling {
  width: 220px;
  margin-bottom: 40px;
}

.border {
  height: 50px;
  background: #fff;
  width: 1px;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 40px;
}

.logo-project {
  width: 50%;
}

.price_p {
  width: 50%;
}

.boder {
  width: 2px;
  background-color: #fff;
  height: 50px;
}

.call {
  padding: 10px;
  background-color: #1d417f;
  color: #fff;
  border-radius: 50%;
}

.section-heading {
  font-size: 30px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  opacity: 0.4;
  animation: riseIn 0.7s ease 0.28s forwards;
}

.divider-label h2 {
  font-size: 10px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #004280 0%, transparent 100%);
}

.divider-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #004280;
  text-transform: uppercase;
}

.divider-line.rev {
  background: linear-gradient(90deg, transparent 0%, #004280 100%);
}

.stickyForm {

  position: fixed;

  top: 18%;

  width: 310px;

  right: -310px;

  text-align: center;

  padding: 17px;

  background: rgba(84, 84, 84, 0.81);

  border-radius: 11px 0px 0 11px;

  -webkit-transition: 0.35s ease-in-out;

  -o-transition: 0.35s ease-in-out;

  transition: 0.35s ease-in-out;

  z-index: 9999;
  /* margin-right: 15px; */

}



.stickyForm.active {

  right: 0px;

}



.stickyForm .btn {

  background: #004280;

  padding: 10px 30px;

  position: absolute;

  top: 0px;

  bottom: 0px;

  margin: auto;

  left: -96px;

  color: #fff;

  height: 40px;

  border-radius: 7px 7px 0 0;

  font-size: 15px;

  cursor: pointer;

  transform: rotate(-90deg);

  -webkit-transform: rotate(-90deg);

  -moz-transform: rotate(-90deg);

  -o-transform: rotate(-90deg);

  -ms-transform: rotate(-90deg);

  border: 0;

  perspective: 100px;

  outline: 0 !important;

}



input#phone {

  /* padding-left: 50px !important; */

}



body .stickyForm * {

  color: #000;

}



body .stickyForm label {

  width: 100% !important;

}



body .stickyForm input[type="text"],

body .stickyForm input[type="email"],

body .stickyForm textarea,

body .stickyForm .intl-tel-input {

  width: 100% !important;

  border: 0;

  height: 35px;

  background: transparent;

  border-bottom: 1px solid #fff;

  margin-bottom: 13px;

}



.stickyForm [type="submit"] {

  background: #4b6759;

  color: white;

  border: 0;

  padding: 10px 25px;

  border-radius: 2px;

  border: 1px solid #4b6759;

}



body .stickyForm ._checkbox {

  margin-bottom: 10px;

}



body .stickyForm ._checkbox .text {

  text-align: left;

  margin-bottom: 10px;

}



body .stickyForm ._checkbox label {

  width: 50% !important;

  float: left;

  padding-right: 5px;

}



body .stickyForm ._checkbox span {

  padding-left: 4px;

  font-size: 13px;

  float: left;

}



.stickyForm,

.stickyForm.active .btn {

  background: rgb(0 50 99);

}



.stickyForm ::-webkit-input-placeholder {

  /* Chrome/Opera/Safari */

  letter-spacing: 0px;

  color: #ccc;

}



.stickyForm ::-moz-placeholder {

  /* Firefox 19+ */

  letter-spacing: 0px;

  color: #ccc;

}



.stickyForm ::-ms-input-placeholder {

  /* IE 10+ */

  letter-spacing: 0px;

  color: #ccc;

}



.stickyForm :-moz-placeholder {

  /* Firefox 18- */

  letter-spacing: 0px;

  color: #ccc;

}



body .stickyForm select {

  width: 100%;

  color: #fff;

  border: 0;

  background: transparent;

  border-bottom: 1px solid #fff;

  height: 40px;

}



body .stickyForm .btn-group {

  margin-top: 20px;

}



body .stickyForm .error {

  margin-bottom: 0 !important;

}



body .stickyForm label.error {

  padding: 7px 0;

}



body .stickyForm [type="submit"] {

  background: #fff;

  color: #000;

  height: 40px;

  padding: 0px 30px;

  /* box-shadow: 0 0 8px 3px rgba(99, 99, 99, 0.32); */

}


.stickyForm .phone {
  background-color: transparent;
  border: 0px;
}

.close-btn {
  color: #fff !important;
}

.owl-carousel .owl-item img.owl-lazy {
  opacity: 1;
}

img.mfp-img {
  width: 70% !important;
}

/* end of sticky form code */

/* mobile */
@media(max-width:768px) {
  .heading-wrapper {
    width: 100% !important;
  }

  .price {
    justify-content: space-between;
  }

  a.cta.popup-link {
    display: none;
  }

  .price_p {
    width: 45%;
  }

  .price_p {
    width: 45%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.overview-lux:after {
    position: relative;
  }

  .plan-lux:after {
    position: relative;

  }

  .price-lux:after {
    position: relative;
  }

  .section.overview-lux:before {
    position: relative;
  }

  .price-lux:before {

    position: relative;
  }

  .proj-amenities-wrapper:before {
    position: relative;
  }

  .hero-video-desk {
    display: none;
  }

  .hero-content {
    width: 100%;
    top: 30%;
    transform: translateY(-50%);

  }

  .hero {
    height: 100vh !important;
  }

  .hero-video-mobile {
    display: block;
  }

  .disclaimer {
    width: 100%;
    bottom: 0px;
  }

  .brochure-box {
    grid-template-columns: auto;
  }

}

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }



  .menu-btn {
    display: block;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-container {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* REMOVE CURVE */
  .curve-svg {
    display: none;
  }

  .curve-wrap {
    height: auto;
  }

  /* STACK ITEMS */
  .curve-point {
    position: static;
    transform: none;
    margin-bottom: 35px;
  }

  /* MAKE GRID */
  .curve-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 100%;
    margin-top: 30px;
  }

  /* ICON SIZE */
  .curve-point i {
    width: 70px;
    height: 70px;
    font-size: 20px;
    margin: auto;
  }

  /* TEXT */
  .curve-point span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-layout {
    grid-template-columns: 1fr;
  }

  .video-layout {
    grid-template-columns: 1fr;
  }

  .video-main img,
  .video-side img {
    height: 220px;
  }

  .why-flex {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .loc-map iframe {
    width: 100%;
  }

  .footer-container {
    justify-content: center;

  }

  .mfp-content .white-popup-block {
    width: 100% !important;
  }

  .new_popup_design {
    display: flex;
  }

  .form_col_onee {
    width: 30%;
    padding: 0px;
  }

  .form_col_twoo {
    width: 70%;
    padding-right: 0px;
  }

  .heading-wrap {
    margin-bottom: 30px;

  }
}