/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navbar styles */
.navbar {
  background-color:#1c1cf1; /* Dark green */
  padding: 15px 0;
  width: 100%;
}

.navbar-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
   max-width: 100%;
   width: 70px;
   border: 2px solid #fff;
   border-radius: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c8e6c9; /* Light green on hover */
}


/* fa-fa */
.fa-solid{
  color: white;
  margin-right: 5px;
}

.banner {
  background-image: url('assets/banner.jpg'); /* Replace with your image URL */
  
  color: rgb(21, 20, 20);
  padding: 80px 20px;
  text-align: center;
}

.banner-content {
    max-width: 600px;
    margin: auto;
    background: #ffffff94;
    border-radius: 6px;
    padding: 15px;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn img {
  max-width: 180px;
  height: auto;
  transition: transform 0.2s ease;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn img:hover {
  transform: scale(1.05);
}

/* ... 3 block .... */
.property-listings {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
      margin-top: 25px;
    padding-top: 25px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  color: #1c1cf1;
  margin: 0 0 10px;
}

.card-content .address {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.card-content .location {
  font-weight: bold;
  margin-bottom: 10px;
}

.features {
  display: flex;
  gap: 10px;
  color: #555;
  margin-bottom: 16px;
}

.details-btn {
  background-color:#1c1cf1;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.details-btn:hover {
  background-color:#1c1cf1;
}
/* 4 block */
.features-section {
  padding: 50px 20px;
  background-color: #f1f5f9;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background-color: white;
  border-radius: 8px;
  padding: 30px 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.feature-box a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  position: relative;
}

.feature-box a::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0f172a;
  margin: 4px auto 0;
}
/* 2 block  */
.find-home-section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h2 {
  font-size: 32px;
  color: #0f172a;
  font-weight: 700;
}

.header p {
  margin-top: 15px;
  font-size: 16px;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.left-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-circle {
  background-color: #f1f5f9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #0f172a;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: #64748b;
}

.right-image {
  flex: 1;
}

.right-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
/* ....footer */
.footer {
  background-color: #f8f9fa;
  padding: 60px 20px 30px;
  color: #1e293b;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  line-height: 1.8;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  background-color: #e2e8f0;
  color: #1e293b;
  width: 35px;
  height: 35px;
  margin-right: 8px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 14px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: underline;
}