.catergory {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    margin-top:5px;
}

.category-item {
    width: 90px;
    height: 50px;
    background: linear-gradient(145deg, #0b3b52, #0e4764);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        4px 4px 12px rgba(0, 0, 0, 0.3), 
        -2px -2px 8px rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    font-size: 13px;
    color: white;
    padding: 4px;
    user-select: none;
    position: relative;
   
}

.category-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.35), 
        -3px -3px 10px rgba(255, 255, 255, 0.07);
}

.category-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    text-decoration: none;
    color: yellow;
    font-weight: bold;
    font-size: 15px;
    justify-content: center;
}

h1{
    text-align:center;
    margin:5px;
 
   
}
.catergory-right{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
}
