 
.feature-card {
    position: relative;
    width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: gold;
    color: #111;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-button {
    background: #ff6b00;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.feature-button:hover {
    background: #ff4500;
}

.feature-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #222;
}
