/* Styles for the footer stat cards to match the mockup */
.footer-stats-row .stat-card {
    background: linear-gradient(135deg, #1e1a2e 0%, #252040 100%); /* Original blueish/purple gradient */
    border-left: 4px solid #6366f1 !important; /* Original blueish/purple border */
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 6px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    /* margin-bottom: 20px; /* Bootstrap's mb-4 on the column handles this */
}

.footer-stats-row .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-stats-row .stat-card .stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e0e0e0; /* Changed from #ffffff to a light grey */
    margin-bottom: 8px;
    line-height: 1;
}

.footer-stats-row .stat-card .stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Responsive adjustments if needed, mirroring the mockup's media queries */
@media (max-width: 768px) {
    .footer-stats-row .stat-card .stat-value {
        font-size: 2.2rem;
    }
    
    .footer-stats-row .stat-card {
        padding: 20px 16px;
    }
}
