* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1e2a38;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.5)
    ),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  margin: 1rem 0;
}

.btn {
  background: #ff7a18;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #e86b10;
}

/* Properties */
.properties {
  padding: 3rem 2rem;
  text-align: center;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.property-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-card h3 {
  margin: 0.8rem 0;
}

}
/* About */
.about {
  padding: 3rem 2rem;
  background: #f4f4f4;
  text-align: center;
}

/* Contact */
.contact {
  padding: 3rem 2rem;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin-bottom: 1rem;
  padding: 0.7rem;
}

/* Footer */
footer {
  background: #1e2a38;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
.visitor-counter {
  text-align: center;
  margin: 30px 0;
  font-size: 18px;
}

.visitor-counter p {
  margin-bottom: 8px;
  font-weight: 500;
}
h1 {
  font-size: clamp(36px, 6vw, 44px);
  font-weight: 700;
}
