
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background/auction-img.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color:white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}



/* how it works */
     
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
    font-size: 2.5rem;
    padding:2rem 0;
}

.step-card {
    background-color: #ff0000;
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.step-icon {
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.step-icon img {
    width: 24px;
    height: 24px;
}

/* Special styling for Step 4 to show the blue highlight border */
.step-card.highlighted {
    box-shadow: 0 0 0 3px #0d6efd;
    position: relative;
}

/* End of how it works */


/* start of land auction list */

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.property-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.property-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.time-badge i {
    margin-right: 5px;
}

.property-rating {
    padding: 8px;
    background-color: #f8f9fa;
}

.star {
    color: #ffc107;
    font-size: 0.9rem;
}

.property-details {
    padding: 1rem;
    background-color: white;
}

.property-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.property-location {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-location i {
    margin-right: 5px;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #6c757d;
}

.price-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-detail {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-see-more {
    background-color: #e9ecef;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    float: right;
}

.btn-see-more i {
    margin-left: 5px;
}
