 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
    }

    header {
      background-color: #2e3b4e;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav a {
      color: white;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 1rem;
      background-color: #fff;
    }

    .property-images img {
      width: 100%;
      border-radius: 8px;
    }

    .details {
      margin-top: 1rem;
    }

    .details h2 {
      margin-bottom: 0.5rem;
      color: #333;
    }

    .details p {
      margin: 0.5rem 0;
      color: #555;
    }
   .green-bold {
  color: green;
  font-weight: bold;
   }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
    }

    .feature-box {
      background: #f1f1f1;
      padding: 1rem;
      border-radius: 8px;
      flex: 1 1 30%;
    }

    .agent-details {
      margin-top: 2rem;
      padding: 1rem;
      background-color: #e9f0ff;
      border-left: 4px solid #2e3b4e;
      border-radius: 8px;
    }

    .agent-details h3 {
      margin-top: 0;
    }

    .agent-details p {
      margin: 0.3rem 0;
    }

    footer {
      background-color: #2e3b4e;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 0.5rem;
      }

      .feature-box {
        flex: 1 1 100%;
      }
    }
	
	/* list view css */
	
	  * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f6fa;
      color: #333;
    }

    header {
      background-color: white;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
    }

    nav a {
      color: black;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: 500;
    }

    nav a:hover {
      opacity: 0.8;
    }

    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .search-sort {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .search-sort input,
    .search-sort select {
      padding: 0.6rem;
      border-radius: 6px;
      border: 2px solid #f58521;
      flex: 1;
      min-width: 200px;
    }

    .property-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 0.1rem;
    }

    .card-body h4 {
      margin: 0 0 0.5rem;
      font-size: 1.1rem;
      color: #2e3b4e;
    }

    .card-body p {
      margin: 0.2rem 0;
      font-size: 0.95rem;
      color: #555;
    }

    .tag {
      display: inline-block;
      background-color: green;
      color: white;
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      font-size: 0.75rem;
      margin-top: 0.5rem;
    }

    #pagination {
      text-align: center;
      margin-top: 2rem;
    }

    #pagination button {
      padding: 0.5rem 1rem;
      margin: 0.2rem;
      border-radius: 4px;
      border: 1px solid #ccc;
      background-color: #fff;
      color: #333;
      cursor: pointer;
      transition: all 0.2s;
    }

    #pagination button.active {
      background-color: #2e3b4e;
      color: #fff;
    }

    #pagination button:hover {
      background-color: #1c2736;
      color: white;
    }

    footer {
      background-color: #2e3b4e;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    @media (max-width: 600px) {
      header {
        flex-direction: column;
       
      }

      nav {
        margin-top: 0.5rem;
      }

      .search-sort {
        flex-direction: column;
      }
    }
    
    /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* Sticky Navbar */
.responsive-nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  overflow-x: auto;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  gap: 1px; /* Balanced space between buttons */
}

/* Hide scrollbar */
.responsive-nav::-webkit-scrollbar {
  display: none;
}

/* Button Style */
/* Button Style - Box Type */
.btn {
  padding: 5px 8px;
  border-radius: 6px; /* Less rounded for box style */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}


/* Different colors */
.house {
  background-color: black;
  color: white;
}
.plot {
  background-color: black;
  color: white;
}
.apartment {
  background-color: black;
  color: white;
}
.agri {
  background-color: black;
  color: white;
}

/* Hover effect */
.btn:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

/* Mobile responsiveness - no vertical stacking */
@media (max-width: 600px) {
  .responsive-nav {
    justify-content: flex-start;
    padding: 8px;
  }

  .btn {
    font-size: 13px;
    padding: 8px 12px;
  }
}
 .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .whatsapp-button:hover {
    transform: scale(1.1);
  }

  .whatsapp-button img {
    width: 32px;
    height: 32px;
  }
  .call-button {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Opposite of right */
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background-color: #023f97; /* Blue color for call */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.call-button:hover {
  transform: scale(1.1);
}

.call-button img {
  width: 32px;
  height: 32px;
}
.call-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Moved to right side */
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #023f97; /* Dark blue for call */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.call-buttons:hover {
  transform: scale(1.1);
}

.call-buttons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* Makes icon white */
}
  .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .header .logo img {
      height: 40px;
    }

    .header .ad-post-btn {
      background-color: #00695c;
      color: white;
      padding: 4px 8px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    .header .ad-post-btn:hover {
      background-color: #1ebe5d;
    }

    @media (max-width: 600px) {
      .header {
        flex-direction: column;
        gap: 10px;
      }
    }
    
     .top-bar {
      background: #222;
      color: white;
      padding: 10px 15px;
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .banner {
      background: url('https://via.placeholder.com/900x450') center/cover no-repeat;
      height: 150px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      background-blend-mode: overlay;
      background-color: #2e3b4e;
    }
    .banner h1 {
      font-size: 25px;
      margin-bottom: 10px;
    }
    .banner p {
      font-size: 14px;
      color: #f1c40f;
    }
    .main {
      padding: 20px;
    }
    .property-types {
      margin-top: 4px;
    }
    .property-types h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 0 5px rgba(0,0,0,0.05);
      text-align: center;
      padding: 10px;
    }
    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
    }
    .card h4 {
      margin: 15px 0 10px;
    }
   .card .btn {
  background-color: #00695c;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: block;          /* Change from inline-block to block */
  margin: 10px auto 0;     /* Top margin 10px, auto left/right */
  width: 150px;            /* Fixed width */
  text-align: center;
}


    .features-section {
      background: linear-gradient(135deg, #e0f7fa, #fff);
      padding: 28px 20px;
      text-align: center;
    }
    .features-section h2 {
      color: #00796b;
      margin-bottom: 40px;
    }
    .features-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .features-list .item {
      flex: 1 1 200px;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .choose-section {
      background: #fff8e1;
      padding: 28px 20px;
    }
    .choose-section h2 {
      text-align: center;
      color: #e65100;
      margin-bottom: 30px;
    }
    .choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .choose-grid .box {
      background: white;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border-top: 5px solid #ffa000;
    }

    .services-section {
      background: #ede7f6;
      padding: 28px 20px;
    }
    .services-section h2 {
      text-align: center;
      color: #5e35b1;
      margin-bottom: 30px;
    }
    .services-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .popup {
      display: none;
      position: fixed;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -30%);
      background-color: white;
      padding: 20px;
      border: 2px solid #00695c;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      z-index: 999;
      text-align: center;
    }

    .popup button {
      margin-top: 10px;
      padding: 5px 10px;
      background-color: #00695c;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 998;
    }
    .services-flex .service-card {
      background: white;
      width: 250px;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }
    .foot-properties {
  background: #f9f9f9;
  padding: 30px 15px;
  border-top: 5px solid #2e3b4e;
  font-family: Arial, sans-serif;
}

.foot-container {
  max-width: 1200px;
  margin: auto;
}

.foot-heading {
  color: #2e3b4e;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 16px;
  color: #444;
}

.foot-divider {
  border: none;
  height: 3px;
  background: linear-gradient(to right, #d9230f, #ff9900);
  margin: 25px 0;
}

.foot-localities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 16px;
}

.foot-localities a {
  color: #2e3b4e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-localities a:hover {
  color: #a31500;
  text-decoration: underline;
}

.foot-contact {
  margin-top: 25px;
  font-size: 15px;
  color: #555;
}

.foot-contact a {
  color: #d9230f;
  text-decoration: underline;
}

    