body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7fa;
  color: #333;
}

h1, h2, h3 {
  margin: 0;
}

/* Navbar Styles */
/* Navbar Styles */
.navbar {
  background-color: #343a40; /* Dark background for the navbar */
}

.navbar a {
  color: white !important;
  text-decoration: none;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-item {
  padding: 0 15px;
}

.nav-link {
  /* color: white !important; */
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f39c12 !important;
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
  border-color: #f39c12; /* Color of the hamburger icon */
}

.navbar-toggler-icon {
  background-color: #f39c12;
}

/* Hero Section */
.hero {
  background-image: url('https://source.unsplash.com/1600x900/?real-estate');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 20px 20px 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .cta-buttons a {
  background-color: #FF5722;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  margin: 10px;
}

.hero .cta-buttons a:hover {
  background-color: #e64a19;
}

/* Featured Section Styles */
.featured {
  padding: 30px 20px;
  text-align: center;
}

.featured h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Card Container */
.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 5px 0px #343a40ab;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
	width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 5px;
    border-radius: 15px 15px 0px 0px;
}

.card-info {
  padding: 20px;
}

.card-info h3 {
  font-size: 15px;
  margin-bottom: 10px;
      text-align: left;
	  font-weight: 600;
}

.card-info p {
  font-size: 1rem;
  color: #666;
}

.card-info a {
  display: inline-block;
  margin-top: 20px;
  background-color: #FF5722;
  color: white;
      padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
}

.card-info a:hover {
  background-color: #e64a19;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content p {
  margin: 0;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #FF5722;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        background: #343a40;
    }
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #6d7e93;
}


/* Container for the carousel */
  .carousel-inner {
    max-width: 1200px;  /* Set a max width for the carousel */
    margin: 0 auto;     /* Center the carousel horizontally */
  }

  /* Ensuring images are responsive and do not stretch */
  .carousel-item img {
    object-fit: cover;  /* Make sure the image covers the container without stretching */
    height: 400px;      /* Set a fixed height for the carousel images */
    width: 100%;        /* Ensure the image stretches across the full width of its container */
  }

  /* Optional: Style carousel controls to match the smaller size */
  .carousel-control-prev, .carousel-control-next {
    width: 5%;  /* Adjust the width of the prev/next buttons */
  }
  
  
  /* Search Section */
.search-section {
 background: #fff;
    padding: 10px 1px;
    margin: 0px auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    height: 60px;
}

.search-form .form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
}

.btn-search {
  background-color: #FF5722;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.btn-search:hover {
  background-color: #e64a19;
}
