.image-slider {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.image-container {
    position: relative;
    width: 100%;  /* Ensure images take up the entire container */
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container{
    position: relative;
}
.image-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #080808bf;
    display: none;
    z-index: 10;
}
.image-container:hover::before{
    display: block;
}
.slider-image {
    width: 100%;
    height: auto;
    transition: opacity 0.3s;
}

.image-icons {
    position: absolute;
    /* bottom: 10px;
    left: 10px; */
    display: none;
    opacity: 0.7;
    z-index: 20; /* Make sure the icons are always above the image */
}

.image-container:hover .image-icons {
    display: block; /* Keep icons visible when hovering over the image */
}

.heart-icon, .download-icon, .share-icon {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5; /* Make sure the arrows stay behind the hover effect */
}

.prev, .next {
    font-size: 30px;
    color: #fff;
    background-color: transparent!important;
    padding: 10px;
    cursor: pointer;
}

.popup {
    display: none;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

button {
    padding: 5px 10px;
    margin-top: 10px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 20px;
    color: #000;
    /* padding: 10px; */
    /* background-color: #0077b5; */
    /* color: white; */
    text-decoration: none;
    /* border-radius: 5px; */
}

/* .facebook-icon { background-color: #3b5998; }
.twitter-icon { background-color: #1da1f2; }
.pinterest-icon { background-color: #bd081c; }
.tumblr-icon { background-color: #36465d; }
.email-icon { background-color: #666666; } */

input[type="text"] {
    width: 80%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 0px;
    border-right: none;
}

.heart-icon {
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    color: grey; /* Default unfilled color */
}

.heart-icon.filled-heart svg{
    color: red; /* Red color when clicked (filled heart) */
}
.footer-form{
display: flex;
gap: 0px;
align-items: center;
}
.footer-form button
{
    border: 1px solid #000;
    background-color: #000!important;
    color: #fff!important;
    border-radius: 0px!important;

}