/**
 * ==========================================
 * About - Why Choose TelecomRoute
 * ==========================================
 */

.tr-about-why{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

/* ==========================================
   Section Heading
========================================== */

.tr-about-why .tr-section-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.tr-about-why .tr-section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 22px;

    margin-bottom:18px;

    border-radius:999px;

}

.tr-about-why .tr-section-title{

    margin-bottom:20px;

}

.tr-about-why .tr-section-description{

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}

/* ==========================================
   Grid
========================================== */

.tr-why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;

}

/* ==========================================
   Card
========================================== */

.tr-why-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:36px 30px;

    height:100%;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.tr-why-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

/* ==========================================
   Icon
========================================== */

.tr-why-icon{

    width:72px;

    height:72px;

    margin:0 auto 24px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #0ea5e9
    );

    color:#ffffff;

    transition:transform .35s ease;

}

.tr-why-card:hover .tr-why-icon{

    transform:scale(1.08);

}

/* ==========================================
   Typography
========================================== */

.tr-why-card h3{

    margin:0 0 16px;

    font-size:22px;

    font-weight:700;

    line-height:1.35;

    color:#0f172a;

}

.tr-why-card p{

    margin:0;

    color:#64748b;

    font-size:16px;

    line-height:1.8;

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

    .tr-about-why{

        padding:90px 0;

    }

    .tr-why-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:767px){

    .tr-about-why{

        padding:70px 0;

    }

    .tr-about-why .tr-section-heading{

        margin-bottom:45px;

    }

    .tr-why-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .tr-why-card{

        padding:30px 24px;

    }

    .tr-why-icon{

        width:64px;

        height:64px;

        font-size:30px;

    }

    .tr-why-card h3{

        font-size:20px;

    }

    .tr-why-card p{

        font-size:15px;

    }

}