/**
 * ==========================================
 * VoIP Features
 * ==========================================
 */

.tr-voip-features{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

/* ==========================================
   Section Heading
========================================== */

.tr-voip-features .tr-section-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.tr-voip-features .tr-section-badge{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    border-radius:999px;

    margin-bottom:18px;

}

.tr-voip-features .tr-section-title{

    margin-bottom:20px;

}

.tr-voip-features .tr-section-description{

    color:#64748b;

    line-height:1.8;

}

/* ==========================================
   Grid
========================================== */

.tr-voip-features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    align-items:stretch;

}

/* ==========================================
   Feature Card
========================================== */

.tr-feature-item{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    position:relative;

    overflow:hidden;

    background:#ffffff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    padding:32px;

    height:100%;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

/* Left Accent */

.tr-feature-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:4px;

    height:100%;

    background:#0A2E73;

    transform:scaleY(0);

    transform-origin:top;

    transition:transform .35s ease;

}

/* Hover */

.tr-feature-item:hover{

    transform:translateY(-8px);

    border-color:#0A2E73;

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

.tr-feature-item:hover::before{

    transform:scaleY(1);

}

/* ==========================================
   Typography
========================================== */

.tr-feature-item h3{

    margin:0 0 16px;

    font-size:22px;

    font-weight:700;

    line-height:1.35;

    color:#0f172a;

}

.tr-feature-item p{

    margin:0;

    color:#64748b;

    font-size:16px;

    line-height:1.8;

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

    .tr-voip-features{

        padding:90px 0;

    }

    .tr-voip-features-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:576px){

    .tr-voip-features{

        padding:70px 0;

    }

    .tr-feature-item{

        padding:28px;

    }

    .tr-feature-item h3{

        font-size:20px;

    }

    .tr-feature-item p{

        font-size:15px;

    }

}