/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  background-color: #f5f5f5;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
  height: auto;
}

.fix {
  overflow: hidden;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: #132a12;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
}

body {
  background: #f5f5f5 none repeat scroll 0 0;
  color: rgb(19, 53, 19);
  font-size: 14px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button 
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: #1c3720;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 996;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.back-to-top:hover {
  background: #2a4d34;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 10px;
  }

  .back-to-top i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader 
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5 url("../img/logo.png") no-repeat center center;
  background-size: 100px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Preloader */
@media (max-width: 768px) {
  #preloader {
    background-size: 80px;
  }
}

@media (max-width: 480px) {
  #preloader {
    background-size: 60px;
  }
}



/*--------------------------------------------------------------
# NAVBAR
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  background: #f5f5f5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo h1 span {
  color: #3ec1d5;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo{
  margin-left: 70px;  
  margin-right: 50px;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
  
}



.header-bg {
  background: url(../img/background/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}




/* Navbar */
.navbar {
  padding: 0;
  margin-right: 70px;
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  padding: 17px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover, .navbar a.active {
  background-color: #1c3720;
  color: white;
}

/* Dropdown Menu */
.navbar ul li.dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
}

.navbar ul li.dropdown:hover > ul {
  display: block;
}

.navbar ul li.dropdown ul li a {
  padding: 10px 20px;
  color: #333;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar ul li.dropdown ul li a:hover {
  background: #1c3720;
  color: white;
  border-radius: 5px;
}


/* MOBILE RESPONSIVENESS */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

/* Hide navbar by default on mobile */
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar a {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}


  
  .navbar ul li.dropdown ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background: none;
  }

  .navbar ul li.dropdown.active > ul {
    display: block;
  }

  .navbar ul li.dropdown ul li a {
    padding-left: 30px;
  }
}

/* Close button styles */
.close-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1001;
}

/* Show close button when mobile menu is open */
@media (max-width: 991px) {
  .close-nav-toggle {
    display: block;
  }
}






/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px; 
  box-sizing: border-box;
}

/* Popup Content */
.popup-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  width: 100%;
  max-width: 800px;
  text-align: justify;
  font-size: 18px;
  border-radius: 10px;
  color: #1c3720;
  font-weight: bold;
  box-sizing: border-box;
}

/* Button Styling */
#agreeButton {
  background-color: #1c3720;
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  margin: 20px auto 0;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
}

#agreeButton:hover {
  background-color: #14312b;
}

/* Responsive Text & Padding */
@media (max-width: 768px) {
  .popup-content {
    font-size: 16px;
    padding: 20px;
  }

  #agreeButton {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    font-size: 15px;
    padding: 15px;
  }

  #agreeButton {
    font-size: 14px;
    width: 100%;
  }
}







/** 
 * CAROUSEL 
 */
#hero {
  width: 80%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* RESPONSIVE CAROUSEL */
@media (max-width: 992px) {
  #hero {
    width: 100%;
    height: 60vh;
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 50vh;
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  #hero {
    height: 40vh;
    margin-top: 50px;
  }
}









/*--------------------------------------------------------------
# Differentiator
--------------------------------------------------------------*/
.tiator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}

/* Image Section */
.portrait-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* Second Column (Text Section) */
.col-md-5 {
  margin-left: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Adjust the offset */
.col-md-5.offset-md-1 {
  margin-left: 0 !important;
}


.heading {
  font-size: 40px;
  font-weight: bold;
  color: #1c3720;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: Georgia, serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.description {
  font-size: 18px;
  color: #1c3720;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  margin-left: 30px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  font-size: 18px;
  color: #1c3720;
  font-family: 'Montserrat', sans-serif;
}

.checklist li i {
  font-size: 24px;
  margin-right: 10px;
  color: #1c3720;
}

.diff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background: #d7d8de;
  color: #1c3720;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 50px;
  position: relative;
}

.diff::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #222;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.diff:hover::after {
  transform: scaleX(1);
}

.diff-icon {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease-in-out;
}

.diff:hover .diff-icon {
  transform: translateX(5px);
}

/* AOS animation fallback */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

@media (max-width: 992px) {
  .tiator {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .portrait-img {
    margin-left: 0 !important;
    max-width: 100%;
  }

  .heading {
    font-size: 32px;
  }

  .description {
    font-size: 16px;
  }

  .checklist {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .checklist li {
    font-size: 16px;
    margin-left: 20px;
  }

  .diff {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .heading {
    font-size: 26px;
    margin-top: 20px;
  }

  .description {
    font-size: 14px;
  }

  .checklist li {
    font-size: 14px;
  }

  .diff {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


@media (max-width: 480px) {
  .portrait-img {
    max-width: 90%;
  }

  .heading {
    font-size: 22px;
  }

  .description,
  .checklist li {
    font-size: 13px;
  }

  .checklist {
    margin-left: 0;
  }

  .diff {
    font-size: 12px;
    padding: 6px 10px;
  }
}





/* ======= Video Hero Section ======= */
.video-section {
  text-align: center;
  padding: 50px 20px;
}

.video-heading h2 {
  font-size: 42px;
  font-weight: bold;
  font-family: Georgia, serif;
  margin-bottom: 25px;
  color: #800000;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.video-hero-section {
  position: relative;
  width: 98%;
  max-width: 1500px;
  height: 85vh;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay + Button */
.video-overlay {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
}

#videoControl {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#videoControl:hover {
  background-color: #fff;
  color: #333;
}

/* Description Styling */
.video-description {
  max-width: 1400px;
  margin: 30px auto 0;
  font-size: 18px;
  line-height: 1.8;
  color: black;
  padding: 0 15px;
}

.video-description strong {
  color: #800000;
}

/* ======= Responsive Media Queries ======= */
@media (max-width: 992px) {
  .video-heading h2 {
    font-size: 36px;
  }

  .video-description {
    font-size: 17px;
  }

  .video-hero-section {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .video-heading h2 {
    font-size: 28px;
  }

  .video-description {
    font-size: 16px;
  }

  #videoControl {
    font-size: 15px;
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .video-heading h2 {
    font-size: 26px;
  }

  .video-description {
    font-size: 15px;
    line-height: 1.6;
  }

  #videoControl {
    font-size: 14px;
    padding: 6px 18px;
  }
}





/*--------------------------------------------------------------
# PROPERTY LANDS
--------------------------------------------------------------*/
/* PROPERTY LANDS SECTION */
#lands {
  background-color: #1c3720;
  padding: 50px 0;
}

.section-headline h2 {
  color: white;
  font-family: Georgia, serif;
  font-weight: bold;
}

.note {
  font-size: 18px;
  color: white;
  text-align: center;
  font-style: italic;
}

.disclaimer {
  font-size: 18px;
  color: white;
  text-align: center;
  font-style: italic;
}

.project-container {
  background: #1c3720;
  padding: 15px;
  margin-bottom: 30px;
}

/* Swiper Styling */
.awesome-img {
  position: relative;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}


.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #e6a500;
}
/* Buttons */
.project-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.project-buttons a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background-color: #e6a500;
  color: #1c3720;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.project-buttons a:hover {
  background-color: #d48f00;
  color: white;
  transform: scale(1.05);
}

/* Adding an animated underline effect */
.project-buttons a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: -100%;
  background-color: white;
  transition: left 0.3s ease-in-out;
}

.project-buttons a:hover::after {
  left: 0;
}



.subdivision-description {
  color: white;
  font-size: 18px ;
}





#lands {
  background-color: #1c3720;
}

.section-headline h2 {
  color: white;
  font-family: Georgia, serif;
  font-weight: bold;
  margin-top: 30px;
}

.note {
  font-size: 18px;
  color: white;
  text-align: center;
  font-style: italic;
}

.note i {
  margin-right: 5px;
}

.project-container {
  background: #1c3720;
  padding: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.awesome-img {
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.awesome-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.awesome-img img.zoomed {
  cursor: grabbing;
  transform-origin: center;
  transform: scale(2); 
}

.project-details {
  text-align: center;
  padding: 15px 0;
}

.project-details h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 2px;
}

.project-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.project-buttons a {
  padding: 8px 16px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-details {
  background-color: #1c3720;
  color: #1c3720;
  letter-spacing: .2;
}

.btn-map {
  background-color: #1c3720;
  color: white;
  letter-spacing: .2;
}

.btn-details:hover {
  background-color: #2a4d34;
  color: white;
}

.btn-map:hover {
  background-color: #2a4d34;
  color: white;
}




/* RESPONSIVE */
@media (max-width: 768px) {
  .project-buttons {
      flex-direction: column;
  }

  .project-buttons a {
      width: 100%;
      text-align: center;
      padding: 10px;
  }
}


/* Force 3 columns on large (≥992px) */
@media (min-width: 992px) {
  .portfolio-item {
    width: 33.3333%;
  }
  
}

/* 2 columns for medium screens */
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-item {
    width: 50%;
  }
}

/* Full width on mobile */
@media (max-width: 767px) {
  .portfolio-item {
    width: 100%;
  }

  .swiper-container {
    height: auto;
    max-height: 280px;
  }

  .section-headline h2 {
    font-size: 22px;
  }

  .note,
  .disclaimer {
    font-size: 14px;
    padding: 0 10px;
  }

  .subdivision-description {
    font-size: 16px;
    padding: 0 10px;
  }

  .project-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .project-buttons a {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .project-details h4 {
    font-size: 18px;
  }
}

/* Smallest screens */
@media (max-width: 480px) {
  .swiper-slide img {
    border-width: 3px;
  }

  .project-details h4 {
    font-size: 16px;
  }

  .subdivision-description {
    font-size: 14px;
  }

  .btn-details,
  .btn-map {
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer-area {
  padding: 20px 0;
  background: #f5f5f5;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  padding: 20px;
  min-width: 280px;
  text-align: left;
}

/* Center the second column (Logo) */
.footer-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer Content */
.footer-content h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-content p {
  color: black;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Contact Details */
.footer-contacts p span {
  font-weight: bold;
}

/* Footer Logo */
.footer-logo-image {
  width: 120px;
  margin: 20px auto 0;
  display: block;
}

/* Property Section */
.property-section1 {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.property-section1 h4 {
  margin-right: 65px;
}

/* Property Links */
.property-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-links li {
  margin-bottom: 8px;
}

.property-links li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.property-links li a:hover {
  color: #2a4d34;
  text-decoration: underline;
}

/* Bottom Footer Area */
.footer-area-bottom {
  background: #f5f5f5;
  padding: 5px 0;
  text-align: center;
}

.copyright p {
  color: #1c3720;
  margin: 0;
}

/* Footer Image */
.footer-bottom-image {
  width: 100%;
  margin-top: 20px;
}

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

/* Footer Title */
.footer-logo-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.footer-logo-title span {
  color: #1c3720;  
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-logo-title strong {
  color: black;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# RESPONSIVE STYLES
--------------------------------------------------------------*/

/* Tablets & Small Screens */
@media (max-width: 991px) {
  .footer-area {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    text-align: center;
    min-width: 100%;
  }
  .property-section1 {
    align-items: center;
    margin-left: 0;
  }
  .property-section1 h4 {
    margin-right: 0;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .footer-column {
    min-width: 100%;
    padding: 10px;
  }
  .footer-logo-image {
    width: 100px;
  }
  .footer-logo-title {
    font-size: 30px;
  }
}

