body {
    font-family: Arial, sans-serif;
  }
  
  /* .search-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
  } */

  .search-bar{
    overflow: hidden;
  }
  @media (max-width: 768px){
    

    .search-bar{
      
      
    }
    
  }
  
  .property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .property-card img {
    width: 100%;
    border-radius: 8px;
  }
  .search-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .search-bar select,
  .search-bar input {
    border: none;
    outline: none;
    background: none;
    flex-grow: 1;
    margin: 0 10px;
  }
  .search-bar input::placeholder {
    color: #aaa;
  }
  .search-bar button {
    border: none;
    background-color: #a56c4a;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .search-bar button:hover {
    background-color: #8c5836;
  }
  .icon-list {
    display: flex;
    flex-wrap: wrap;
 
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }
  .icon-item {
    text-align: center;
    font-size: 14px;
    color: #333;
  }
  .icon-item i {
    font-size: 30px;
    margin-bottom: 5px;
    color: #555;
    transition: color 0.3s;
  }
  .icon-item:hover i {
    color: #a56c4a;
  }
  .team-container {
    padding: 50px 0;
  }
  .team-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .team-container p {
    color: #666;
    line-height: 1.6;
  }
  .team-member {
    text-align: center;
    margin-bottom: 30px;
  }
  .team-member img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 10px;
  }
  .team-member h5 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
  }
  .team-member p {
    font-size: 14px;
    color: #888;
  }
  .home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d0d0d;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 1200px;
    overflow: hidden;
    color: white;
  }

  .content {
    flex: 1;
    padding: 50px;
  }

  .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #fff;
    color: #0d0d0d;
  }

  .image-container {
    flex: 1;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .team-member img {
      width: 100px;
      height: auto;
    }
    .testimonial-card {
      text-align: center;
    }
  }
  

   /* Set the map container dimensions */
   #map {
    width: 80%; /* Adjust as needed */
    height: 600px; /* Adjust as needed */
    border: 1px solid #ccc; /* Optional: Add a border for better visibility */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
  }

  .marker-label {
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    color: black;
    white-space: nowrap;
  }

  .leaflet-control {
    z-index: 1000;
  }

  

  .image-container img{
    border-top-left-radius:25px ;
    border-bottom-left-radius:25px ;
    
  }
















  h1.custom-title {
    font-size: 3rem; /* For large screens */
  }

  p.custom-text {
    font-size: 1.2rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1.custom-title {
      font-size: 2rem; /* Smaller headings for tablets */
    }

    p.custom-text {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    h1.custom-title {
      font-size: 1.5rem; /* Smaller headings for mobile */
    }

    p.custom-text {
      font-size: 0.9rem;
    }
  }
   /* Custom Styles for Testimonials */
   .testimonial-slider {
    background-color: #f8f9fa; /* Light background */
    padding: 50px 20px;
    border-radius: 20px;
  }

  .testimonial-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .testimonial-card h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    color: #555;
  }
  .contact-section {
    padding: 50px 0;
}
.contact-details h4 {
    font-weight: bold;
}
.contact-details p {
    margin-bottom: 10px;
}
.contact-details i {
    font-size: 18px;
    color: #a67656;
    margin-right: 10px;
}
.form-control, .form-check-input {
    border: 1px solid #ccc;
    border-radius: 5px;
}
.btn-contact-submit {
  background-color: #a67656;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.btn-contact-submit:hover {
  background-color: #8b5e48;
}
.contact-section
{
  background-color: #f8f7f3;
  font-family: Arial, sans-serif;
  color: #333;
}
  footer {
    background-color: #141414;
    color: #ffffff;
    padding: 50px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 200px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-column ul li a:hover {
    color: #a67c52;
  }

  .contact-info {
    font-size: 14px;
    line-height: 1.8;
    color: #d9d9d9;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #a67c52;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
  }

  .social-icons a:hover {
    background-color: #8c6844;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #d9d9d9;
    font-size: 14px;
  }

  .footer-bottom a {
    color: #a67c52;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    color: #8c6844;
  }
  .footer {
    background-color: #000;
    padding: 40px 0;
}
.footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
}
.footer p, .footer a {
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    color: #0d6efd;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #a67656;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
}
.social-icons a:hover {
    background-color: #0d6efd;
}