/* Stats Counter Section */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Vertical Divider Lines */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0efff, transparent);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 101, 189, 0.1);
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px) rotate(10deg);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 101, 189, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Shapes Background for "Alive" feel */
.stats-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #e0f2fe;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #f0f9ff;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}