.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

Technical Documentation .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-primary {
    background: #dbeafe;
    color: var(--primary-color, #3B82F6);
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-green {
    background: #d1fae5;
    color: #059669;
}

.icon-success {
    background: #dcfce7;
    color: #16a34a;
}

.icon-info {
    background: #e0f2fe;
    color: #0891b2;
}

.icon-warning {
    background: #fef3c7;
    color: #d97706;
}

.bg-gradient-primary-custom {
    background: linear-gradient(135deg, var(--primary-color, #3B82F6) 0%, #1e40af 100%);
}

.card .stretched-link::after {
    z-index: 1;
}

.transition-all {
    transition: all 0.3s ease;
}
