/**
 * ==========================================
 * Homepage Process Section
 *
 * @package TelecomRoute_Pro
 * ==========================================
 */

/* ==========================================
   Process Section
========================================== */

.tr-process {
    padding: 110px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

/* ==========================================
   Section Header
========================================== */

.tr-process .tr-section-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

/* ==========================================
   Process Card
========================================== */

.tr-process-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 42px 28px;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.tr-process-card:hover {
    transform: translateY(-10px);
    border-color: var(--tr-primary);
    box-shadow: 0 24px 50px rgba(15, 23, 42, .12);
}

/* ==========================================
   Process Number
========================================== */

.tr-process-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--tr-primary),
        #0F4BB8
    );
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.tr-process-card:hover .tr-process-number {
    transform: scale(1.08) rotate(-6deg);
}

/* ==========================================
   Typography
========================================== */

.tr-process-card h4 {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 700;
    color: var(--tr-text);
    line-height: 1.35;
}

.tr-process-card p {
    margin: 0;
    color: var(--tr-muted);
    line-height: 1.8;
    font-size: 16px;
}

/* ==========================================
   Tablet
========================================== */

@media (max-width: 991px) {

    .tr-process {
        padding: 80px 0;
    }

    .tr-process .tr-section-header {
        margin-bottom: 50px;
    }

    .tr-process-card {
        padding: 36px 24px;
    }

    .tr-process-number {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 767px) {

    .tr-process {
        padding: 70px 0;
    }

    .tr-process-card {
        padding: 30px 20px;
    }

    .tr-process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tr-process-card h4 {
        font-size: 20px;
    }

    .tr-process-card p {
        font-size: 15px;
    }

}