 .real_estate-brokerage {
        display: flex;
        flex-wrap: wrap;
        padding: 60px 40px;
        align-items: flex-start;
        gap: 40px;
        justify-content: center;
    }

    .real_estate-brokerage .left-images {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }

    .real_estate-brokerage .left-images img {
        width: 100%;
        height: 190px;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .real_estate-brokerage .top-small-images {
        display: flex;
        gap: 20px;
    }

    .real_estate-brokerage .top-small-images img {
        flex: 1;
        height: 150px;
    }

    .real_estate-brokerage .right-content {
        flex: 1;
        max-width: 600px;
    }

    .real_estate-brokerage .right-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .real_estate-brokerage .right-content p {
        line-height: 1.8;
        color: #666;
        margin-bottom: 20px;
    }

    @media(max-width: 992px) {
        .real_estate-brokerage {
            flex-direction: column;
        }

        .real_estate-brokerage .top-small-images {
            flex-direction: column;
        }
    }
        @media screen and (max-width: 480px) {
    .real_estate-brokerage h2{
            line-height: 57px;
    }
        }
        
        
         .offer-section {
        background-color: #fff;
        padding: 80px 20px;
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }

    .offer-section h2 {
        font-size: 36px;
        color: #333;
        margin-bottom: 20px;
    }

    .offer-section p.intro {
        max-width: 700px;
        margin: 0 auto 50px;
        color: #666;
        font-size: 19px;
    }

    .offer-section .offer-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .offer-section .offer-card {
        background-color: #fafafa;
        /*border-radius: 12px;*/
        padding: 30px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        width: 300px;
        transition: all 0.3s ease;
    }

    .offer-section .offer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .offer-section .offer-card i {
        font-size: 36px;
        color: #a21f25;
        margin-bottom: 15px;
    }

    .offer-section .offer-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }

    .offer-section .offer-card p {
        font-size: 19px;
        color: #555;
        text-align: right;
    }

    @media (max-width: 768px) {
        .offer-section .offer-cards {
            flex-direction: column;
            align-items: center;
        }
    }
    
    
    .property-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-bottom: 1em;
}

.property-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.prop_image {
  width: 360px;
}
.property-content {
  padding: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.description {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.location-icon {
  width: 14px;
  height: 14px;
  fill: #666;
}

.location-text {
  font-size: 14px;
  color: #666;
}

.property-details {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.buttons {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-preview {
  background: white;
  border: 1px solid #d1d5db;
  color: #374151;
}

.btn-preview:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.btn-whatsapp {
  background: #25d366;
  border: 1px solid #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-whatsapp:hover {
  background: #22c55e;
  border-color: #22c55e;
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 480px) {
  .property-content {
    padding: 16px;
  }

  .price {
    font-size: 22px;
  }

  .buttons {
    flex-direction: row;
  }

  .btn {
    flex: none;
  }
}

@media (max-width: 360px) {
  .property-image {
    height: 200px;
  }

  .property-content {
    padding: 14px;
  }

  .price {
    font-size: 20px;
  }

  .description,
  .location-text,
  .property-details {
    font-size: 13px;
  }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .property-image {
    height: 260px;
  }

  .property-content {
    padding: 24px;
  }
}

.search-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin-bottom: 3em;
}

.reset-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.reset-btn:hover {
  background-color: #f0f0f0;
}

.clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.filter-select {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  color: #374151;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 32px;
  transition: border-color 0.2s;
}

.filter-select:focus {
  border-color: #3b82f6;
}

.filter-select:hover {
  border-color: #9ca3af;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  min-width: 140px;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
  min-height: 42px;
}

.dropdown-trigger:hover {
  border-color: #9ca3af;
}

.dropdown-trigger.active {
  border-color: #3b82f6;
}

.dropdown-label {
  font-size: 14px;
  color: #374151;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.2s;
}

.dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  margin-top: 4px;
  width: auto; /* Let content determine width */
  white-space: nowrap; /* Prevent wrapping if you want inline content */
}

.dropdown-content.show {
  display: block;
}

.range-selector {
  padding: 16px;
}

.range-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.range-select {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 28px;
}

.range-select:focus {
  border-color: #3b82f6;
}

.range-separator {
  color: #6b7280;
  font-weight: 500;
}

.range-reset {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.range-reset:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.find-btn {
  background-color: #c7551d;
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.find-btn:hover {
  background-color: #8c3e18;
}

.find-btn:active {
  background-color: #8c3e18;
}

/* Responsive design */
@media (max-width: 768px) {
  .search-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .search-filter > * {
    width: 100%;
  }

  .reset-btn {
    align-self: flex-start;
    width: auto;
  }

  .custom-dropdown {
    width: 100%;
  }
  .dropdown-content {
    position: relative;
    left: 0;
    right: 20px;
    top: 0;
    margin-top: 8px;
  }

  .property-card {
    display: flex;
    flex-direction: column;
  }

  .prop_image {
    width: 100%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .search-filter {
    flex-wrap: wrap;
  }

  .filter-select,
  .custom-dropdown {
    flex: 1 1 120px;
  }
}

.pagination {
  display: flex;
  margin-bottom: 2em;
  border-radius: 0;
  justify-content: center;
}
.page-link {
  padding: 0 12px;
  margin: 2px;
  border: 1px solid #ccc;
  color: #000;
  text-decoration: none;
  display: inline-block;
}
.page-link.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}




    