* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background: #f9fafc;
      line-height: 1.6;
    }
    :root{
      --blue: #01266e;
      --orange: #d35b05;
      --muted: #f6f8fb;
      --card-radius: 14px;
      --max-width: 1100px;
    }
    *{box-sizing:border-box}
    
    

    .wrap {
      width:100%;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(2,12,34,0.08);
      display: grid;
      grid-template-columns: 1fr 430px;
      min-height: 560px;
      margin-top: 18px;
    }
    a { text-decoration: none; color: inherit; }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 7%;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo img { max-width: 150px; height: auto; }
    nav ul { display: flex; gap: 1.8rem; list-style: none; }
    nav a { font-weight: 500; transition: color 0.3s; }
    nav a:hover { color: #e85c0d; }

    .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; }
    @media (max-width: 768px) {
      nav ul {
        position: absolute; top: 70px; right: 5%;
        width: 220px; flex-direction: column;
        background: #fff; padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        display: none;
      }
      nav ul.active { display: flex; }
      .menu-toggle { display: block; }
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(13,58,105,0.7), rgba(0,0,0,0.6)), url("assets/hero.png") center/cover no-repeat;
      text-align: center;
      padding: 7rem 1rem;
      color: #fff;
      position: relative;
    }
    .hero h1 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; }
    .hero p { font-size: 1.2rem; margin-bottom: 2rem; }
    .hero .buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .btn {
      padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 15px; font-weight: 500;
      border: none; cursor: pointer; transition: all 0.3s ease;
    }
    .btn-orange { background: linear-gradient(45deg, #ff6a00, #e85c0d); color: #fff; }
    .btn-orange:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(232,92,13,0.4); }
    .btn-blue { background: linear-gradient(45deg, #0d3a69, #145086); color: #fff; }
    .btn-blue:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(13,58,105,0.4); }

    /* Features Section */
    .features {
      display: flex; justify-content: space-around; gap: 1.5rem;
      margin: -3rem auto 3rem; max-width: 1100px; flex-wrap: wrap; position: relative;
    }
    .feature {
      flex: 1; text-align: center; background: #fff;
      padding: 2rem 1.5rem; min-width: 240px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .feature:hover { transform: translateY(-8px); }
    .feature i { font-size: 2.8rem; margin-bottom: 1rem; }
    .feature:nth-child(1) i { color: #e85c0d; }
    .feature:nth-child(2) i { color: #0d3a69; }
    .feature:nth-child(3) i { color: #28a745; }
    .feature h3 { margin: 0.8rem 0; color: #0d3a69; font-size: 1.3rem; }
    .feature p { font-size: 0.95rem; color: #555; }

    /* About Us */
    section.about { padding: 4rem 7%; background: #fff; text-align: center; }
    .about h2 { font-size: 2rem; margin-bottom: 1rem; color: #0d3a69; }
    .about p { max-width: 850px; margin: 0 auto 2rem; font-size: 1.1rem; color: #555; }
    .about-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .about-card {
      background: #fff; padding: 2rem 1.5rem;
      flex: 1; min-width: 260px; max-width: 300px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .about-card:hover { transform: translateY(-8px); }
    .about-card i { font-size: 2.2rem; margin-bottom: 0.8rem; }
    .icon-flag { color: #e85c0d; }
    .icon-vision { color: #e85c0d; }
    .icon-values { color: #e85c0d; }
    .about-card h3 { font-size: 1.2rem; margin: 0.5rem 0; color: #0d3a69; }
    .about-card p { font-size: 0.95rem; color: #555; }


/* --- Dashboard layout --- */
.dashboard {
  display: flex;
  min-height: calc(100vh - 80px);
  background: #f7f9fc;
  gap: 24px;
  padding: 20px;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: normal;
}
.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1d3557;
}
.sidebar-menu,
.sidebar-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li,
.sidebar-footer li {
  padding: 10px 8px;
  border-radius: 8px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-menu li.active,
.sidebar-menu li:hover {
  background: #eef6ff;
  color: #1e40af;
}
.sidebar-footer p {
  margin: 14px 0 8px;
  font-size: 14px;
  color: #94a3b8;
}

/* --- Dashboard main --- */
.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Summary cards */
.summary-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.card-item {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.card-item p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}
.card-item h3 {
  margin: 4px 0 0;
  font-size: 24px;
}
.card-icon {
  font-size: 22px;
  background: #f1f5f9;
  padding: 12px;
  border-radius: 8px;
}
.card-item.orange .card-icon { background: #fff5eb; color: #ff7a18; }
.card-item.blue .card-icon { background: #e0f2fe; color: #0369a1; }
.card-item.heart .card-icon { background: #fef2f2; color: #ef4444; }

/* --- My Properties Table --- */
.properties-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.section-header h2 {
  margin: 0;
  font-size: 20px;
  color: #1e293b;
}
.section-header p {
  margin: 4px 0 20px;
  color: #64748b;
  font-size: 14px;
}

.table-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.table-actions input,
.table-actions select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
}
.table-actions .btn.small {
  padding: 8px 16px;
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* table */
.properties-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.properties-table th {
  text-align: left;
  padding: 12px;
  background: #f8fafc;
  color: #475569;
}
.properties-table td {
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.status {
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.status.posted { background: #16a34a; }
.status.pending { background: #f59e0b; }
.status.closed { background: #94a3b8; }

/* Buttons in table */
.btn-table {
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  margin-right: 4px;
  color: #fff;
}
.btn-table.edit { background: #1e40af; }
.btn-table.remove { background: #f87171; }
.btn-table.view { background: #334155; }

@media(max-width:900px){
  .dashboard { flex-direction: column; }
  .sidebar { width:100%; flex-direction: row; overflow-x:auto; }
  .dashboard-main { width:100%; }
}

/* ---------- DASHBOARD: polished design ---------- */



/* base layout for dashboard */
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--bg);
  min-height: calc(100vh - 80px);
}

/* sidebar */
.sidebar {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.brand-logo { width:44px; height:44px; object-fit:contain; }
.brand-text strong { font-size:16px; display:block; color:#123444; }
.brand-text small { color:var(--muted); font-size:12px; display:block; margin-top:2px; }

.nav ul { list-style:none; padding:0; margin:10px 0 0; display:flex; flex-direction:column; gap:6px; }
.nav li {
  padding:12px 10px;
  border-radius:10px;
  color:#12324a;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-weight:600;
}
.nav li .nav-icon { width:18px; height:18px; fill:currentColor; opacity:0.7; }
.nav li:hover { background: #eef6ff; color: #0f4b6b; box-shadow: var(--shadow-2); }
.nav li.active { background:#eef6ff; color:#0f4b6b; box-shadow: var(--shadow-2); }

/* sidebar bottom quick links */
.sidebar-bottom { margin-top:18px; }
.quick-links { display:flex; flex-direction:column; gap:8px; }
.quick-links .ql { display:flex; align-items:center; gap:8px; text-decoration:none; color:#12324a; padding:8px; border-radius:8px; font-weight:600; }
.quick-links .ql:hover { background:#f1f7ff; }

/* main content */
.main { display:flex; flex-direction:column; gap:20px; }

/* top cards */
.top-cards { display:flex; gap:18px; align-items:stretch; }
.card { background:var(--card); border-radius:12px; padding:16px; box-shadow: var(--shadow-1); display:flex; align-items:center; gap:12px; min-width:0; flex:1; }
.card--accent { padding:18px; display:flex; align-items:center; justify-content:flex-start; }
.card-left { display:flex; gap:12px; align-items:center; width:100%; }
.card-icon { width:56px; height:56px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:22px; }
.card--orange .card-icon { background: linear-gradient(135deg,#fff4ed,#ffe7d1); color:#ff7a18; }
.card--blue .card-icon { background: linear-gradient(135deg,#e6f4ff,#dff0ff); color:#0369a1; }
.card--pink .card-icon { background: linear-gradient(135deg,#fff0f2,#ffeef0); color:#ef4444; }
.card-meta .card-title { font-size:13px; color:var(--muted); }
.card-number { font-size:20px; font-weight:800; color:#0f2b45; }

/* properties area */
.properties {
  background: transparent;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* header and controls */
.properties-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}
.properties-header h2 { margin:0; color:#0f2b45; font-size:20px; }
.muted { color:var(--muted); margin-top:6px; }

.properties-controls { display:flex; gap:10px; align-items:center; }
.properties-controls input[type="search"] {
  padding:10px 12px; border-radius:10px; border:1px solid #e6eef6; width:320px; outline:none;
}
.properties-controls .btn--primary {
  background:#0f4b6b; color:#fff; border:none; padding:10px 14px; border-radius:10px; cursor:pointer;
}
.properties-controls select { padding:10px 12px; border-radius:10px; border:1px solid #e6eef6; }

/* table wrapper */
.table-wrap {
  background: var(--card);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-1);
  overflow:auto;
}

/* responsive table */
.props-table { width:100%; border-collapse:collapse; min-width:900px; font-size: small;}
.props-table thead th {
  text-align:left; padding:12px 14px; background: #f8fafc; color:#475569; font-size:13px;
}
.props-table tbody td { padding:7px; border-bottom:1px solid #f3f6f9; color:#213545; vertical-align:middle; }
.props-table tbody tr:hover { background: #fbfdff; }

/* status pills */
.pill { display:inline-block; padding:6px 12px; border-radius:999px; font-weight:700; font-size:12px; color:#fff; }
.pill--green { background:#16a34a; }
.pill--orange { background:#f59e0b; }
.pill--gray { background:#94a3b8; }

/* action buttons */
.actions .btn-table { margin-right:8px; padding:8px 10px; border-radius:8px; border:none; font-weight:700; cursor:pointer; }
.btn-table.btn-edit { background:#0f4b6b; color:#fff; }
.btn-table.btn-remove { background:#fff; color:#ef4444; border:1px solid #fbe8e8; box-shadow:none; }
.btn-table.btn-view { background:#334155; color:#fff; }

/* small screens */
@media (max-width: 1000px) {
  .dashboard { grid-template-columns: 1fr; padding:16px; }
  .top-cards { flex-direction: column; }
  .properties-controls { flex-direction: column; align-items:flex-start; }
  .properties-controls input[type="search"] { width:100%; }
  .props-table { min-width:0; }
}

/* micro-interactions */
.btn-table:hover { transform: translateY(-1px); transition: transform .12s ease; }
.card:hover { transform: translateY(-4px); transition: transform .14s ease; }

.rounded-full {
    border-radius: 9999px !important;
}

 /* MAIN equal columns section */
    .wf-section {
      max-width: var(--container-max);
      margin: 28px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* equal width columns */
      gap: var(--gap);
      align-items: stretch;
      /* make items stretch to equal height */
    }

    .panel {
      background: var(--panel-bg);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 12px 30px rgba(2, 12, 34, 0.06);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    /* Left panel: Why */
    .wf-main h2 {
      margin: 0;
      color: #0d3a69;
      font-size: 1.4rem;
      line-height: 1.12;
    }

    .wf-main p.lead {
      margin: 6px 0 12px;
      color: #506b81;
      font-size: 0.98rem;
    }

    .wf-benefits {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 6px;
      align-content: start;
    }

    .benefit {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: linear-gradient(180deg, #fff, #fbfdff);
      padding: 14px;
      border-radius: 10px;
      border: 1px solid rgba(1, 38, 110, 0.04);
      box-shadow: 0 8px 20px rgba(2, 12, 34, 0.03);
    }

    .benefit .ico {
      min-width: 44px;
      min-height: 44px;
      border-radius: 10px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0d3a69;
      font-size: 18px;
      box-shadow: 0 6px 18px rgba(1, 38, 110, 0.04);
    }

    .benefit strong {
      display: block;
      color: #0d3a69;

      font-size: 0.98rem;
      margin-bottom: 6px;
    }

    .benefit small {
      color: #526a7f;
      font-size: 0.95rem;
      line-height: 1.35;
    }

    /* Right panel: How */
    .wf-how h2 {
      margin: 0;
      color: #0d3a69;
      font-size: 1.4rem;
      line-height: 1.12;
    }

    .wf-how p.lead {
      margin: 6px 0 12px;
      color: #0d3a69;
      font-size: 0.98rem;
    }

    .how-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .how-step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 10px;
      background: linear-gradient(180deg, #fff, #fbfdff);
      border: 1px solid rgba(2, 12, 34, 0.03);
      box-shadow: 0 8px 20px rgba(2, 12, 34, 0.03);
    }

    .step-num {
      min-width: 44px;
      min-height: 44px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--blue);
      font-weight: 800;
      font-size: 1rem;
      box-shadow: 0 6px 18px rgba(1, 38, 110, 0.06);
    }

    .step-body strong {
      display: block;
      color: #0d3a69;
      margin-bottom: 6px;
      font-size: 0.98rem;
    }

    .step-body p {
      margin: 0;
      color: #526a7f;
      font-size: 0.95rem;
      line-height: 1.35;
    }

    /* CTA area inside right panel (keeps same visual weight) */
    .how-cta {
      margin-top: auto;
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
      padding-top: 10px;
    }

    .how-cta .btn {
      padding: 10px 14px;
      border-radius: 8px;
      font-weight: 600;
      border: none;
      color: #fff;
      cursor: pointer;
    }

    .how-cta .btn.primary {
      background: var(--blue);
      box-shadow: 0 8px 22px rgba(1, 38, 110, 0.12);
    }

    .how-cta .btn.secondary {
      background: var(--orange);
    }

    /* Make left features align to top, but both panels are equal height due to grid align-items:stretch */
    .wf-main,
    .wf-how {
      display: flex;
      flex-direction: column;
    }