<style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f8f8f8;
      color: #333;
    }
    header {
      position: relative;
      width: 100%;
      height: auto;
    }
    header img {
      width: 100%;
      height: auto;
      max-height: 200px;
      object-fit: cover;
      display: block;
    }
    header .text-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
      padding: 1rem;
      width: 90%;
    }
    header h1 {
      font-size: 2rem;
      margin: 0.5rem 0;
    }
    header p {
      font-size: 1.1rem;
      margin: 0.5rem 0;
    }
    .btn {
      display: inline-block;
      margin: 0.5rem;
      padding: 0.75rem 1.25rem;
      background: #00a859;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .btn:hover {
      background: #007944;
      transform: translateY(-2px);
    }
    .tabs {
      text-align: center;
      margin-top: 1rem;
    }
    .tabs button {
      margin: 0.3rem;
      padding: 0.5rem 1rem;
      border: none;
      background-color: #ccc;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .tabs button:hover {
      background-color: #bbb;
      transform: scale(1.05);
    }
    .tabs button.active {
      background-color: #00a859;
      color: white;
    }
    .slider-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      max-width: 1300px;
      margin: auto;
    }
    .slider {
      width: 100%;
    }
    .slick-prev, .slick-next {
      background-color: #ccc;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      z-index: 10;
    }
    .slick-prev:before, .slick-next:before {
      color: #333;
      font-size: 24px;
    }
    .property {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 14px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      margin: 1rem 0.5rem;
      display: flex;
      flex-direction: column;
      position: relative;
      height: 500px;
      text-align: center;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .property:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    }
    .property img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .property:hover img {
      transform: scale(1.05);
    }
    .property h3, .property p {
      padding: 0 1rem;
    }
    .property h3 {
      margin-top: 0.75rem;
      font-size: 1.25rem;
      color: #0057a3;
    }
    .property .price {
      font-weight: bold;
      color: #d32f2f;
      font-size: 1.1rem;
    }
    .property .location {
      font-style: italic;
      color: #777;
      font-size: 0.9rem;
    }
    .property .description {
      font-size: 0.9rem;
      color: #555;
    }
    .property .btn {
      margin: 0 auto 1rem;
      padding: 0.5rem 0.8rem;
      width: auto;
      max-width: 80%;
      border-radius: 6px;
      font-size: 0.85rem;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .property .btn:hover {
      background: #007944;
      transform: translateY(-2px);
    }
    .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: #d32f2f;
      color: white;
      padding: 0.3rem 0.6rem;
      font-size: 0.75rem;
      border-radius: 6px;
      font-weight: bold;
    }
    .badge.rent {
      background-color: #f9a825;
      color: #222;
    }
    .testimonial {
      background: #fff;
      border-left: 4px solid #00a859;
      padding: 1rem;
      margin: 1rem auto;
      max-width: 800px;
      font-style: italic;
      color: #444;
    }
    iframe {
      width: 100%;
      height: 300px;
      border: none;
      margin-top: 2rem;
    }
    @media (max-width: 600px) {
      header h1 { font-size: 1.4rem; }
      header p { font-size: 0.95rem; }
      .btn { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
    }
	  @media (max-width: 600px) {
    header a img {
      height: 40px !important;
    }
  }
  
    .slider-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      max-width: 1300px;
      margin: auto;
      padding: 0 10px; /* Add padding for mobile spacing */
    }
    .slider {
      width: 95%; /* Make it slightly narrower so arrows are visible */
    }
 .slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .slider .slick-dots {
    margin-top: 20px;
  }

  .slider-wrapper {
    padding-bottom: 30px; /* ensure space for dots */
  }
}
	
.slick-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  margin: 0 auto;
  list-style: none;
}

.slick-dots li button:before {
  content: none !important;
}




/* Style numbered buttons */
.slick-dots li button {
  background: transparent;
  border: 1px solid #ccc;
  color: #333;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
}
/* Active number style */
.slick-dots li.slick-active button {
  background: #00a859;
  color: white;
  border-color: #00a859;
}




  </style>