.stats-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 60px 50px;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    
    
}

.stat-card {
    background: #0a192f2b;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(64, 156, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #189bc7, #409cff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(64, 156, 255, 0.085);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 40px;
    color: #409cff;
    background: rgba(64, 156, 255, 0);
    border-radius: 16px;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background-color: #409cff;
    background-image: linear-gradient(135deg, #409cff, #189bc7);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(64, 156, 255, 0.3);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    min-height: 50px;
    position: relative;
    
    background: linear-gradient(
        90deg,
        #409cff,
        #60aaff,
        #83bbff,
        #409cff
    );
    
    background-size: 300% 100%;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    animation: gradientFlow 4s ease-in-out infinite;
}
.stat-number {
  font-variant-numeric: tabular-nums;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.stat-label {
    color: #a0b3d9;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}