body{
background:#f5f5f5;
}
html, body {
  overflow-x: hidden;
}
.bttt{
    margin-top: 200px;
}
.map-frame {
  width: 100%;
  height: 80vh; /* 80% of screen height */
  border: 0;
}
.hyperlink_world_trade_a{
    text-decoration: none;
    color: #fff;
}
.sticky-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.sticky-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Image inside */
.sticky-icons img {
  width: 28px;
  height: 28px;
}

/* Hover */
.sticky-icons a:hover {
  transform: scale(1.1);
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 0%), /* dark bottom */ rgb(0 0 0 / 53%) /* light top */);
}
.nav-link{
  position: relative;
  color: #333;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}
.footer_sec2.text-center {
    margin-top: 19px;
}

.logo_div_center img {
    margin: 20px auto;
    display: block;
    width: 150px;
}
.btn_submit_details{
    background: #794201;
    color: #fff;
}
.link_email a {
    text-decoration: none;
    color: #fff;
}
.nav-link::after{
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #c89b3c;
  transition: width 0.3s ease;
}

.nav-link:hover::after{
  width: 100%;
}

.nav-link:hover{
  color: #c89b3c;
}

/*animation*/
/* ===== CARD ANIMATION ===== */
.welcome-card{
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
}

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

/* ===== TEXT STAGGER ===== */
.welcome-card h2,
.welcome-card .subtitle,
.welcome-card .description,
.welcome-card .features,
.welcome-card .rera,
.welcome-card .download-btn{
  opacity:0;
  transform: translateY(20px);
}

/* Delay for each element */
.welcome-card h2{ animation: fadeText 0.6s ease forwards 0.3s; }
.welcome-card .subtitle{ animation: fadeText 0.6s ease forwards 0.5s; }
.welcome-card .description{ animation: fadeText 0.6s ease forwards 0.7s; }
.welcome-card .features{ animation: fadeText 0.6s ease forwards 0.9s; }
.welcome-card .rera{ animation: fadeText 0.6s ease forwards 1.1s; }
.welcome-card .download-btn{ animation: fadeText 0.6s ease forwards 1.3s; }

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

/* ===== CHECK ICON POP ===== */
.feature-item{
  transition: transform 0.3s ease;
}

.feature-item:hover{
  transform: translateX(8px);
}

/* ===== BUTTON PREMIUM HOVER ===== */
.download-btn{
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.download-btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background: rgba(255,255,255,0.2);
  transition:0.4s;
}

.download-btn:hover::after{
  left:100%;
}

.download-btn:hover{
  transform: translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.25);
}




.section{
padding:40px 0;
}
/* NAVBAR */

.navbar-custom{
background:#fff;
padding:10px 0;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* Container alignment */

.navbar-container{

display:flex;
align-items:center;
justify-content:space-between;

}
.map_image_details {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
}

/* Logo */

.logo{
height:80px;
}

.menu-center{
gap:25px;
font-family:'Playfair Display', serif;
font-size:16px;
}


.menu-center .nav-link{

color:#333;
font-weight:500;

}

.menu-center .nav-link:hover{

color:#8b5a2b;

}


/* Phone Button */

.phone-btn{
background:#8b5a2b;
color:white;
padding:8px 20px;
border-radius:30px;
text-decoration:none;
}

.phone-btn:hover{

background:#6f451f;
color:white;

}


/* Align phone button */

.nav-phone{

margin-left:auto;

}






.nav-item a{
      font-family: "Nunito", sans-serif;
    font-size: 17px;
}


/*.hero{*/
/*height:80vh;*/
/*background:url('./images/Frame 7150.png') center/cover no-repeat;*/
/*}*/
.hero {
  position: relative;
  height: 90vh;
background:url('./images/Frame 7150.png') center/cover no-repeat;
  overflow: hidden;
}

/* Smooth zoom animation */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
background:url('./images/Frame 7150.png') center/cover no-repeat;
  animation: zoomHero 12s ease-in-out infinite alternate;
  z-index:0;
}

/* Dark overlay */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgb(0 0 0 / 17%);
  z-index:1;
}

@keyframes zoomHero{
  from{
    transform: scale(1);
  }
  to{
    transform: scale(1.08);
  }
}


/* WELCOME */
.welcome-section{
padding:60px 20px;
}

.welcome-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}
.title {
    font-family: "Adamina", serif;
    font-size: 44px;
    color: #8b5a2c;
    margin-bottom: 15px;
}

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin:20px 0;
}

.subtitle {
    font-family: 'Nunito', sans-serif;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 17px;
}

.description {
    font-family: 'Nunito', sans-serif;
    max-width: 750px;
    margin: auto;
    line-height: 1.3;
    color: #333;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 530;
}


.features-section{
  max-width:900px;
  margin:40px auto;
}
.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px 120px;
  margin-left: 70px;
}
.feature-item {
  display: flex;
      font-family: 'Nunito', sans-serif;

  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.feature-items{
    
    display:flex;
  align-items:center;
  font-size:15px;
}
.feature-center{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:40px;
  font-size:13px;
}
.check {
  font-size: 18px;
  margin-right: 20px;
}

.rera {
  font-size: 12px;
  margin-bottom: 20px;
  color: #444;
}

.download-btn{
background:#8b5a2b;
color:#fff;
padding:12px 25px;
border:none;
border-radius:10px;
}


.download-btn:hover {
  background: #73461f;
}


.invest-section{
  padding:20px 0;
  background:#f5f5f5;
}

.invest-card{
  display:flex;
  background:#f2f2f2;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  min-height:650px;
}


.invest-image,
.invest-content{
  width:50%;
}

.invest-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display: block;
}


/* RIGHT CONTENT */

.invest-content{
  padding:55px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.invest-content h3{
     font-family: 'Adamina', sans-serif;
     margin-bottom: 20px;
}
.invest-content h5{
     font-family: 'Nunito', sans-serif;
     margin-bottom: 20px;
     font-size: 15px;
}
.invest-content p{
     font-family: 'Nunito', sans-serif;
     font-size: 12px;
     font-weight: 500;
}
/* BUTTON */

.brochure-btn{
  background:#8b5a2b;
  color:white;
  border:none;
  padding:16px 35px;
  border-radius:12px;
  font-size:18px;
  box-shadow:0 6px 12px rgba(0,0,0,0.2);

}

.brochure-btn:hover{
  background:#73461f;
}




.description_sec{
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.vision-section {
    padding: 70px 0;
    background: #f6f6f6;
}
.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.vision-title {
    text-align: center;
    font-size: 41px;
    font-family: 'Adamina', sans-serif;
    margin-bottom: 30px;
}

.vision-text {
    text-align: center;
    /* max-width: 863px; */
    margin: 0 auto 60px auto;
    line-height: 1.6;
    color: #333;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}
.vision-wrapper{
display:flex;
gap:60px;
align-items:flex-start;
}

/* LEFT IMAGE */

.vision-image{
flex:1;
}

.vision-image img{
width:100%;
border-radius:22px;
object-fit:cover;
}

/* RIGHT CONTENT */

.vision-content{
flex:1;
}

.amenities-title {
    font-size: 34px;
    font-family: 'Adamina', sans-serif;
    margin-bottom: 50px;
}
/* AMENITY CARDS */

.amenity-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 45px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.amenity-card h4 {
    margin-bottom: 22px;
    font-family: 'Adamina', sans-serif;
    font-size: 17px;
}
.amenity-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
}
.nature-section {
    padding-bottom: 45px;
    /* padding: 12px 0; */
    background: #f5f5f5;
}
/* CARD */

.nature-card{

display:flex;
align-items:stretch;

background:#f0f0f0;
border-radius:22px;
overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,0.15);

}


/* LEFT IMAGE */

.nature-image{
flex:1;
}

.nature-image img{

width:100%;
height:100%;
object-fit:cover;
display:block;

}

/* RIGHT CONTENT */

.nature-content{

flex:1;
padding:55px;

display:flex;
flex-direction:column;
align-items: start;

}

.nature-content h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    margin-bottom: 45px;
    font-weight: 600;
}
.nature-content h5 {
    font-size: 27px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 40px;
}
.beeee{
    margin-top: 15px;
    font-size: 17px;
        font-family: 'Nunito', sans-serif;

}
.nature-content p {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #333;
    font-size: 16px;
}

.nature-content ul {
    font-family: 'Nunito', sans-serif;
    margin-top: 28px;
    margin-bottom: 26px;
    font-size: 15px;
}
.mt-6{
    font-family: 'Nunito', sans-serif;
}
.nature-content li{

margin-bottom:12px;

}

/* BUTTON */

.brochure-btn{

background:#8b5a2b;
color:white;
border:none;

padding:15px 35px;
border-radius:14px;

font-size:18px;

box-shadow:0 6px 12px rgba(0,0,0,0.2);

}







.highlights-section{
padding:30px 0;
background:#f4f4f4;
text-align:center;
}

.highlight-title{
 font-family: 'Adamina', sans-serif;
font-size:34px;
margin-bottom:50px;
}

/* GRID */

.highlight-grid{

display:grid;
grid-template-columns:repeat(2, 420px);
justify-content:center;
gap:40px 60px;

}

/* CARDS */

.highlight-card{

background:#fff;
border-radius:18px;
padding:35px 30px;

width:420px;
height:140px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

box-shadow:0 6px 12px rgba(0,0,0,0.5);

font-size:18px;

}

.highlight-card p {
    margin: 3px 0;
    /* padding: 30px; */
    font-size: 21px;
    font-family: 'Nunito', sans-serif;
}

/* FOOTER */
.footer_sec {
    background: #73461f;
    color: #fff;
    padding: 70px 0;
}
.footersec_images{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_image2{
    margin-left: 30px;
  
}
.footer_details p {
    font-size: 15px;
    color: #fff;
    margin: 32px 0;
    font-family: 'Nunito', sans-serif;
}
.footer_facebook{
    border: 1px solid black;
    border: none;
    width: fit-content;
    padding: 5px;
    background-color: #bda283;
}
.footer_socials{
    display: flex;
    gap: 10px;
}
.footer_socials img{
    width: 20px;
    filter: brightness(0) invert(1);
}
.links_sec ul{
   margin-top: 20px;
   
}
.links_sec li {
    padding: 10px 0;
    font-size: 15px;
    color: #fff;
    /* font-weight: 100; */
    font-family: 'Nunito', sans-serif;
}
.link_header{
    margin-top: 44px;
    margin-left: 20px;
    
}
.link_header h3 {
    font-size: 22px;
    margin: 40px 5px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}
.link_email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px;
}
.link_email img{
    width: 20px;
     filter: brightness(0) invert(1);
     margin-left: 11px;
}
.link_email p {
    margin-bottom: 0%;
    color: #fff;
    font-size: 15px;
    /* font-weight: 100; */
    font-family: 'Nunito', sans-serif;
}

.Schedule-btn{
 background:#fff;
  color:#73461f ;
  border:none;
  padding:16px 35px;
  border-radius:12px;
  font-size:16px;
  font-weight: 500;
  box-shadow:0 6px 12px rgba(0,0,0,0.2);
}
/* LOCATION */
.location_benefits {
    background: #73461f;
    padding: 70px 0;
    color: #fff;
}
.location_benefits h2 {
    color: #fff;
    font-family: 'Adamina', sans-serif;
    font-size: 35px;
    margin-bottom: 35px;
}
.location_details ul{
    color: #fff;
    padding: 10px;
}
.location_details li {
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    font-size: 18px;
}
/*.location_benefits iframe{*/
/*width:100%;*/
/*height:300px;*/
/*border-radius:10px;*/
/*border:none;*/
/*}*/
.map_img iframe{
    width: 200px;
    height: fit-content;
    margin-left: 10px;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image Styling */
.banner-img {
  width: 100%;
  height: 500px;
  object-fit: cover; /* keeps image nice */
}

/* Text Overlay */
.banner-text {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: white;
}

.banner-text h1 {
  font-size: 48px;
}

.banner-text p {
  font-size: 18px;
}


/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 992px){

.menu-center{
text-align:center;
margin-top:15px;
}

.nav-phone{
display:none;
}

.hero{
height:60vh;
}

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

}
@media (max-width: 768px){

.title{
font-size:24px;
}

.welcome-card{
padding:25px;
}

.location_benefits iframe{
height:250px;
}

.hero{
  height:70vh;
}
  .sticky-icons {
    bottom: 15px;
    right: 15px;
  }

  .sticky-icons a {
    width: 50px;
    height: 50px;
  }

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

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

.hero-content{
  bottom:40px;
  padding:0 15px;
}
.feature-item {
    display: flex;
    font-family: 'Nunito', sans-serif;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
}
.features {
    margin: 20px 40px;
}

}


@media (max-width: 576px){

.hero{
height:35vh;
}
  .sticky-icons {
    bottom: 15px;
    right: 15px;
  }

  .sticky-icons a {
    width: 50px;
    height: 50px;
  }
.location_details li {
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
}
.map_image_details {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
.nature-card {
    display: block;
}
.highlight-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    width: auto;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
    font-size: 18px;
}
.highlight-card p {
    margin: 3px 0;
    /* padding: 30px; */
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}
.highlight-grid {
    display: block;
}
.highlight-title {
    font-family: 'Adamina', sans-serif;
    font-size: 29px;
    margin-bottom: 50px;
}
.nature-content {
    padding: 25px;
}
.vision-section {
    padding: 40px 0;
    background: #f6f6f6;
}
.navbar-custom {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #884c0a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.vision-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}
.amenities-title {
    font-size: 26px;
    margin-top: 36px;
    text-align: center;
    font-family: 'Adamina', sans-serif;
    margin-bottom: 37px;
}
.vision-wrapper {
    display: block;
    gap: 60px;
    /* align-items: flex-start; */
}
.welcome-section {
    padding: 20px 0px;
    /* padding: 30px 20px; */
    /* padding: 0; */
}
.location_benefits h2 {
    color: #fff;
    font-family: 'Adamina', sans-serif;
    font-size: 25px;
    margin-top: 36px;
    margin-bottom: 30px;
    text-align: center;
}
.features-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 30px 120px;
    margin-left: 20px;
}
.invest-content h2 {
    font-family: "Adamina", serif;
    font-size: 24px !important;
    margin-bottom: 20px;
}.invest-content h5 {
    font-size: 18px !important;
    margin-top: 20px;
}
.invest-content p {
    font-size: 15px !important;
    color: #333;
    line-height: 1.6;
}
.logo{
   width: 60%; 
   height: auto;
}

.title {
    font-size: 25px;
}
.download-btn{
width:100%;
}

.Schedule-btn{
width:100%;
}
.invest-content h2{
  font-size:22px;
}

.invest-content h5{
  font-size:16px;
}

.brochure-btn{
  width:100%;
  text-align:center;
}

.banner-img {
    height: 600px; /* increase height for mobile */
  }
  
  .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgb(0 0 0 / 17%);
    z-index: 1;
}

  .banner-text {
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
  }

.banner-text h1 {
    font-family: "Adamina", serif;
    font-size: 27px;
    margin-bottom: 18px;
    font-weight: 600;
}

  .banner-text p {
    font-size: 15px;
  }
}





.invest-section{
  padding:60px 0;
  background:#f5f5f5;
}

/* CARD */
.invest-card{
  display:flex;
  background:#efefef;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* LEFT IMAGE */
.invest-image{
  position:relative;
  width:50%;
}

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

/* IMAGE TEXT */
.image-overlay-text{
  position:absolute;
  top:30px;
  left:30px;
  color:white;
}

.image-overlay-text h1{
  font-size:48px;
  font-weight:600;
  letter-spacing:2px;
}

.image-overlay-text p{
  font-size:18px;
  letter-spacing:3px;
}

/* RIGHT CONTENT */
.invest-content{
  width:50%;
  padding:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.invest-content h2{
        font-family: "Adamina", serif;
  font-size:32px;
  margin-bottom:20px;
}

.invest-content h5 {
    font-size: 20px;
    margin-top: 20px;
}

.invest-content p{
  font-size:16px;
  color:#333;
  line-height:1.6;
}

/* BUTTON */
.brochure-btn{
  margin-top:30px;
  background:#8b5a2b;
  color:#fff;
  padding:15px 35px;
  border:none;
  border-radius:15px;
  font-size:18px;
  width:fit-content;
  box-shadow:0 6px 12px rgba(0,0,0,0.2);
}

.brochure-btn:hover{
  background:#6f451f;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width:992px){

.invest-card{
  flex-direction:column;
}

.invest-image,
.invest-content{
  width:100%;
}

.invest-content{
  padding:30px;
}

.image-overlay-text h1{
  font-size:32px;
}

}
