/* ================= NAVBAR ================= */

.navbar-custom {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s ease;
}
/* Scroll State */
.navbar-custom.scrolled {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

/* Logo Default (Desktop) */
.nav-logo {
  height: 5rem;
  width: 10rem;
  transition: 0.3s ease;
}

/* Scroll pe chhota */
.navbar-custom.scrolled .nav-logo {
  height: 5rem;
  width: 10rem;
}

/* ========== Tablet ========== */
@media (max-width: 992px) {
  .nav-logo {
    height: 5rem;
    width: 10rem;
  }

  .navbar-custom.scrolled .nav-logo {
    height: 5rem;
    width: 10rem;
  }
}

/* ========== Mobile ========== */
@media (max-width: 576px) {
  .nav-logo {
    height: 40px;
    width: 100px;
  }

  .navbar-custom.scrolled .nav-logo {
    height: 40px;
    width: 100px;
  }
}
/* Nav Text Default (Top) */
.navbar-custom .nav-link {
  color: #ffffff !important;
  transition: 0.3s;
}

/* Scroll Text Color */
.navbar-custom.scrolled .nav-link {
  color: #000000 !important;
}

/* Hover Effect */
.nav-link {
  position: relative;
  margin-left: 20px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffc107;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
/* ================= MOBILE REELS ================= */
@media (max-width: 768px) {
  /* .hero-section {
    display: none;
  } */

  .navbar-custom {
    background: #ffffff !important;
  }

  .navbar-custom .nav-link,
  .navbar-custom .navbar-brand {
    color: #000 !important;
  }
}
/* ========footer====== */
.realestate-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 0;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #f4c542;
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f4c542;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f4c542;
}

.footer-bottom {
  background: #000;
  color: #888;
  text-align: center;
  padding: 15px 0;
  font-size: 13px;
  margin-top: 30px;
}
