body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #222;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo h1 {
  font-size: 22px;
}

.logo img {
  width: 99px;
  filter: invert(50%);
  filter: brightness(100);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.4s;
}

.nav-links li a:hover {
  background-color: #6c6c6cb2;
  border-radius: 5px;
  padding: 12px;
}



/* Responsive for mobile */
@media (max-width: 555px) {
  .nav-links {
    flex-direction: column;
    background-color: #222;
    width: 100%;
    top: 60px;
    left: 0;
  }

  .logo {
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

}
@media (max-width:444px) {
  .whatsapp-float{
    right: 0;
    bottom: 88px;
  }
}

@media (max-width: 666px) {
  .header {
    flex-direction: column;
    background-color: #333;
    width: 100%;
    /* top: 60px; */
  }
}







/* Header */
.header {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2rem;
  font-weight: 300;
}

.property-listings {
  padding: 2rem;
  background-color: #f9f9f9;
}

.property-listings h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Responsive Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(346px, 1fr));
  gap: 5rem;
}

/* Individual Property Card */
.property-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: auto;
  display: block;
}

.property-info {
  padding: 1rem;
}

.property-info h3 {
  margin-bottom: 0.5rem;
}

.property-info .price {
  color: #2c3e50;
  font-weight: bold;
  margin: 0.5rem 0;
}

.btn-contact {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info,
.footer-socials {
  flex: 1 1 250px;
}

.footer a {
  color: #f1c40f;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .property-listings {
    padding: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer a {
    margin-top: 0.25rem;
  }
}

.footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 16px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-info h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-info p,
.footer-socials p {
  margin: 8px 0;
}

.footer-info a,
.footer-socials a {
  color: #25D366;
  text-decoration: none;
}

.footer-info a:hover,
.footer-socials a:hover {
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 400px) {
  .footer {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    margin-top: 20px;
  }
}


.social-link {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

.social-link img {
  width: 25px;
  margin-right: 10px;
}

.social-link:hover {
  text-decoration: underline;
}