#customCarousel2 {
    margin-top: 0 !important;
}

.carousel .carousel-item::after {
            background: rgba(0, 0, 0, 0) !important;
}

.property-section {
    padding: 50px 15px;
}

.property-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.property-header {
    background: linear-gradient(135deg, #051c4b, #051c4b);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.property-badge {
    display: inline-block;
    background: #ffc107;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.property-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.property-content {
    padding: 35px 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #051c4b;
    position: relative;
}

.section-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #ffc107;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 20px;
}

.detail-box {
    background: #f8fbff;
    border: 1px solid #e2ebf5;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    height: 100%;
    font-size: 17px;
    font-weight: 500;
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.detail-title {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 15px 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.feature-list li:hover {
    background: #051c4b;
    color: #fff;
    transform: translateX(5px);
}

.description-box {
    background: #f8fbff;
    border-left: 5px solid #051c4b;
    padding: 25px;
    border-radius: 12px;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.contact-box {
    background: linear-gradient(135deg, #051c4b, #051c4b);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    text-align: center;
    margin-top: 35px;
}

.contact-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-item {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-item span {
    font-weight: 700;
    color: #ffc107;
}

@media(max-width:768px) {

    .property-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .detail-value {
        font-size: 18px;
    }

    .contact-box h3 {
        font-size: 24px;
    }

    .contact-item {
        font-size: 17px;
    }

    .property-content {
        padding: 25px 20px;
    }

}