    /* Centered pagination */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Default page button */
.custom-pagination .page-item .page-link {
    border-radius: 12px;          /* Rounded rectangles */
    border: 1px solid #ddd;       /* Light border */
    color: #333;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    background-color: #fff;       /* White background */
    min-width: 44px;              /* Uniform button size */
    text-align: center;
}

/* Hover effect for numbers and arrows */
.custom-pagination .page-item .page-link:hover {
    background-color: #f7f7f7;
    color: #ec5800;               /* Brand orange hover */
    border-color: #ec5800;
}

/* Active page */
.custom-pagination .page-item.active .page-link {
    background-color: #ec5800;    /* Brand orange */
    color: #fff;
    border-color: #ec5800;
}

/* Disabled button */
.custom-pagination .page-item.disabled .page-link {
    color: #bbb;
    pointer-events: none;
    background-color: #eee;
    border-color: #ddd;
}

/* Font Awesome arrow icons size and alignment */
.custom-pagination .page-item .fa {
    font-size: 1rem;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Hover effect specifically for arrows */
.custom-pagination .page-item .fa:hover {
    color: #ec5800;
}

/* Filter Buttons List */
.btn-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-list .filter-btn {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 50px; /* Rounded rectangles */
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 90px;
    outline: none; /* Remove black outline on click */
}

.btn-list .filter-btn:focus {
    outline: none; /* Remove black outline when clicked */
}


/* Hover effect */
.btn-list .filter-btn:hover {
    background-color: #ec5800;
    color: #fff;
}

/* Active button */
.btn-list .filter-btn.active {
    background-color: #ec5800; /* Brand orange */
    color: #fff;
}

/* Package Item Styling */
.objects-grid .object-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.objects-grid .object-item .object {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #fff;
}

.objects-grid .object-item .object-image img {
    width: 100%;
    height: auto;
    display: block;
}

.objects-grid .object-item .object-content {
    padding: 15px;
}

.objects-grid .object-item .object-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.objects-grid .object-item .object-price {
    font-weight: 700;
    color: #ec5800;
}

/* Object Buttons */
.object-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 50px;
    background-color: #ec5800;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.object-btn:hover {
    background-color: #d94d00;
    color: #fff;
}