/* Stats Section Styles */
.about-app {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.stats-wrapper {
    position: relative;
    z-index: 2;
}

.stat-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Dark Theme Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1a1c20, #2d3436);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #2d3436, #1a1c20);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.stat-icon {
    margin-bottom: 1.5rem;
}

.stat-icon i {
    font-size: 2.5rem;
    opacity: 0.9;
}

/* Content Styles */
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.stat-number .plus {
    font-size: 2rem;
    margin-left: 0.25rem;
    opacity: 0.8;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: #FFC400;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Decorative Elements */
.stat-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.wave {
    width: 100%;
    height: 40px;
}

/* Animation for counters */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-number .plus {
        font-size: 1.5rem;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
}

/* Hover Effects */
.stat-card {
    position: relative;
    transition: all 0.3s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, 
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0) 60%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.stat-card:hover::after {
    opacity: 1;
}

/* Icon Glow Effect */
.stat-icon i {
    color: #FFC400;
    text-shadow: 0 0 20px rgba(234, 255, 74, 0.4);
}

.bg-gradient-success .stat-icon i {
    color: #FFC400;
    text-shadow: 0 0 20px rgba(221, 239, 56, 0.4);
}

/* Number Highlight */
/* .stat-number {
    background: linear-gradient(to right, #4a9eff, #38ef7d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.2);
} */