*{
    margin: 0;
    padding: 0;
}
.customnavbar {
    background-color: black;
    padding: 10px 20px;
    height: 60px; /* Set a fixed height for the navbar */
    display: flex;
    align-items: center; /* Keep items aligned vertically */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures navbar stays on top */    
}
.cart-icon {
    cursor: pointer;
}
.customnavbar-brand img {
    height: 120px; /* Increase logo height */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Ensure it does not overflow */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.customnavbar .nav-link {
    color: white;
    margin: 0 10px;
}
.customnavbar .nav-link:hover {
    color: #E74C3C;
}
.customnavbar .btn-subscribe {
    background-color: #E74C3C;
    color: white;
    border-radius: 20px;
}
.customnavbar .btn-contact {
    background-color: white;
    color: black;
    border-radius: 20px;
}
.customnavbar .cart-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
}
.customnavbar .dropdown-menu {
    background-color: black;
    border: none;
}

.customnavbar .dropdown-item {
    color: white;
}

.customnavbar .dropdown-item:hover {
    background-color: #E74C3C;
    color: white;
}

.wingsection-image img{
    width: 100%;
}

.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;
}
*{
    margin: 0;
    padding: 0;
}
.customnavbar {
    background-color: black;
    padding: 10px 20px;
    height: 60px; /* Set a fixed height for the navbar */
    display: flex;
    align-items: center; /* Keep items aligned vertically */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures navbar stays on top */    
}
.cart-icon {
    cursor: pointer;
}
.customnavbar-brand img {
    height: 120px; /* Increase logo height */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Ensure it does not overflow */
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.customnavbar .nav-link {
    color: white;
    margin: 0 10px;
}
.customnavbar .nav-link:hover {
    color: #E74C3C;
}
.customnavbar .btn-subscribe {
    background-color: #E74C3C;
    color: white;
    border-radius: 20px;
}
.customnavbar .btn-contact {
    background-color: white;
    color: black;
    border-radius: 20px;
}
.customnavbar .cart-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
}
.customnavbar .dropdown-menu {
    background-color: black;
    border: none;
}

.customnavbar .dropdown-item {
    color: white;
}

.customnavbar .dropdown-item:hover {
    background-color: #E74C3C;
    color: white;
}

.wingsection-image img{
    width: 100%;
}
.wingsection-content {
    background-color: #36374B;
    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;
    color: white;
    box-shadow: 0px 2px 10px rgba(100, 100, 98, 100); /* Box shadow from all sides */

}

.wingsection-image {
    margin-top: -48px;
}

.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;
    }
}
.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 20px !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: none !important;
        margin-top: -105px;
        margin-right: 10px;
        margin-left: 10px;
        
    }
    .wingsection-content p{
        font-size: 12px !important;
    }
    .wingsection-content h2{
        font-size: 20px;
    }
}
@media (max-width:425px) {
    .wingsection-content {
        width: unset;
        margin: none !important;
        margin-top: -64px;
        margin-right: 10px;
        margin-left: 10px;
    }
    
}
@media (max-width:320px) {
    .wingsection-content p {
        font-size: 9px !important;
    } 
    .wingsection-content{
        margin-top: -43px;

    }   
}