.innovations-hero {
    background-image: url('https://images.unsplash.com/photo-1617280137702-32e761be8b26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NXx8Z3Jhc3MlMjBmaWVsZHxlbnwwfHwwfHx8MA%3D%3D&w=1000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.innovations-section {
    background-color: #f9f9f9;
}

.no-results-message {
    display: none;
}

.innovation-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    min-height: 330px;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.innovation-card:hover {
    border-color: #c0c0c0;
    cursor: pointer;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.innovation-card:hover img {
    transform: scale(1.05);
}

.innovation-card-body {
    padding: 12px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    background: #fff;
}

.innovation-card-title {
    color: #1f5134;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin: 0 0 4px 0;
    height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.innovation-card-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.filter-section {
    text-align: left;
}

.filter-btn,
.type-filter-btn {
    padding: 8px 20px;
    border: none;
    background: #fff;
    color: #1a8755;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: none;
}

.filter-btn:hover,
.type-filter-btn:hover {
    background: #1a8755;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

.filter-btn.active,
.type-filter-btn.active {
    background: #1a8755;
    color: #fff;
    box-shadow: none;
}

.nav-pills .nav-link {
    background: #fff;
    color: #1a8755;
    border-radius: 10px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-pills .nav-link:hover {
    background: #1a8755;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

.nav-pills .nav-link.active {
    background: #1a8755;
    color: #fff;
}

.pagination .page-link {
    color: #28a745;
    border: 1px solid #28a745;
    cursor: pointer;
    padding: 6px 12px;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover:not(.disabled) {
    background-color: #28a745;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

@media (max-width: 991px) {
    .innovation-card {
        height: auto;
    }
}

@media (max-width: 767px) {
    .card-title {
        font-size: 1rem;
    }

    .filter-btn,
    .type-filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
        margin: 3px;
    }

    .pagination .page-link {
        padding: 5px 10px;
        font-size: 0.9rem;
        margin: 0 1px;
    }
}