.real-estate-hero-section {
    height: 60vh;
    min-height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    overflow: hidden;
}

.timeline-card {
    position: relative;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    border-radius: 12px;
    padding: 30px 25px 25px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: start;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.timeline-card .card-label {
    position: absolute;
    top: -22px;
    left: 20px;
    background: #3ba8e1;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(31, 119, 208, 0.3);
}

.timeline-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-card p.content-card {
    color: var(--gray);
    line-height: 1.6;
}

.accent-green {
    border-left-color: #2ecc71;
}
.accent-orange {
    border-left-color: #f39c12;
}

.uptime-card {
    position: relative;
    background: linear-gradient(to bottom, #ffe6c34e, #f6f5f35b);
    border-radius: 12px;
    padding: 30px 25px 25px;
    box-shadow: inset 0 0 0 1px #e6ecf1, 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.uptime-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 6px;
    background: #fa923d;
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}

.uptime-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.cards-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.cards-content .content-card {
    color: var(--gray);
    line-height: 1.6;
}
