* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #1b1b1b;
  background: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(#7dd3e8, #cceffc);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
}

.hero h1 span {
  font-family: cursive;
  font-weight: 600;
}

.hero p {
  margin-top: 10px;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Clouds */
.clouds {
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 200px;
  background: white;
  border-radius: 50% 50% 0 0;
}

/* SPLIT SECTIONS */
.split {
  display: flex;
  min-height: 90vh;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .image,
.split .text {
  width: 50%;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split .text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.split h2 span {
  font-family: cursive;
}

.split p {
  line-height: 1.8;
  opacity: 0.8;
}

/* AERIAL */
.aerial {
  position: relative;
}

.aerial img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  padding: 40px;
  max-width: 400px;
}

.overlay-text h2 span {
  font-family: cursive;
}

/* BUILDING */
.building {
  padding: 80px 5%;
  text-align: center;
}

.building h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.building span {
  font-family: cursive;
}

.building img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split .image,
  .split .text {
    width: 100%;
  }

  .overlay-text {
    position: static;
    transform: none;
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  background-color: #061c1b;
  color: #ffffff;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

.logo span {
  font-size: 14px;
  letter-spacing: 1px;
}

.nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn-outline {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: poi
}





.image-text-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.image-text-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT BOX */
.image-text-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 40px;
}

.image-text-section.right .image-text-content {
  right: 6%;
}

.image-text-section.left .image-text-content {
  left: 6%;
}

.image-text-content h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.image-text-content h2 span {
  font-family: 'Farro', sans-serif;
  font-weight: 700;
}

.image-text-content p {
  margin-top: 15px;
  line-height: 1.7;
  opacity: 0.9;
}
.premium-split {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  gap: 60px;
  background: #fff;
}

.split-content {
  width: 45%;
  padding: 0 80px;
}

.split-content h2 {
  font-size: 3rem;
}

.split-content h2 span {
  font-weight: 700;
}

.split-content p {
  max-width: 420px;
  line-height: 1.8;
}

.split-image {
  width: 40%;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.gallery-section {
  padding: 80px 5%;
  background: #f5f5f5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}
.amenity-section {
  padding: 80px 0;
  background: #fff;
  color: #fff;
}

.amenity-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* LEFT IMAGE */
.amenity-image {
  width: 55%;
}

.amenity-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

/* RIGHT CONTENT */
.amenity-content {
  width: 45%;
}

.amenity-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: #000;
}

.amenity-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  margin-bottom: 30px;
  color: #000;
}

.amenity-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #000;
}

/* ICON */
.amenity-content li::before {
  content: "●";
  color: #c9a24d;
  font-size: 14px;
}

/* ARROWS */
.amenity-arrows {
  display: flex;
  gap: 15px;
}

.amenity-arrows button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}








.hero {
  position: relative;
  height: 88vh;
  overflow: hidden;
}

/* Video */
.hero-video {
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

  .floorplan-section {
  background: #000;
  padding: 90px 0;
  font-family: 'EB Garamond', serif;
}

.floorplan-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

.floorplan-heading {
  font-size: 26x;
  font-weight: 100;
   letter-spacing: 3px;
  margin-bottom: 55px;
  /* color: #0a2540; */
  color: #c49a5c;
  margin-left: -40px;
}
/* .gallery-tag {
  color: #c49a5c;
  letter-spacing: 3px;
  font-size: 24px;
} */

/* Cards layout */
.floorplan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.floorplan-card {
  background: linear-gradient(135deg, #fff, #fff);
  border-radius: 8px; /* sharp edges */
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 100, 200, 0.18);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid #b8e6ff;
}

.floorplan-card h3 {
  font-size: 26px;
  font-weight: 500;
  color: #0a2540;
  margin-bottom: 10px;
}

.floorplan-card p {
  font-size: 15px;
  color: #355d7a;
    font-family: 'Poppins', sans-serif;
}
/* FOOTER LOGO */
.footer-logo {
  text-align: center;
  padding: 40px 0 10px;
}

.footer-logo img {
  max-width: 200px;
}

/* Reduce top padding since logo is added */
.footer-main {
  padding-top: 40px;
}

/* Hover */
.floorplan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 140, 255, 0.28);
    font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .floorplan-cards {
    grid-template-columns: 1fr;
      font-family: 'Poppins', sans-serif;
  }

  .floorplan-card {
    padding: 70px 25px;
      font-family: 'Poppins', sans-serif;
  }

  .floorplan-heading {
    font-size: 30px;
      font-family: 'Poppins', sans-serif;
  }
}

.site-footer {
  background: #000;
  color: #e5e5e5;
  font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 70px 80px;
    font-family: 'Poppins', sans-serif;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}


.footer-label {
  color: #c9a24d;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.footer-col p {
  line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.footer-col.center {
  text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-col.center a {
  color: #c9a24d;
  text-decoration: none;
  font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.qr {
  width: 120px;
  margin: 15px 0;
    font-family: 'Poppins', sans-serif;
}

.rera-no {
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;}

.partner-logo img {
  width: 140px;
  margin-top: 10px;
}

.mt {
  margin-top: 24px;
    font-family: 'Poppins', sans-serif;
}

/* DISCLAIMER */
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 80px;
  font-size: 12px;
  line-height: 1.6;
  color: #bbb;
    font-family: 'Poppins', sans-serif;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: #aaa;
    font-family: 'Poppins', sans-serif;

}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-disclaimer {
    padding: 20px 30px;
  }
}
