/* aiFeatures.css */

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

/* Icon specific styles */
.ai-analysis-icon {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.vision-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.score-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.timeline-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: white;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ai-badge i {
    font-size: 1rem;
}

/* Feature descriptions */
.feature-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Animation for AI elements */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.feature-icon i {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .feature-item .ml-3 {
        margin-left: 0;
        margin-top: 1rem;
    }
}