.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 10px 20px;
    position: relative;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
    text-align: center;
    padding: 10px 15px;
  }
  .nav-links li:hover {
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: #555;
  }
  .nav-links a {
    text-decoration: none;
    color: #997b55;
    font-weight: 500;
    padding: 10px 15px;
  }
  
  /* Submenu */
  .submenu-container {
    position: relative;
  }
  
  .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    display: none;
    position: absolute; /* Prevents affecting the navbar height */
    top: 100%; /* Position submenu below the parent */
    left: 0;
    width: 250px; /* Adjust the width as needed */
    z-index: 10;
  }
  
  .submenu li {
    padding: 10px 15px;
    text-align: left;
  }
  
  .submenu a {
    color:#997b55;
  }
  
  .submenu li:hover {
    background-color: #555;
  }
  
  /* Hover Behavior for Desktop */
  .submenu-container:hover .submenu {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #d4af37;
    margin: 4px 0;
  }
  
  /* Close Button */
  .close-btn {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }
  
    .hamburger,
    .close-btn {
      display: none;
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on number of items */
    }
  
    .submenu {
      display: none;
      position: static;
      background-color: #2b2b2b;
    }
  
    .submenu.active {
      display: block;
    }
  
    .hamburger {
      display: flex;
    }
  
    .close-btn.active {
      display: block;
    }
  }
  
#maindiv{
  display: flex;
  width: 80%;
   justify-content: space-around;
  gap: 50px;
  margin: auto;
  margin-top: 20px;
}
#leftdiv{
  width: 70%;
  border: 1px solid #ccc;
  /* height: 2000px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;;
}
#rightdiv{
  width: 30%;
  /* border: 2px solid blue; */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 250px;
 
}
 
/* Image Gallary */
.image-gallery {
  flex: 2;
 width: 100%;
 /* height: 450px; */

}

.image-gallery img {
 width: 100%;
 border-radius: 8px;
 height: 450px;
 
 /* margin-left: 150px; */
}

.image-gallery .thumbnails {
 margin-top: 10px;
 display: flex;
 overflow-x: auto;
  width: 100%;
 /* margin-left: 120px; */
 gap: 20px;
}

.image-gallery .thumbnails img {
 width: 120px;
 height: 100px;
 cursor: pointer;
 flex-shrink: 0;
 border: 1px solid #ccc;
 border-radius: 4px;
}





/* form css */

.details {
 
  background-color: #fff;
   padding: 30px;  
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
 
   /* margin-top: 30px;
   height: 500px; */
   /* margin-left: 300px; */
}

.details h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.details .pprice {
  font-size: 20px;
  color: #997b55;
  margin-bottom: 20px;
  
}

.details form {
  display: flex;
  flex-direction: column;
}

.details form input,
.details form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.details form button {
  padding: 10px;
  background-color: #997b55;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.details form button:hover {
  background-color: #45a049;
}

/* overview code */

.overview {
  width: 100%;
  margin: 0 auto; 
  /* margin-left: 150px; */
  border: 1px solid #ccc;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
margin-top: 30px;
  }
  
  h2 {
  text-align: left;
  color: #333;
  }
  
  table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 16px;
  }
  
  th, td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
  }
  
  th {
  background-color: #f8f8f8;
  font-weight: bold;
  }
  
  tr:hover {
  background-color: #f1f1f1;
  }
  
  .icon {
  margin-right: 5px;
  font-size: 16px;
  }
  
  /* Description */
  
.description-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
margin-top: 30px;
}

.section-title {
  font-size: 20px;
  color: black;
  background-color: #e9f0ff;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 4px;
}

.property-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}

.property-description {
  margin: 10px 0;
  text-align: justify;
}

.brochure-download {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.brochure-download h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.download-button {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #333;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
}

.download-button:hover {
  background-color: #555;
  color: #fff;
}

.icon {
  margin-right: 5px;
  font-size: 14px;
}
/* Details CSS */
#details{
  margin-top: 20px;
  border: 1px solid #ccc;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.property-overview {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #e6d9c5; /* Border color matching the image */
  border-radius: 8px;
  background-color: #f8f1e9; /* Background color matching the image */
}

.property-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e6d9c5; /* Subtle divider */
}

.property-item:last-child {
  border-bottom: none; /* Remove bottom border for the last item */
}

.property-item strong {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.property-item span {
  font-size: 16px;
  color: #6c6c6c; /* Grayish text for secondary info */
}
/* map */

.address-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fffdf8;
  border: 1px solid #e6d9c5;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.header h2 {
  font-size: 20px;
  color: #333;
}

.google-maps-btn {
  text-decoration: none;
  background-color: #f8c784;
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.google-maps-btn:hover {
  background-color: #ecaa5a;
}

.details p {
  margin: 8px 0;
  font-size: 16px;
  color: #6c6c6c;
}

.details p strong {
  color: #333;
}

#map {
  height: 300px;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e6d9c5;
}


/* calculator */


.calculator-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.result {
  text-align: center;
  margin-bottom: 20px;
}

.result p {
  font-size: 32px;
  color: #333;
  margin: 0;
}

.result small {
  display: block;
  font-size: 14px;
  color: #777;
}

.breakdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.breakdown-item {
  display: flex;
  align-items: center;
  flex: 1 1 48%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f7f7f7;
}

.breakdown-item label {
  flex: 1;
  font-size: 14px;
  color: #555;
}

.breakdown-item span {
  font-size: 14px;
  font-weight: bold;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.calculate-btn {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.calculate-btn:hover {
  background-color: #218838;
}


/* Suggetion code */

.head{
  text-align: center;
  font-size: 2rem;
 }
 .property-grid {
  display: grid;
  grid-template-columns: auto auto ;
  gap: 20px;
  width: 90%;
  margin: auto;
}

.property-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.tags {
  position: absolute;
  top: 10px;
  left: 10px;
  justify-content: space-between;
}

.tag {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 12px;
  border-radius: 5px;
  display: inline-block;
}

.price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.card-details {
  padding: 15px;
  background-color: #212121;
}

.card-details h3 {
  margin: 0;
  font-size: 18px;
  color: #9E7F57;
}

.card-details p {
  margin: 5px 0 15px;
  color: #9E7F57;
  font-size: 16px;
}

.card-details ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: #9E7F57;
}

.card-detailsul li {
  font-size: 12px;
  color: #9E7F57;
  display: flex;
  align-items: center;
}

.card-details ul li i {
  margin-right: 5px;
  color: #72482D;
}



.tags {
  position: absolute;
  top: 10px;
  left: 10px;
}

.tag {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 12px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.tag:hover {
  background-color: #444;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;

}

#load-more-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

#load-more-btn:hover {
  background-color: #444;
}


/* Footer */

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  color: white;
}
.footer-column p{
  color: white;
  margin-top: 15px;
  font-size: 16px;
}
.footer-column h4 {
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-left: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

.buttons {
  margin-top: 20px;
}

.buttons a {
  display: inline-block;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 10px;
  margin-bottom: 20px;
  margin-left: 50px;
}

.buttons a:hover {
  background: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.designdiv{
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content span {
  color: #fff;
}

.footer-content a {
  color: #f00;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}



/* Whatapp button */
/* Whatapp button */
.whatsapp-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
  font-size: 28px;
}

.tooltip {
  position: absolute;
  bottom: 70px;
  right: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #25D366 transparent transparent transparent;
}

.whatsapp-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
#mainhead
{
  display: inline-block;  
  text-align: center;
  margin-right: 300px;
  
}
 #mainhead h1{
  display: inline-block; 
  padding-top: -10px;
}
.material-icons{
  font-size:30px;
  color:black
} 
#headdiv{
  text-align: center;
   background-color: bisque;
}
@media(max-width:768px)
{
  #mainhead
  {
    display: block;  
    text-align: center;
    /* margin-right: 300px; */
    width: 100%;
    font-size: 20px;
  }
   #mainhead h1{
    display: block; 
    /* padding-top: -10px; */
  }
  .material-icons{
    font-size:20px;
    color:black
  }

  #maindiv{
    display: block;
    width: 100%;
    justify-content: space-around;
    gap: 50px;
    margin: auto;
    margin-top: 20px;
  }
  #leftdiv{
    width: 100%;
    border: 1px solid #ccc;
    /* height: 2000px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;;
  }

  #rightdiv{
    width: 100%;
    /* border: 2px solid blue; */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 250px;
   
  }
  /* Image Gallary */
.image-gallery {
  flex: 2;
 width: 100%;
 /* height: 450px; */

}
.image-gallery img {
  width: 100%;
  border-radius: 8px;
  height: 300px;
  
  /* margin-left: 150px; */
 }

 .details {
 
  background-color: #fff;
   padding: 30px;  
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
 
   /* margin-top: 30px;
   height: 500px; */
   /* margin-left: 300px; */
}

.details h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.details .pprice {
  font-size: 20px;
  color: #997b55;
  margin-bottom: 20px;
  
}

.details form {
  display: flex;
  flex-direction: column;
}

.details form input,
.details form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 90%;
}

.details form button {
  padding: 10px;
  background-color: #997b55;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.details form button:hover {
  background-color: #45a049;
}

.overview {
   display: none;
  width: 100%;
  margin: 0 auto; 
  /* margin-left: 150px; */
  border: 1px solid #ccc;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  margin-top: 30px;
  }
  table {
    width: 40%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 16px;
    }
    th, td {
      padding: 10px;
      text-align: left;
      border: 1px solid #ddd;
      }
      th {
        background-color: #f8f8f8;
        font-weight: bold;
        }
        
        tr:hover {
        background-color: #f1f1f1;
        }
        
        .icon {
        margin-right: 5px;
        font-size: 16px;
        }
        
        .description-section {
          max-width: 90%;
          margin: 0 auto;
          padding: 20px;
          border: 1px solid #ddd;
          border-radius: 8px;
          background-color: #ffffff;
          border: 1px solid #ccc;
          box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
        margin-top: 30px;
        }

        .address-section {
          max-width: 800px;
          margin: 0 auto;
          padding: 20px;
          background-color: #fffdf8;
          border: 1px solid #e6d9c5;
          border-radius: 8px;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .property-grid {
          display: grid;
          grid-template-columns:auto ;
          gap: 20px;
          width: 90%;
          margin: auto;
        }
        .property-item {
          display: block;
          /* flex-wrap: wrap; */
          justify-content: space-between;
          padding: 10px 0;
          border-bottom: 1px solid #e6d9c5; /* Subtle divider */
        }
}