/* Hero Section with Background Image and Overlay Text */
.hero-section {
    position: relative;
    background-image: url('/media/house.jpg'); /* Update path */
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    z-index: 2;
    color: #fff;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
  }
  
  .hero-content .highlight {
    color: #0af;
  }
  
  .hero-content p {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #0af;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #008fcc;
  }
  
  
  /* Reviews Section */
  .reviews-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111;
  }
  
  .reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .review-text {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .review-stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .review-author {
    font-weight: bold;
    color: #555;
  }