.galleryf {
    display: ;
    gap: 40px;
    margin: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.image-containerf {
    position: relative;
    width: ;
    height: 100%;
}

.image-containerf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transition: filter 0.3s ease;
}

/* ✅ This is the one that unblurs the image */
.image-containerf img.clear {
    filter: none;
}

.view-buttonf {
    font-size: small;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    cursor: pointer;
    color: rgb(90 30 26);
    background-color:#fff ;
}

.form-popupf {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(90 30 26);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-popupf.active {
    display: block;
}
/* Overlay background */

/* Close button (×) */
.close-btn3 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight:200;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}

/* When active: show popup and overlay */
