    /* Hero Section */
    .hero-section {
      position: relative;
      width: 100%;
      height: 90vh;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .hero-section {
        height: 60vh;
      }
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      /* contain se video pura visible rahega */
      background: black;
      /* black bars jab aspect ratio match na ho */
      z-index: 0;
    }


    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      padding: 0 20px;
    }

    @media (max-width: 768px) {
      .hero-content {
        top: auto;
        transform: none;
        padding-top: 20px;
      }
    }




    .hero-label {
      background: #053022;
      padding: 8px 14px;
      border-radius: 30px;
      font-size: 14px;
      display: inline-block;
      margin-bottom: 15px;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .hero-content p {
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto 30px;
    }

    /* Stats */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 30px;
    }

    .hero-stats div {
      text-align: center;
    }

    .hero-stats strong {
      font-size: 2rem;
      display: block;
    }

    .hero-stats span {
      font-size: 0.9rem;
    }

    /* Search Box */
    .search-box {
      background: #fff;
      padding: 15px 20px;
      max-width: 900px;
      margin: -50px auto;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
      z-index: 5;
      position: relative;
    }

    .search-box h4 {
      font-size: 15px;
      margin-bottom: 15px;
      color: #191b3a;
    }

    .search-fields {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .field {
      flex: 1;
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 8px 10px;
      background: #fff;
    }

    .field i {
      font-size: 16px;
      margin-right: 8px;
      color: #191b3a;
    }

    .field input,
    .field select {
      border: none;
      outline: none;
      font-size: 14px;
      width: 100%;
      color: #191b3a;
    }

    /* Optional: Change on hover/focus */



    .btn-search {
      background: #053023;
      color: #fff;
      border: none;
      padding: 8px 18px;
      border-radius: 8px;
      cursor: pointer;
    }
    .btn-search:hover {
      background: linear-gradient(135deg, #CB8E55, #91573A);
      color: #fff;
      border: none;
      cursor: pointer;
    }

    /* Mobile */
    @media(max-width:768px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .search-fields {
        flex-direction: column;
      }

      .hero-stats {
        flex-direction: row;
        gap: 10px;
      }

      .search-box {
        padding: 10px 12px;
        max-width: 95%;
        margin-top: -90px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);

      }

      .search-box h4 {
        font-size: 13px;
        margin-bottom: 10px;
      }

      .field {
        padding: 6px 8px;
      }

      .field input,
      .field select {
        font-size: 12px;
      }

      .btn-search {
        padding: 6px 14px;
        font-size: 13px;
      }

      .hero-video {
        object-position: center center;
        /* mobile pe balanced view */
      }
    }


  :root { --gold: #CB8E55; --gold-grad: linear-gradient(135deg, #CB8E55, #91573A); }
  body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; scroll-behavior: smooth; }

  .property-item {
    background: #fff; border-radius: 12px; overflow: hidden; transition: 0.3s;
    border: 1px solid #eee; display: flex; flex-direction: column; height: 100%;
  }
  .property-item:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

  /* Image & Badges */
  .image-box { position: relative; height: 220px; overflow: hidden; }
  .image-box img { width: 100%; height: 100%; object-fit: cover; }
  
  .badge-container { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
  .custom-badge { 
    padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 700; 
    text-transform: uppercase; color: #fff; width: fit-content;
  }
  .bg-featured { background: #053029; display: flex; align-items: center; gap: 4px; }
  .bg-status { background-color: #053029; }
  .bg-type { background: var(--gold-grad); }

  /* Details Area */
  .details-box { padding: 18px; flex-grow: 1; }
  .price-text { font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 2px; }
  .price-text small { font-size: 0.85rem; color: #666; font-weight: 500; }

  .property-title { 
    font-size: 1.05rem; font-weight: 600; color: #222; text-decoration: none; 
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 8px;
  }

  .info-row {
    display: flex; justify-content: space-between; margin: 12px 0; 
    padding: 10px 0; border-top: 1px solid #f1f1f1; border-bottom: 1px solid #f1f1f1;
  }
  .info-item { font-size: 15px; color: #444; }
  .info-item strong { color: var(--gold); }

  /* Developer Footer */
  .developer-box {
    padding: 12px 18px; background: #fcfcfc; border-top: 1px solid #f1f1f1;
    display: flex; align-items: center; justify-content: space-between;
  }
  
  .developer-box strong { 
    font-size: 16px; color: #333; 
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .arrow-move {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--gold);
  }
  .property-item:hover .arrow-move { transform: translateX(5px); }

  /* Pagination */
  .pagination {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .pagination .page-item {
    display: list-item !important;
  }

  .pagination .page-link {
    color: #053029 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    transition: all 0.3s;
    background-color: white !important;
    border: 1px solid #dee2e6 !important;
  }

  .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #CB8E55, #91573A) !important;
    color: white !important;
    border-color: transparent !important;
  }

  .pagination .page-link:hover {
    background: #053029 !important;
    color: white !important;
    transform: translateY(-2px);
  }

  /* Enhanced Search Bar */
  .search-bar {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .search-bar:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }

  .search-bar .input-group-text {
    border: 1px solid #dee2e6;
    padding: 0.6rem 0.75rem;
  }

  .search-bar .form-control,
  .search-bar .form-select {
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
  }

  .search-bar .form-control:focus,
  .search-bar .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(203, 142, 85, 0.15);
  }

  .search-bar label i {
    font-size: 1rem;
  }

  .search-bar .btn-dark {
    background: #053029;
    border: none;
    transition: all 0.3s;
  }

  .search-bar .btn-dark:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 142, 85, 0.3);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .search-bar {
      padding: 1.5rem !important;
    }
    
    .search-bar .btn-dark {
      margin-top: 0.5rem;
    }
    
    .search-bar label {
      font-size: 0.75rem;
    }
  }

  @media (max-width: 576px) {
    .search-bar {
      border-radius: 10px;
    }
    
    .search-bar .form-control,
    .search-bar .form-select {
      font-size: 0.9rem;
    }
  }