body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero {
  background: linear-gradient(135deg, #0d6efd, #001b4d);
  color: #fff;
  padding: 5rem 0 4rem;
}
.hero h1 {
  font-weight: 700;
}
.badge-pill {
  border-radius: 999px;
}
.section-padding {
  padding: 4rem 0;
}
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.bg-soft {
  background-color: #f7f9fc;
}
.property-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
footer {
  font-size: 0.9rem;
}

/* Responsive Hero Logo */
.hero-logo {
  display: block;
  max-width: 600px;        /* Desktop size */
  width: 100%;             /* Scale down automatically */
  height: auto;
  margin-top: -5px;        /* slight upward adjustment */
  margin-bottom: 1.5rem;   /* space below logo */
  opacity: 0.95;           /* Optional: looks smoother against gradient */
}

/* Tablet size */
@media (max-width: 992px) {
  .hero-logo {
    max-width: 992px;
  }
}

/* Mobile size */
@media (max-width: 576px) {
  .hero-logo {
    max-width: 550px;
  }
}

/* Make dropdown items match navbar link style */
.nav-link-style {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #212529 !important;
}

/* Hover look to resemble nav-link hover */
.nav-link-style:hover {
  background-color: #f0f2f5;
  color: #0d6efd !important;
}