
.shreya-futuers-planes-section{
    height: auto;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding:20px 0px;
}
.shreya-futuers-planes-section .shreya-futures-planes-container{
    width: 80%;
    height: auto;
    /* border: 1px solid red; */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin:40px auto;
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main{
    width: 350px;
    height: 300px;
    /* border: 1px solid black; */
    position: relative;
    overflow: hidden;
    transition: 0.6s;
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main 
.shreya-futures-planes-popup{
     position: absolute;
    bottom: 30px;
    left: 30px;
    background: #19232be0;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px); 
    transition: .5s ease;
    border-radius: 5px;
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main 
.shreya-futures-planes-popup h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: Poppins, sans-serif;
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main:hover img {
    transform: scale(1.12) rotate(3deg);
    transition: 0.6s ease; 
        
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main:hover 
.shreya-futures-planes-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.shreya-futuers-planes-section .shreya-futures-planes-container .shreya-futures-planes-image-main:hover{
    box-shadow:  0px 0px 10px rgba(0, 0, 0, 0.338);
    transition: 0.6s;
}