.categories{
    padding:100px 20px;
    background:#f6f8fb;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#D4AF37;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    color:#0b2342;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    font-size:18px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.category-card{
    background:#fff;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-icon{
    font-size:48px;
    margin-bottom:20px;
}

.category-card h3{
    margin:10px 0;
    color:#0b2342;
}

.category-card span{
    color:#888;
}

@media(max-width:991px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.category-grid{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:34px;
}

}