/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 420px; /* 👈 control height */
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/header_bg1.jpg') no-repeat center center/cover;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 58, 0.7); /* your navy */
    z-index: 2;
}

/* Content Center */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
    color: #fff;
}

/* Heading */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: rgba(255,255,255,0.85);

}

/* Search Box */
.hero-search {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Form group */
.homec-filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Inputs */
.homec-filter-group .form-group {
    flex: 1;
    min-width: 150px;
}

/* Button */
.homec-btn__second {
    background: #F97316;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    color: #fff;
    transition: 0.3s;
}

.homec-btn__second:hover {
    background: #ea580c;
}   
.category-card {
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.homec-features {
    background: #f9fafb;
    padding: 50px 0;
}




/* Media css */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

}

.property-slider .splide__slide {
    padding: 10px;
}

.homec-property {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.homec-property:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.homec-property__head img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
ul.homec-property__list {
    padding: 0;
}
.homec-property {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.homec-property:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}