/* Table styles */
		.maint-table {
			border-collapse: collapse;
			width: 100%;
		}
		.maint-table th, .maint-table td {
			border: 1px solid black;
			padding: 10px;
			text-align: left;
		}
		.maint-table th {
			background-color: #ddd;
			position: sticky;
			top: 0;
			z-index: 1;
		}
		.maint-table tr:nth-child(even) {
			background-color: #f2f2f2;
		}

		/* Search bar styles */
		.search-container {
			margin-top: 20px;
			margin-bottom: 20px;
			text-align: center;
		}
		.search-input {
			padding: 8px;
			border: 1px solid #ddd;
			border-radius: 4px;
			width: 60%;
			margin-right: 8px;
			font-size: 16px;
			outline: none;
		}
		.search-btn {
			padding: 8px;
			background-color: black;
			color: white;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			font-size: 16px;
		}
		.search-btn:hover {
			background-color: #333;
		}

		/* Category filter styles */
		.category-container {
			text-align: center;
			margin-bottom: 20px;
		}
		.category-btn {
			padding: 8px;
			background-color: #ddd;
			color: black;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			font-size: 16px;
			margin-right: 8px;
			margin-bottom: 8px;
		}
		.category-btn:hover {
			background-color: #bbb;
		}
		.category-btn.active {
			background-color: black;
			color: white;
		}

	.aptfeatures-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
        grid-gap: 20px;
        justify-content: center;
        margin: 0 auto;
	  margin-top: 40px;
	  margin-bottom: 40px;
        max-width: 90%;
      }
      .aptfeatures-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 128px;
        height: 128px;
        background-color: #f2f2f2;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      }
      .aptfeatures-icon {
        font-size: 36px;
        margin-bottom: 10px;
      }
      .aptfeatures-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
        text-align: center;
      }

      /* For screens smaller than 768px */
      @media screen and (max-width: 767px) {
        .aptfeatures-grid {
          grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
        }
      }

      /* Adjust the grid to have 4 items per row on desktop */
      @media screen and (min-width: 768px) {
        .aptfeatures-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }

a.dropdown-toggle{
    margin-left: 10px !important;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.pricing-table {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
}

.pricing-table-header {
  margin-bottom: 30px;
}

.pricing-table-caption {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgb(17, 17, 17, 0.7);
}

.pricing-table-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: rgb(173, 140, 99);
}

.pricing-table-body {
  width: 100%;
}

.pricing-table-features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.pricing-table-features li {
  font-size: 18px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.pricing-table-features li:nth-child(even) {
  background-color: #FFFFFF;
}


.values-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.values-table {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
}

.values-table-header {
  margin-bottom: 30px;
}

.values-table-caption {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgb(17, 17, 17, 0.7);
}

.values-table-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: rgb(173, 140, 99);
}

.values-table-body {
  width: 100%;
}

.values-table-features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.values-table-features li {
  font-size: 18px;
  margin-bottom: 10px;
  background-color: #FFFFFF;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}



.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 768px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

.services-grid-item {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

.services-grid-item img {
  max-width: 100%;
  height: auto;
}

.services-grid-header  {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}

.services-grid-description {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
}

.list-property-btn{
    margin: 0 auto;
    background: black;
    border-radius: 25px;
    width: 30%;
    padding: 10px;
    min-width: 320px;
    color:white ;
    display: block;
}

  .whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background-color: white;
    padding: 1rem;
  }

  .whyus-item {
    text-align: center;
    background-color: #f2f2f2;
    padding: 1rem;
  }

  .whyus-item .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .whyus-item img {
    max-width: 100%;
    height: auto;
  }

  .whyus-item h2 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
  }

  .whyus-item p {
    font-size: 16px;
    color: black;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
  }

  .whyus-item .title {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
  }