*{
    margin: 0;
    padding: 0;
}

.wingsection-image img{
    width: 100%;
}
.wingsection-content {
    background-color: #F26C6B;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: -50px; /* Overlap the section by pulling it up */
    z-index: 1; /* Ensures the content is on top of the image */
    position: relative;
    box-shadow: 0px 2px 10px rgba(100, 100, 98, 100); /* Box shadow from all sides */

}

.wing-button1{
    background-color: pink;
    margin: 0 auto; /* Centers the div horizontally */
    padding: 20px;
    border-radius: 10px; /* Optional: Adds rounded corners */
    text-align: center;
    margin-top: 10px;
}

.homeproductcard-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 270px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.homeproductcard-header {
    padding: 10px;
    font-weight: 800;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.homeproductcard-image img {
    width: 100%;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.homeproductcard-content {
    display: none;
    padding: 15px;
}

.homeproductcard-arrow {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.homeproductcard-arrow img {
    width: 16px;
    transition: transform 0.3s ease;
}

.expanded .homeproductcard-image img {
    opacity: 0;
    display: none;
}

.expanded .homeproductcard-content {
    display: block;
}

.expanded .homeproductcard-arrow img {
    transform: rotate(180deg);
}


.btn-pink {
    background-color: #f8a6c7 !important;
    color: white !important;
    font-weight: bold !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    cursor: pointer !important;
}

.btn-pink:hover {
    background-color: #f285a2 !important;
}

.btn-gray {
    background-color: #888 !important;
    color: white !important;
    font-weight: bold !important;
    border: none !important;
    padding: 8px 39px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

.btn-gray:hover {
    background-color: #666 !important;
}

.home-card .content {
    display: none;
    padding: 15px;
}
.homepart2-h5{
    margin-bottom: 40px;
}


@media (max-width:768px) {
    .homeproductcard-card{
        margin-bottom: 15px;
    }
    .wingsection-content{
        width: unset;
        margin: 10px;
        
    }
    .wingsection-content p{
        font-size: 12px !important;
    }
    .wingsection-content h2{
        font-size: 20px;
    }
}