.menus {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px; 
    transition: transform 0.2s, box-shadow 0.2s; 
    padding: 15px;
}

.menus:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}
.heading-menu h3{
    font-family: 'Poppins', sans-serif; 
    font-size: 28px; 
    font-weight: 600; 
    color: #333; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
    position: relative;               
}
.heading-menu h3::after {
    content: '';              
    display: block;
    width: 50px; 
    height: 4px; 
    background-color: #f39c12; 
    margin: 10px auto 0; 
    border-radius: 2px; 
}

.menus h6 {
    color: #000; 
    font-family: 'Poppins', sans-serif; 
    font-size: 16px; 
    font-weight: 500; 
}

.heading-menu-h2::after {
    content: '';              
    display: block;
    width: 50px; 
    height: 4px; 
    background-color: #f39c12; 
    margin: 10px auto 0; 
    border-radius: 2px; 
}



/* Load more button style  */

#load-more {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

#load-more:hover {
    background: linear-gradient(45deg, #e67e22, #d35400);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

#load-more:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}