/*--------------------------------------------------------------
# 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%;
  }
}

/*--------------------------------------------------------------
CONTACT CONTENT 
--------------------------------------------------------------*/
/*--------------------------------------------------------------
CONTACT CONTENT 
--------------------------------------------------------------*/
/* CONTACT GRID CONTAINER */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f5f5f5;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  margin-top: 50px;
  height: 75vh;
}

/* REMOVE PADDING & FILL THE SPACE FOR MAP SECTION */
.contact-section .map-section {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 0;              /* No padding */
  background-color: transparent;
  border-radius: 0;        /* No rounding */
  color: #000;
}

/* ROW FLEX WRAPPER */
.contact-section .map-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* IMAGE COLUMN STRETCHES FULLY */
.contact-section .map-col.left-col {
  flex: 1 1 100%;
  position: relative;
  margin: 0;
}

/* IMAGE CONTAINER - REMOVE OVERFLOW, RESET WIDTH */
.contact-section .image-container {
  width: 100%;
  position: relative;
 
}

/* FULL IMAGE COVERAGE */
.contact-section .image-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  border-radius: 15px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

/* FLEX CONTAINER FOR BUTTONS */
/* FLEX CONTAINER FOR BUTTONS - CENTERED ON IMAGE */
.contact-section .button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers both horizontally and vertically */
  display: flex;
  gap: 10px;

}


/* FAQ BUTTON STYLE */
.contact-section .faqs-btn {
  padding: 10px 15px;
  background-color: #d9d9d9;
  border: 2px solid #1c3720; /* Define border color */
  border-radius: 30px; /* Add border-radius for rounded corners */
  color: #1c3720; /* Text color matches the border */
  cursor: pointer;
  font-size: 16px;
}

/* Shared Button Styling */
.contact-section .faqs-btn,
.contact-section .maps-btn {
  display: inline-flex;            /* Make text and icon side by side */
  align-items: center;             /* Vertically align text and icon */
  justify-content: center;
  padding: 10px 15px;
  border: 2px solid #1c3720;
  border-radius: 25px;
  background-color: #d9d9d9;
  color: #1c3720;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  gap: 8px;                         /* Add spacing between text and icon */
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.contact-section .maps-btn{
  width: 125%;
}

.diff-icon {
  width: 10px;   /* Smaller width */
  height: 10px;  /* Smaller height */
  transition: transform 0.3s ease-in-out;
}


/* Hover States */
.contact-section .faqs-btn:hover,
.contact-section .maps-btn:hover {
  background-color: #fff;
  color: #1c3720;
  border-color: #1c3720;
}

.contact-section .faqs-btn:hover .diff-icon,
.contact-section .maps-btn:hover .diff-icon {
  transform: translateX(5px);
}
button .diff-icon {
  max-width: none !important;
  height: 14px !important;
}

.maps-btn .diff-icon{
  max-width: 14px!important; 
  height: 14px; 
}










.contact-section .contact-info {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.contact-section .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, #000000, #800000);
  border-radius: 15px;
  padding: .5rem;
  width: 285px;
  height: 200px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  padding-top: 2rem;
}

.contact-section .contact-card:hover {
  transform: translateY(-5px);
}

.contact-section .contact-card i {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background-color: #fff;
  color: #800000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-section .contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-section .contact-card-text strong {
  font-size: 16px;
}

.contact-section .contact-card-text small {
  font-size: 14px;
}

.contact-section .card-email {
  font-size: 13px;
  word-break: break-word;
}

.contact-section .contact-card-text small {
  font-size: 14px;
}

/* Form on the right, spans both rows */
.contact-section .form-section {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background-color: #ffffff; /* 80% opacity */
  color: #000;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 0 1000px rgba(28, 55, 32, 0.05);

}

.contact-section .form-section form {
  background-color: #f0f0f0; /* Light gray inner form */
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000;
}

.contact-section .form-section input,
.contact-section .form-section textarea,
.contact-section .form-section select {
  padding: 0.75rem;
  border: none;
  border-radius: 0.75rem;
  background-color: #e0e0e0; /* Grayish inputs */
  color: #000;
  font-size: 1rem;
}

.contact-section .form-section input::placeholder,
.contact-section .form-section textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.contact-section .form-section select option {
  color: #000;
}

.contact-section .form-section button {
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #000000, #990000); /* Gradient red */
  border: none;
  border-radius: 0.75rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-section .form-section button:hover {
  background: linear-gradient(135deg, #000000, #990000);
}

.contact-sectio9nn .contact-info-mobile{
  display: none; 
}

/* responsiveness */
/* responsiveness */
/* responsiveness */
/* responsiveness */
@media screen and (max-width: 768px) {
  .contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
    height: auto;
  }

  .contact-section .form-section,
  .contact-section .map-section,
  .contact-section .contact-info-mobile {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  /* Reorder map-section, contact-info, and form-section */
  .contact-section .map-section {
    order: 1; /* Map section comes first */
  }

  .contact-section .contact-info-mobile {
    order: 2; /* Contact info comes after the map section */
  }

  .contact-section .form-section {
    order: 3; /* Form section comes last */
  }

  /* Button container positioning */
  .contact-section .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: row; /* Align buttons side by side */
    gap: 10px;
    margin-top: 1rem;
    align-items: center;
  }

  .contact-section .faqs-btn,
  .contact-section .maps-btn {
    margin-top: 15px;
    font-size: 14px;
    padding: 10px 14px;
    width: 110%;
    max-width: 150px; /* Adjust button size for side by side layout */
    border: none; 
  }

  .contact-section .maps-btn {
    width: 175%;
  }
  
  .diff-icon {
    width: 12px;
    height: 12px;
  }

  /* Reorganize contact-info cards layout */
  .contact-section .contact-info-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-section .contact-card-mobile {
    display: flex; /* Flexbox to place icon and text horizontally */
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(145deg, #000000, #800000);
    width: 85%;
    max-width: 350px;
    height: auto;
    padding: 1rem;
    gap: 10px; /* Space between icon and text */
    margin: 0 auto; /* Center the card */
  }

  .contact-section .contact-card-mobile .icon {
    font-size: 1.5rem; /* Icon size */
  }

  .contact-section .contact-card-text-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically align text */
  }

  .contact-section .contact-card-text-mobile strong {
    font-size: 1rem; /* Adjust font size */
  }
  .contact-section .card-email{
    font-size: 10px;
  }

  .contact-section .contact-card-text-mobile small {
    font-size: 0.85rem; /* Adjust font size */
    color: #fff; /* Lighter color for small text */
  }

  .contact-section .image-container {
    position: relative; /* Needed for absolute positioning of the buttons */
  }

  .contact-section .image-container img {
    width: 100%;
    border-radius: 12px;
  }

  .contact-section .form-section form {
    padding: 0rem;
  }

  .contact-section .form-section input,
  .contact-section .form-section textarea,
  .contact-section .form-section select {
    font-size: 0.95rem;
  }
  /* Mobile Contact Info */
  .contact-info-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    padding: 1rem;
    background-color: #2c3e50; /* Example background color */
    border-radius: 8px;
    width: 100%;
  }
  .contact-section .contact-info{
    display: none;
  }

}




/*--------------------------------------------------------------
# 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;
  }
}

