.statistics {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(145deg, #f7f8fc, #ffffff);
    overflow: hidden;
}

.statistics .SectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.statistics .title {
    font-size: 36px;
    font-weight: bold;
    color: #0d2a4a;
}

.statistics .hint {
    font-size: 16px;
    color: #6c757d;
}

.statisticsInner {
    position: relative;
    z-index: 2;
}

.statistics .specifications {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.statistics .specifications:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.statistics .specifications i {
    font-size: 44px;
    color: #ff9800;
    margin-bottom: 20px;
    display: block;
}

.statistics .specifications h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1c1e21;
    margin-bottom: 10px;
}

.statistics .specifications h6 {
    font-size: 16px;
    color: #777;
}

.circleBlur, .circleBlur2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circleBlur {
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.15);
    top: -100px;
    left: -100px;
    filter: blur(120px);
}

.circleBlur2 {
    width: 250px;
    height: 250px;
    background: rgba(0, 123, 255, 0.15);
    bottom: -80px;
    right: -80px;
    filter: blur(100px);
}
@media (max-width: 767px) {
  .statistics .specifications {
    margin-bottom: 20px;
  }
  .statistics .col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
    .circleBlur,
    .circleBlur2 {
        display: none;
    }
}
@media (hover: hover) {
    .statistics .specifications:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
}
