


/************ interior-design start ***********/
 
.interior-design {
    margin: 10px;
    padding-bottom: 20px;
    position: relative; /* Ensure child elements can be positioned absolutely */
    text-align: center;
}

.interior-design h1 {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    color: #FCC233;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

.interior-design p {
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}

.interior-design img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.2s;
    cursor: pointer;
}

/* .interior-design img:hover {
    transform: scale(1.2);
} */

.view-button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #926800;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.view-button:hover {
    background-color: #363636;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
}

.modal-content {
    display: block;
    margin: auto;
    width: auto;
    height: 90vh;
    margin-top: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 9;
}

.close-button:hover {
    color: #ff0000;
}


/************ interior-design end ***********/
