/**
 * ==========================================
 * Dedicated - Why TelecomRoute
 * ==========================================
 */

.tr-why-us{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

.tr-why-us-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.tr-why-us-card{

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:35px;

    height:100%;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    position:relative;

    overflow:hidden;

}

.tr-why-us-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#0A2E73;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .3s ease;

}

.tr-why-us-card:hover{

    transform:translateY(-8px);

    border-color:#0A2E73;

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

.tr-why-us-card:hover::before{

    transform:scaleX(1);

}

.tr-why-us-card h3{

    margin-bottom:18px;

    font-size:22px;

    font-weight:700;

    color:#0f172a;

}

.tr-why-us-card p{

    margin:0;

    color:#64748b;

    line-height:1.8;

}

@media (max-width:991px){

    .tr-why-us{

        padding:90px 0;

    }

    .tr-why-us-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .tr-why-us{

        padding:50px 0;

    }

    .tr-why-us-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .tr-why-us-card{

        padding:30px;

    }

}