
.container_sec_3 {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;


}

.details_sec_3, .nearby_sec_3 {
    background: #fff;
    padding: 20px;

}

.details_sec_3 {
    flex: 1.5;

}
.nearby_sec_3 h2 {
color:grey;
font-size:1rem;
background:rgba(128, 128, 128, 0.09);
padding:10px;
border-radius:15px;
}
.nearby_sec_3 h2 i{
color: #808080;
padding:10px;
font-size:1rem;
background:rgba(128, 128, 128, 0.1);
border-radius:15px;
}
.nearby_sec_3 {
    flex: 1;
    text-align: left;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.detail-item_sec_3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.detail-item_sec_3 i {
    font-size: 20px;
    color: #007bff;
    margin-right: 10px;
}

.nearby-item_sec_3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.nearby-item_sec_3 i {
    font-size: 20px;
    color: #28a745;
    margin-right: 10px;
}

.view-btn_sec_3 {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.view-btn_sec_3:hover {
    background: #0056b3;
}

/* Popup Styles */
.popup_sec_3 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.popup_sec_3 h3 {
    margin-bottom: 10px;
}

.popup-content_sec_3 {
    text-align: left;
    font-size: 14px;
}

.close-btn_sec_3 {
    margin-top: 15px;
    padding: 8px 12px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn_sec_3:hover {
    background: #a71d2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container_sec_3 {
        flex-direction: column;
    }
}
