body{
margin: 0px auto;
padding: 0;
font-family: 'Lato', sans-serif;
}


.amenities-section {
    width: 100%;
    background-color: #F4F8F9;
    padding: 0;
}

.amenities-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}

.amenities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-image {
    flex: 1.6;
}

.amenities-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #F4F8F9;
}

.amenities-title {
    font-size: 42px;
    font-family: 'Marcellus', serif;
    color: #7D9AA0;
    margin-bottom: 10px;
}

.amenities-line {
    width: 100%;
    height: 1px;
    background-color: #C5D2D4;
    margin: 20px 0 40px 0;
    border: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
    column-gap: 20px;
}

.amenity {
    text-align: center;
}

.amenity img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.amenity span {
    font-size: 14px;
    color: #6A7D84;
    line-height: 1.3em;
}

@media(max-width: 900px) {
    .amenities-container {
        flex-direction: column;
    }

    .amenities-image {
        height: 300px;
    }

    .amenities-content {
        padding: 40px 25px;
    }

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

@media(max-width: 600px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity span {
        font-size: 16px;
    }
}


.highlights-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;                 /* space between items */
    padding: 12px 16px;
    background-color: #071C35; /* deep navy */
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    text-align: center;
    flex-wrap: wrap;           /* wraps nicely on mobile */
}

.highlight-item {
    position: relative;
    padding: 0 10px;
    white-space: nowrap;
}

/* Optional vertical divider between items */
.highlight-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.4);
}



.hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: url('fallback.jpg') center center/cover no-repeat;
}

/* CHANGED: scope to .hero video and make it visible */
.hero video {
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      object-fit: cover;
      z-index: 0;      /* was -1 */
      opacity: 1;      /* was 0 (invisible) */
      transition: opacity 1s ease;
}
.hero video.loaded { opacity: 1; }

    /* ---------------- TOP NAV ---------------- */
    .top-bar {
      position: absolute;
      top: 15px;
      left: 0; right: 0;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 20;
    }

    .logo {
      width: 165px;
    }

    /* RIGHT SIDE NAV LINKS + BUTTON */
    .top-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .top-right a {
      color: white;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .top-button {
      background-color: #071C35;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      font-size: 0.9rem;
    }

    /* ---------------- CENTER BUTTON GROUP ---------------- */
    .button-group {
      position: absolute;
      bottom: 20%;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      z-index: 10;
    }

    .cta {
      padding: 0.8rem 1.5rem;
      background-color: #071C35;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
    }

    /* ---------------- MUTE TOGGLE BUTTON ---------------- */
    .mute-toggle {
      width: 55px;
      height: 55px;
      background-color: #071C35;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .mute-toggle img {
      width: 28px;
      height: 28px;
      filter: brightness(0) invert(1);
    }


  .units-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: 'Lato', sans-serif;
  }

  .units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }

  .units-grid-header,
  .units-grid-item {
    padding: 12px 14px;
    font-size: 14px;
  }

  .units-grid-header {
    background: #071C35;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .units-grid-item:nth-child(odd) {
    background: #f9fafb;
  }

  .units-grid-item:nth-child(even) {
    background: #ffffff;
  }

  .units-grid-item {
    border-top: 1px solid #e0e0e0;
  }

	
/* --- GALLERY STYLES --- */
.gallery-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.main-image-container {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 6px;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb {
  width: 150px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border: 2px solid #071C35;
}

@media (max-width: 768px) {
  .main-image-container {
    height: 300px;
  }
  .thumb {
    width: 110px;
    height: 70px;
  }
}


/* ---------- PAYMENT PLAN SECTION ---------- */
.payment-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #123326;
}

.payment-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.payment-left {
  flex: 1.2;
}

.payment-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
}

.payment-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5a57;
  margin-bottom: 28px;
}

.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  padding: 12px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: #9BE870;
  color: #123326;
  font-weight: 600;
  font-size: 14px;
}

.btn-outline {
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid #123326;
  background-color: transparent;
  color: #123326;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

/* RIGHT CARDS */
.payment-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card {
  background-color: #f8f9fb;
  border-radius: 18px;
  padding: 18px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.plan-percent {
  font-size: 36px;
  font-weight: 500;
  color: #123326;
  min-width: 70px;
}

.plan-content-title {
  font-size: 18px;
  margin-bottom: 4px;
}

.plan-content-text {
  font-size: 14px;
  color: #5b6a68;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .payment-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .payment-title {
    font-size: 32px;
  }
}
	
	
.galwrap
{
width:100%;
height:auto;
padding:0% 10%;
display:table;
}
.white
{
color:#FFFFFF;
}
.blue
{
color:#071C35;
}
.herosubwrap
{
width:100%;
padding:1% 5%;
height:auto;
display:table;
background-color:#E9EAEC;
text-align:center;
box-sizing: border-box;
}
.menunlogowrap
{
width:100%;
height:auto;
border:0px solid green;
background-color:#FFF;
display:table;
}
.swipediv
{
width:100%;
height:22px;
background-color:#333333;
color:#FFFFFF;
font-size:14px;
text-align:center;
}
.logobox
{
width:30%;
height:auto;
padding-left:2%;
padding-top:14px;
padding-bottom:14px;
float:left;
border:0px solid aqua;
}
.waptop
{
width:20px;
}
.textsmlw
{
font-family: 'Lato', sans-serif;
font-size:14px;
color:#071C35;
}
.btmwapp
{
background-color:#006633;
background-image:url(images/w.png);
}
.menubox
{
width:360px;
height:auto;
padding-right:2%;
padding-top:28px;
min-height:60px;
float:right;
text-align:right;
border:0px solid white;
}
.menu1
{
width:30px;
height:auto;
float:left;
padding-top:20px;
border:0px solid red;
}
.menu2
{
width:90px;
height:auto;
float:left;
text-align:left;
padding-left:3px;
padding-top:20px;
border:0px solid white;
}
.menu3
{
width:160px;
height:auto;
float:left;
border:0px solid red;
}
.logo
{
width:130px;
}
.ctatop
{
width:200px;
 background: #071C35;
 color: #FFF!important;
 font-weight: 700;
 font-size: 12px;
border:1px solid white;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
}
.ctahero
{
width:440px;
 background: #fff;
 color: #232323!important;
 font-weight: 700;
 font-size: 12px;
border:1px solid white;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
}
.ctabl
{
width:200px;
background:#071C35;
color: #ffffff;
font-weight: 700;
font-size: 12px;
border:1px solid white;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
margin-left:1%;
}
.herostrip
{
width:100%;
height:auto;
min-height:80px;
text-align:center;
}
.textlogo
{
font-family: 'Quicksand', sans-serif;
font-size:86px;
line-height:60px;
color:#071C35;
}
.textlogosm
{
font-family: 'Quicksand', sans-serif;
font-size:36px;
line-height:60px;
color:#071C35;
}
.textheadings
{
font-family: 'Marcellus', serif;
font-size:24px;
color:#071C35;
}
.textheadingsbl
{
font-family: 'Marcellus', serif;
font-size:24px;
color:#071C35;
}
.logobot
{
width:280px;
}
.black
{
color:#000000;
}

.width100
{
width:100%;
}

.spacer60
{
width:100%;
height:60px;
}
.strip100
{
width:100%;
height:auto;
text-align:center;
margin-top:60px;
margin-bottom:30px;
}
.textlargebl
{
font-family: 'Marcellus', serif;
font-size:36px;
color:#071C35;
}
.descdiv
{
width:60%;
margin:2% 20%;
height:auto;
}

.descdiv2
{
width:60%;
margin:2% 20%;
padding:2%;
height:auto;
background-color:#f8f9fb;
}


.textdesc
{
font-size:18px;
line-height:2;
font-family:Lato;
}
.wapp {
    position: fixed;
    bottom: 16px;
    right: 10px;
    z-index: 999;
    width: 70px;
}

.whaphlp {
    position: fixed;
	background-color:#25D366;
	background-image:url(agent.png);
	background-repeat:no-repeat;
	background-position:left;
    bottom: 90px;
    right: 14px;
    z-index: 999;
    width: 208px;
	height:74px;
	border:1px solid;
	border-color:#25D366;
	border-radius:6px;
	padding-left:76px;
	padding-top:6px;
}
.txtwapp
{
color:#fff;
}
.projectcc
{
width:50%;
padding-right:1%;
}
.blts
{
 font-size: 20px;
 font-family: 'Merriweather', serif;
 margin-bottom: 10px;
 color:#0a2233;
 font-weight:bold;
 line-height: 1.6 !important;
 padding-top:3px;
 }
 .txtblu
 {
 font-size:18px;
 color:#d3ac67;
 }
 .txtblu1
 {
 font-size:24px;
 color:#d3ac67;
 font-weight:bold;
 }
 .ifrm
 {
 width:100%;
 min-height:300px;
 padding:2%;
 border:0px solid;
 background-color:#CCCCCC;
 }
 .vidbg
 {
 width:100%;
 height:auto;
 }
.formwrap
{
width:100%;
height:auto;
display:table;
border:0px solid red;
background-color:#F8F9FB;
padding-top:40px;
padding-bottom:40px;
}
.forml
{
width:40%;
height:auto;
float:left;
text-align:center;
vertical-align:middle;
padding-top:10%;
}
.formr
{
width:58%;
height:auto;
float:left;
border:0px solid green;
}
.formstrip
{
width:96%;
height:auto;
padding:2%;
display:table;
}
.txtbx
{
width:45%;
height:40px;
padding:7px;
margin-right:2%;
border:1px solid #232323;
}
.txtbxr
{

width:45%;
height:40px;
padding:7px;
margin-right:1%;
border:1px solid #232323;
}
.txtbxfl
{
width:92%;
height:40px;
padding:7px;
border:1px solid #232323;
}
.submit
{
font-family: 'Lato','Open Sans',sans-serif;
font-weight: 700;
font-size: 12px;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
}
.tselbx
{
width:45%;
height:56px;
padding:7px;
margin-right:2%;
border:1px solid #232323;
}
.botwrap
{
width:100%;
height:auto;
display:table;
background-color:#E9EAEC;
}
.padtop30
{
padding-top:30px;
}
.botl
{
width:50%;
height:auto;
float:left;
padding:2%;
}
.botr
{
width:40%;
height:auto;
float:left;
padding:3%;
}
.botsrtip
{
width:100%;
height:auto;
display:table;
}
.bothalfbox
{
width:50%;
height:auto;
float:left;
text-align:center;
}
.botline
{
width:100%;
height:142px;
background-image:url(images/botline.png);
background-repeat:repeat-x;
}
.textmedbl
{
font-family: 'Marcellus', serif;
font-size:30px;
color:#071C35;
}
.foot
{
width:100%;
height:38px;
background-color:#071C35;
color:#FFFFFF;
text-align:center;
box-sizing: border-box;
padding:10px;
}
.mapdiv
{
width:100%;
height:auto;
display:table;
}
iframe
{
width:100%;
height:300px;
}
.bgdesk
{
display:block;
}
.bgmob
{
display:none;
}

@media screen and (max-width: 690px) {
.hero {
      position: relative;
      height: 70vh;
      overflow: hidden;
      background: url('fallback.jpg') center center/cover no-repeat;
}

/* CHANGED: same idea on mobile – keep video visible */
.hero video {
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 1;
      transition: opacity 1s ease;
}
.hero video.loaded { opacity: 1; }

.bgdesk
{
display:none;
}
.bgmob
{
display:block;
}
.descdiv2
{
width:90%;
margin:2% 5%;
padding:2%;
height:auto;
background-color:#f8f9fb;
}

.descdiv
{
width:90%;
margin:2% 5%;
height:auto;
}
.herostrip
{
width:100%;
height:auto;
min-height:50px;
text-align:center;
}
.ctabl
{
width:90%;
background:#071C35;
color: #ffffff;
font-weight: 700;
font-size: 12px;
border:1px solid white;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
margin-left:5%;
margin-right:5%;
margin-top:2%;
margin-bottom:2%;
}
.herosubwrap
{
width:100%;
padding:2% 5%;
height:auto;
display:table;
background-color:#E9EAEC;
text-align:center;
box-sizing: border-box;
}
.txtbxr
{
width:100%;
height:40px;
padding:7px;
margin-right:2%;
margin-top:16px;
border:1px solid #232323;
}
.txtbxfl
{
width:100%;
height:40px;
padding:7px;
border:1px solid #232323;
}
.tselbx
{
width:100%;
height:55px;
padding:7px;
margin-right:2%;
margin-top:16px;
border:1px solid #232323;
}
.txtbx
{
width:100%;
height:40px;
padding:7px;
margin-right:0%;
border:1px solid #232323;
}
.textlogo
{
font-family: 'Quicksand', sans-serif;
font-size:50px;
line-height:60px;
color:#071C35;
}
.ctahero
{
width:300px;
background: #fff;
color: #232323!important;
font-weight: 700;
font-size: 14px;
margin-left:2%;
margin-right:2%;
border:1px solid white;
border-radius: 2px;
padding: 13px 15px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
}
.foot
{
width:98%;
height:26px;
background-color:#071C35;
color:#FFFFFF;
text-align:center;
box-sizing: border-box;
}
.botline
{
width:100%;
height:42px;
background-image:url(images/botline.png);
background-repeat:repeat-x;
}
.botwrap
{
width:100%;
height:auto;
display:table;
background-color:#E9EAEC;
}
.padtop30
{
padding-top:30px;
}
.botl
{
width:100%;
height:auto;
float:none;
padding:2%;
box-sizing: border-box;
}
.botr
{
width:100%;
height:auto;
float:none;
padding:3%;
border:0px solid green;
box-sizing: border-box;
}
.formwrap
{
width:100%;
height:auto;
display:table;
border:0px solid red;
background-color:#F8F9FB;
padding-top:40px;
padding-bottom:40px;
box-sizing: border-box;
}
.forml
{
width:100%;
height:auto;
float:none;
text-align:center;
vertical-align:middle;
padding-top:10%;
}
.formr
{
width:100%;
height:auto;
float:none;
border:0px solid green;
}
.logobox
{
width:40%;
height:auto;
padding-left:2%;
padding-top:14px;
padding-bottom:14px;
float:left;
border:0px solid aqua;
}
.menu1
{
width:30px;
height:auto;
float:left;
padding-top:10px;
border:0px solid red;
display:none;
}
.menu2
{
width:90px;
height:auto;
float:left;
text-align:left;
padding-left:3px;
padding-top:10px;
border:0px solid white;
display:none;
}
.menu3
{
width:150px;
height:auto;
float:right;
border:0px solid red;
}
.menubox
{
width:50%;
height:auto;
padding-right:2%;
padding-top:20px;
min-height:40px;
float:right;
text-align:right;
border:0px solid red;
}
.ctatop
{
width:140px;
background: #071C35;
font-weight: 700;
font-size: 12px;
border:1px solid white;
border-radius: 2px;
padding: 6px 8px;
line-height: 24px;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
cursor:pointer;
}
.logobot
{
width:280px;
}
.headtop
{
width:100%;
height:70px;
padding-top:5px;
display:table;
}
.bttn {
    font-size: 16px;
    font-weight: 400;
    font-family: "Merriweather";
    padding: 0px 15px;
    line-height: 40px;
    text-align: center;
    outline: none; 
    border: none;
    border-radius: 6px;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    top: 0px;
    position: relative;
}
.logo
{
width:120px;
}
.highwrap
{
width:90%;
height:auto;
margin:0% 5%;
min-height:100px;
margin-top:30px;
display:table;
}
.highbox
{
width:98%;
height:220px;
float:none;
margin:1%;
border:1px solid #C9A585;
text-align:center;
z-index:350;
}
.strip100
{
width:90%;
margin:0% 5%;
height:auto;
text-align:center;
margin-top:30px;
margin-bottom:20px;
}
.amnbox
{
width:100%;
height:auto;
float:none;
margin-bottom:20px;
background-color:#f8f9fa;
}
 .txtblu1
 {
 font-size:20px;
 color:#d3ac67;
 font-weight:bold;
 }
.projectcc
{
width:98%;
padding-right:1%;
padding-left:1%;
}
.blts
{
 font-size: 20px;
 font-family: 'Merriweather', serif;
 margin-bottom: 10px;
 color:#0a2233;
 font-weight:bold;
 line-height: 1.6 !important;
 padding-top:3px;
 }
.wapp {
    position: fixed;
    bottom: 18px;
    right: 10px;
    z-index: 999;
    width: 60px;
}
.whaphlp {
    position: fixed;
	background-color:#25D366;
	background-image:url(agent.png);
	background-repeat:no-repeat;
	background-position:left;
    bottom: 86px;
    right: 14px;
    z-index: 999;
    width: 208px;
	height:72px;
	border:1px solid;
	border-color:#25D366;
	border-radius:6px;
	padding-left:76px;
	padding-top:8px;
}
.txtwapp
{
color:#fff;
font-size:12px;
}
}
