.property-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: white;
    margin-bottom: 20px;
}
.property-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}
.price-tag {
    position: absolute;
    top: 20px;
    left: 0;
    background: #4480D1;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
}
.property-info {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.property-yield {
    background: #4480D1;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
	position: absolute;
    bottom: 40px;
	left: 20%;
}
.property-features {
    display: flex;
    justify-content: space-around;
    background: #4480D1;
    padding: 15px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.feature-item img {
    width: 20px;
    height: 20px;
}
.badge-tag {
    position: absolute;
    top: 20px;
    right: 0;
    background: olivedrab;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    letter-spacing: 0.5px;
}
.badge-tag span {
    display: block;
}
/* Full Width List with Round Dots */
.full-width-list {
	list-style-type: disc !important;
	width: 100% !important;
	padding-left: 20px !important;
	margin: 20px 0 !important;
	display: block !important;
}

.full-width-list li {
	margin-bottom: 10px !important;
	line-height: 1.6 !important;
	display: list-item !important;
	width: 100% !important;
}

/* Additional rule to ensure full width within container */
.col-lg-6 .full-width-list {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Make all text white in property-item elements */
.property-item,
.property-item *,
.property-item .property-info,
.property-item .property-yield,
.property-item .property-features,
.property-item .feature-item,
.property-item .price-tag,
.property-item .badge-tag {
    color: white !important;
}

.property-item .badge-tag {
    color: white !important;
}

.content-section p,
.content-section ul li {
    font-size: 16px;
    line-height: 1.6;
}

/* Hero Video Text Centering */
.hero-vedio-backgroun {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vedio-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero_vedio_content_full {
    text-align: center;
    color: white;
}

.hero_vedio_content_full h2 {
    font-size: 3rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
    line-height: 1.2;
}

.hero_vedio_content_full h4 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero_vedio_content_full h2 {
        font-size: 2rem;
    }
    
    .hero_vedio_content_full h4 {
        font-size: 1.2rem;
    }
    
    .hero-vedio-backgroun {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero_vedio_content_full h2 {
        font-size: 1.5rem;
    }
    
    .hero_vedio_content_full h4 {
        font-size: 1rem;
    }
}