
.landing-category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.landing-category-card {
    position: relative;
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.landing-category-card .landing-category-card-overlay {
    position: absolute;
    padding: 10px;
    color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(0, 37, 54, 0.90) 1.45%, rgba(0, 37, 54, 0.00) 100%);
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: background 0.3s ease;
    display: flex;
    align-items: start;
    justify-content: center;
}

.landing-category-card:hover .landing-category-card-overlay {
    background: rgba(0, 37, 54, 0);
}

.landing-category-card h4 {
    margin: 0;
    width: 100%;
    font-size: 14px;
    color: white;
    text-align: center;
    transition: color 0.3s ease;
}

.landing-category-card:hover h4 {
    color: #087e84;
}


@media screen and (max-width: 425px) {
   
.landing-category-container {
    width: 500px;
}
.container{
    overflow-x: auto;
}

}