body {
    font-family: 'Cabin', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    
  }
  
  .div-bar {
    background: none;
    margin-right: 30%;
  }

  .div-bar a {
    font-size: 20px;
    color: #228B22;
  }
  
  .top-bar {
    background-color: #228B22;
    padding: 1%;
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
}
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  nav ul {
    list-style: none;
    display: flex;
  }
  
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a:hover {
    color: #c0cc18;
    transition: color 150ms ease-in-out;

  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .quote-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }

  .logo-hacienda {
    margin-left: 9%;
    width: 15%;
  }
  
  .hero {
    color: #fff;
    text-align: left; 
    padding: 200px 20px;
    background: url('img/test_mod.png') no-repeat center center/cover;
  }

  .hero .logo{
    align-items: top;
  }
  .hero h2 {
     /* Makes the heading big */
    font-weight: bold; /* Ensures the text is bold */
    margin: 0;
    line-height: 1.2;
}
  h2 {
  margin-left: 0;
  font-size: 100px;
}
  .hero-content {
    max-width: 600px;
    margin-left: 5%;
  }
  

  .hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
    text-align: center;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/* Animation utility class */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
  }

  
  .hero-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
  }
  
  .services {
    display: flex;
    justify-content: space-around;
    padding: 20px;
  }
  
  .service-card {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: #fff;
  }
  
  .tooltip {
    position: absolute;
    background-color: white;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    pointer-events: none;
    display: none;  /* Initially hidden */
}

.text-box {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-left: 6px solid #4CAF50; /* real estate green */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.8;
  position: relative;
  font-size: 20px;
}


.title {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}


.box-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.map-column {
  flex: 1 1 60%;
}

.map-column iframe {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-column {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2rem;
  color: #444;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 8px;
}




