body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffe588;
  line-height: 1.5;

}


html,body {
  
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal overflow */
}
/* Images should never overflow screen */
img {
  max-width: 100%;
  height: auto;
}

/* ===== Responsive Breakpoints ===== */

/* 1. Extra Small Phones (e.g., older iPhones) */
@media (max-width: 360px) {
  body {
    
    font-size: 14px;
  }
}

/* 2. Small to Medium Phones (most phones) */
@media (min-width: 361px) and (max-width: 414px) {
  body {
    
    font-size: 15px;
  }
}

/* 3. Large Phones & Phablets */
@media (min-width: 415px) and (max-width: 480px) {
  body {
    
    font-size: 16px;
  }
}

/* 4. Tablets (portrait) */
@media (min-width: 481px) and (max-width: 768px) {
  body {
   
    font-size: 17px;
  }
}

/* 5. Tablets (landscape) & Small Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
   
    font-size: 18px;
  }
}

/* 6. Desktops */
@media (min-width: 1025px) {
  body {
  
    font-size: 18px;
  }
}

header {
  background-color: white;
  color: black;
  padding: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0%;

  width: 99.9%;
  z-index: 999;
  box-shadow: 3px 4px 5px rgba(0, 0, 0.1);
}

nav a:hover {
  background-color: #f0f0f0;
}


nav a {
  color: black;
  margin: 10px;
  padding: 5px;
  text-decoration: none;

}

.hero {
  padding: 50px;
  text-align: center;

  color: black;
}

.btn,
.bt {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #2196F3;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background: #f3f4f6;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    }

    form input,
    form button {
      padding: 0.8rem;
      font-size: 1rem;
      border-radius: 5px;
      border: 1px solid #ddd;
    }

.form-section {
  background: white;
  padding: 20px;
  max-width: 400px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}



form button {
  background: #2196F3;
  color: white;
  border: none;
  cursor: pointer;
}

.property {
  background: white;
  padding: 15px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  width: 300px;
  display: inline-block;
  vertical-align: top;
}

.property img {
  width: 99.9%;
  border-radius: 10px;
}

.dashboard table {
  width: 90%;
  margin: 20px auto;
  background: white;
  border-collapse: collapse;
}

.dashboard th,
.dashboard td {
  padding: 10px;
  border: 1px solid #ddd;
}

.dashboard button {
  margin-right: 5px;
  padding: 5px 10px;
}

.hero.showcase {
  margin-top: 1.5em;
  position: relative;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffdada;
  overflow: hidden;
}

.showcase-overlay {
  position: relative;
  width: 99.9%;
  height: 99.9%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-img {
  width: 99vw;
  height: 50vh;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.showcase-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.showcase-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.showcase-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn.btn-large {
  font-size: 1.3rem;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  background: #ff9800;
  color: #fff;
  border: none;
  text-decoration: none;
  transition: background 0.3s;
}

.btn.btn-large:hover,
.bt:hover {
  background: #e65100;
}

footer {
  background-color: white;
  text-align: center;
padding: auto;
  box-shadow: 4px 4px 5px rgba(0, 0, 0.1);
  border-top: 1px solid black;
  color: black;
font-size: 0.99rem;
padding: 20px 0;
}

/*#Responsive Utilities and Layout*

/* Make layout containers flexible */
.container,
.dashboard table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Responsive navigation */
/* Responsive Utilities and Layout */
nav {
  display: flex;
  background: white;
  padding: 15px;
  margin: 15px auto;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  width: 100%;
  max-width: 350px;
  display: block;
  box-sizing: border-box;
}

/* Responsive property cards */
.property {
  width: 100%;
  max-width: 350px;
  margin: 15px auto;
  display: block;
}

@media (min-width: 600px) {
  .property {
    display: inline-block;
    width: 48%;
    margin: 1%;
  }
}

/* Dashboard table base style */
.dashboard table {
  font-size: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  background: white;
  border-collapse: collapse;
  box-sizing: border-box;
}

/* Responsive forms */
.form-section {
  width: 95%;
  max-width: 500px;
  margin: 30px auto;
}

/* Responsive tables */
.dashboard table {
  font-size: 1rem;
  overflow-x: auto;
  display: block;
}

/* Responsive hero section */
.hero {
  padding: 30px 10px;
}

@media (min-width: 600px) {
  .hero {
    padding: 60px;
  }
}

/* Responsive showcase text */
.showcase-content h1 {
  font-size: 2rem;
}

.showcase-content p {
  font-size: 1.1rem;
}

@media (min-width: 600px) {
  .showcase-content h1 {
    font-size: 3rem;
  }

  .showcase-content p {
    font-size: 1.5rem;
  }
}

/* Hide overflow for small screens */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    padding: 10px 0;
    position: static;
  }

  .dashboard table,
  .dashboard th,
  .dashboard td {
    font-size: 0.95rem;
    padding: 6px;
  }
}

#imgw {
  position: fixed;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  background-color: #15803d;
  border: 3px solid #fff;
  transition: box-shadow 0.2s;
  display: block;

}
section{
  margin: 15px 5px;
      border-radius: 9px;
      box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
      padding: 19px;
      align-content: center;
};
      