/**
 * Homepage Statistics Section
 *
 * @package TelecomRoute_Pro
 */

/* ==========================================
   Statistics Section
========================================== */

.tr-statistics {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        #0A2E73 0%,
        #0F4BB8 100%
    );
    position: relative;
    overflow: hidden;
}

.tr-statistics::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.tr-statistics::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.tr-statistics .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Section Heading
========================================== */

.tr-statistics .tr-section-title {
    color: #ffffff;
}

.tr-statistics .tr-section-description {
    color: rgba(255,255,255,.75);
}

/* ==========================================
   Statistics Cards
========================================== */

.tr-stat-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all .3s ease;
    height: 100%;
    backdrop-filter: blur(8px);
}

.tr-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.30);
    box-shadow: 0 24px 50px rgba(0,0,0,.22);
}

.tr-stat-card h3 {
    margin: 0 0 12px;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.tr-stat-card p {
    margin: 0;
    font-size: 17px;
    color: rgba(255,255,255,.80);
    font-weight: 500;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px) {

    .tr-statistics {
        padding: 80px 0;
    }

    .tr-stat-card h3 {
        font-size: 46px;
    }

}

@media (max-width: 767px) {

    .tr-statistics {
        padding: 70px 0;
    }

    .tr-stat-card {
        padding: 30px 20px;
    }

    .tr-stat-card h3 {
        font-size: 34px;
    }

    .tr-stat-card p {
        font-size: 16px;
    }

}