/* Custom styles for the landing page */

/* Ensure the body has no margin and proper font */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Custom hover effects for stat cards */
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Custom hover effects for property cards */
  .property-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Ensure banner height is consistent */
  #banner {
    min-height: 100vh;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #banner .flex {
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }
  
    #banner .flex-1 {
      margin-bottom: 2rem;
    }
  
    #lead_form {
      max-width: 100%;
    }
  }

  #message, #popupMessage {
    display: none;
}
  /* working  */