

.category {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 18px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.category img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.category-text p {
    margin: 0;
    font-weight: 600;
}

.category-text p a {
    text-decoration: none;
    color: #2E2A20;
}

.category-text span {
    font-size: 12px;
    color: #777;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 20px;
}
.category-section {
    padding: 60px 0;
    background: var(--brand-light);
}



/* CARD */
.category {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* GRADIENT USING YOUR COLORS */
.category::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.15),
        rgba(30, 136, 229, 0.15),
       
    );
    opacity: 0;
    transition: 0.4s ease;
}

/* IMAGE */
.category img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 1;
}

/* TEXT */
.category-text {
    z-index: 1;
}

.category-text p {
    margin: 0;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
}

.category-text p a {
    text-decoration: none;
    color: var(--brand-dark);
    transition: 0.3s;
}

.category-text span {
    color: #6b7280;
}

/* HOVER */
.category:hover {
    transform: translateY(-6px);
    box-shadow:  rgba(0,0,0,0.1);
}

.category:hover::before {
    opacity: 1;
}

/* TEXT HOVER COLOR (Brand mix) */
.category:hover a {
    color: var(--brand-blue);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
}
.content-box{
    max-width: 650px;   /* same width for all content */
    margin: auto;       /* center align */
}

.img-box img{
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.content-box h2,
.content-box p,
.content-box ul{
    text-align: left;
    width: 100%;
}

.content-box p{
    line-height: 1.7;
    color: #555;
}

.content-box ul{
    padding-left: 18px;
}
