* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Unique Real Estate Header */
    .re-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 9);
      color: #fff;
      padding: 30px 30px;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .re-logo{
        width:12%;
        height:auto;
        overflow:hidde;
        position:absolute;
        top:4%;
        z-index:1000;
    }

    .re-logo-img {
        width:100%;
        height: auto;
        transition: transform 0.5s;
        border-radius: 0px 0px 15px 15px;
    }

    .re-menu {
      display: flex;
      gap: 40px;
	  margin-right:8%;
    }

    .re-menu a {
      color: white;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.3s;
      font-weight:600;
    }

    .re-menu a:hover {
      color: #f9cb40;
    }

    .re-contact {
      display: flex;
      gap: 20px;
      align-items: center;
      font-size: 0.9em;
    }

    .re-contact i {
      margin-right: 5px;
      color: #f9cb40;
    }

    .re-hamburger {
      display: none;
      font-size: 1.5em;
      cursor: pointer;
    }

    
    .video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .video-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
      text-align: center;
    }

    .animated-text {
      font-size: 2.5em;
      font-weight: bold;
      color: #f9cb40;
      margin-bottom: 30px;
      animation: slideIn 2s ease-out forwards;
      opacity: 0;
      transform: translateY(-20px);
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .search-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width: 100%;
      padding: 1rem 2.5rem;
      max-width: 1300px;
      border-radius:12px;
      -moz-border-radius:12px;
      -webkit-border-radius:12px;
    }

    .search-bar input,
    .search-bar select,
    .search-bar button {
      padding: 15px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1em;
      outline: none;
    }

    .search-bar input,
    .search-bar select {
      width: 250px;
    }

    .search-bar button {
      background-color: #eee;
      color: #08080a;
      cursor: pointer;
      transition: background-color 0.3s;
      font-weight:600;
    }

    .search-bar button:hover {
      background-color: #fff;
    }
    
    @media (max-width: 620px) {
        .re-logo{
        width:25%;
        top:4%;
        }
     .animated-text {
       font-size: 1.5em !important;
     }
     .valuation__pop {
        color: #fff;
        padding: 5px 5px;
        display: inline-block;
        position: fixed;
        bottom: 5px;
        left: 2px;
        z-index: 9999999;
        box-shadow: 3px 5px 10px 1px #0000005c;
        }
     #whatsapp_call_button {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 275px;
        left: 12px;
        
        font-size: 30px;
       
        
        }    
     
     .re-menu,
      .re-contact {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
      }

      .re-menu.active,
      .re-contact.active {
        display: flex;
      }

      .re-hamburger {
        display: block;
        color: #fff;
      }

      .re-header {
        align-items: flex-start;
      }
    }

    /* Video Section */
    .video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .video-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay {
      position: relative;
      z-index: 1;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
      text-align: center;
    }

    .animated-text {
      font-size: 2.5em;
      font-weight: bold;
      color: #f9cb40;
      margin-bottom: 30px;
      animation: slideIn 2s ease-out forwards;
      opacity: 0;
      transform: translateY(-20px);
    }
}

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .animated-text {
        font-size: 1.5em;
      }

      .search-bar input,
      .search-bar select {
        width: 100%;
      }

      .search-bar {
        flex-direction: column;
        align-items: center;
        width:95% !important;
      }
    }

    
