body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
}

/* Header/Navigation Styles */
.navbar {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo-img {
  max-height: 150px;
  width: auto;
}

@media (max-width: 991.98px) {
  .logo-img {
    max-height: 150px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-box {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-right: 8px;
}

.logo-text {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 18px;
}

.post-property-btn {
  position: relative;
  padding: 1px 1px 1px 1px;
  margin-left: 17px;
  background: white;
  color: #212529;
}
.post-property-btn:hover {
  background: #0257c7;
  color: white;
}
.free-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff9800;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.user-btn {
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: 17px;
}

.user-text {
  margin-left: 17px;
  text-align: left;
  line-height: 1.2;
  text-align: center;
}

/* Updated Real Estate Services Section Styles */
.city-img {
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-weight: bold;
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
}


.gradient-heading {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, red, black);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
