/*------------------>invest property page<-----------------------*/
.investbody {
    background-image: url(/images/investproperty3.avif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    text-align: center;
    padding-top: 100px;
   
}

.investhead {
    font-size: 40px;
    font-weight: bolder;
    text-decoration: underline 2px black;
    color: #A4852C;
    margin: 0;
    /* filter: contrast(100px); */
}
.investment-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.investment-card {
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    text-align: center;
    padding: 15px;
    width: 400px;
}

.investment-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.investment-image img {
    width: 100%;
    height: 100%;
    border-radius: 1px;
    object-fit: cover;
}

.status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: orange;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.investment-detail {
    font-weight: bold;
    color: #166534;
}

.return {
    color: #0c4a0e;
    font-weight: bold;
}
.investment-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

.investment-section h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.investment-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.cta-button {
    background-color: #00ffa6;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #22b259;
}

/* Responsive Design */
@media (max-width: 600px) {
    .investment-section {
        padding: 30px 15px;
    }

    .investment-section h2 {
        font-size: 18px;
    }

    .investment-section p {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        padding: 12px;
    }
}
