.metrics {
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.metric-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-wrapper {
    height: 70px;
    width: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bs-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.metric-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bs-gray-600);
}

.text-purple {
    color: #6f42c1;
}

/* Animation Delays for Cards */
.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .metrics {
        margin-top: 0;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .icon-wrapper {
        height: 60px;
        width: 60px;
    }
} 