/* Category Grid */
.solutions .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solutions .category-card {
    background: white;
    border-radius: 0.5rem;
    /* border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); */
    /* transition: box-shadow 0.2s; */
    overflow: hidden;
    padding: 20px;
}

/* .solutions .category-card:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
} */

.solutions .category-header {
    padding: 5px 0px;
    border-bottom: 1px solid black;
}

.solutions .category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.solutions .category-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.solutions .category-items {
    padding: 10px 0px;
}

.solutions .category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s;
}

.solutions .category-item:last-child {
    margin-bottom: 0;
}

.solutions .category-item:hover {
    /* background-color: #f9fafb; */
}

.solutions .item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solutions .card-title {
    /* padding-left: 20px;
    padding-top: 20px; */
    background: linear-gradient(to right, #a3bdff, #e9e9e9);
    border-radius: 0px;
    height: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.solutions .category-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.solutions .item-icon {
    color: #9ca3af;
    font-size: 1rem;
    transition: color 0.15s;
}

.solutions .category-item:hover .item-icon {
    color: #6b7280;
}

.solutions .item-name {
    color: #374151;
    transition: color 0.15s;
}

.solutions .category-item:hover .item-name {
    color: #eb3622;
}

.solutions .item-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.solutions .page-title{
    font-size: 24px;
    color: white;
}

.solutons .page-subtitle{
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .solutions .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .solutions .category-header {
        padding: 1rem;
    }

    .solutions .category-items {
        padding: 0.75rem 1rem 1rem;
    }

    .solutions .page-title {
        font-size: 1.25rem;
    }
}