/* Features Grid Block CSS */
.features-grid-block {
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.feature-title {
    color: #102a18;
    /* Theme dark green color */
    font-size: 1.25rem;
}

.feature-desc {
    line-height: 1.6;
    color: #666;
}

.feature-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.feature-link:hover {
    color: var(--secondary-color);
}

.feature-link .arrow {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s;
}

.feature-link:hover .arrow {
    transform: translate(2px, -2px);
}

.stat-icon-wrapper {
    background-color: var(--primary-color) !important;
}

.stat-num {
    color: var(--primary-color) !important;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-icon svg path {
    stroke: var(--primary-color);
}