/*==============================================================================
    ABOUT STATS
    File : public/assets/css/frontend/about/stat.css
==============================================================================*/

.fe-about-stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.fe-about-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(37, 99, 235, .06),
            transparent 35%),
        radial-gradient(circle at bottom left,
            rgba(249, 115, 22, .06),
            transparent 35%);
    pointer-events: none;
}

/*==============================================================================
    HEADER
==============================================================================*/

.fe-about-stats__header {
    position: relative;
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    z-index: 2;
}

.fe-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    background: rgba(37, 99, 235, .08);
    color: var(--fe-primary, #2563eb);
    font-size: .85rem;
    font-weight: 600;
}

.fe-section-kicker i {
    font-size: .9rem;
}

.fe-about-stats__header .fe-section-title span {
    color: var(--fe-primary, #2563eb);
}

/*==============================================================================
    GRID
==============================================================================*/

.fe-about-stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    z-index: 2;
}

/*==============================================================================
    CARD
==============================================================================*/

.fe-about-stat {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(18px);
    transition: .35s ease;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .05);
}

.fe-about-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    transition: .35s;
}

.fe-about-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);
}

.fe-about-stat:hover::before {
    opacity: .14;
}

.fe-about-stat__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: #fff;
    transition: .35s;
}

.fe-about-stat:hover .fe-about-stat__icon {
    transform: rotate(-8deg) scale(1.08);
}

.fe-about-stat__content h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    color: #0f172a;
}

.fe-about-stat__content p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/*==============================================================================
    BLUE
==============================================================================*/

.fe-about-stat--blue::before {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.fe-about-stat--blue .fe-about-stat__icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 18px 35px rgba(37, 99, 235, .30);
}

/*==============================================================================
    ORANGE
==============================================================================*/

.fe-about-stat--orange::before {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.fe-about-stat--orange .fe-about-stat__icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 18px 35px rgba(249, 115, 22, .28);
}

/*==============================================================================
    GREEN
==============================================================================*/

.fe-about-stat--green::before {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.fe-about-stat--green .fe-about-stat__icon {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    box-shadow: 0 18px 35px rgba(34, 197, 94, .28);
}

/*==============================================================================
    PURPLE
==============================================================================*/

.fe-about-stat--purple::before {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.fe-about-stat--purple .fe-about-stat__icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 18px 35px rgba(124, 58, 237, .28);
}

/*==============================================================================
    HIGHLIGHTS
==============================================================================*/

.fe-about-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 70px;
}

.fe-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15,23,42,.05);
    transition: .3s;
}

.fe-highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.25);
    box-shadow: 0 18px 35px rgba(37,99,235,.10);
}

.fe-highlight-item i {
    color: #22c55e;
    font-size: 1rem;
}

.fe-highlight-item span {
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
}

/*==============================================================================
    COUNTER
==============================================================================*/

.fe-counter {
    display: inline-block;
}

/*==============================================================================
    RESPONSIVE
==============================================================================*/

@media (max-width:1200px) {

    .fe-about-stats__grid {
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width:768px) {

    .fe-about-stats__header {
        margin-bottom: 50px;
    }

    .fe-about-stats__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fe-about-stat {
        padding: 28px 24px;
        text-align: center;
    }

    .fe-about-stat__icon {
        margin-inline: auto;
    }

    .fe-about-highlights {
        margin-top: 50px;
        gap: 14px;
    }

    .fe-highlight-item {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width:480px) {

    .fe-about-stat__content h3 {
        font-size: 2.1rem;
    }

    .fe-about-stat {
        border-radius: 20px;
    }

    .fe-highlight-item {
        font-size: .92rem;
        padding: 13px 18px;
    }

}
