/*==============================
TECHNOLOGIES
==============================*/

.technologies{

    padding:100px 0;
    background:#f7f9fc;

}

.technologies .section-heading{

    text-align:center;
    max-width:800px;
    margin:0 auto 60px;

}

.technologies .section-badge{

    display:inline-block;
    background:#e8f8ef;
    color:#00A651;
    padding:8px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;

}

.technologies h2{

    font-size:42px;
    margin-bottom:20px;
    color:#111827;

}

.technologies .section-heading p{

    color:#6b7280;
    line-height:1.8;

}

/*==============================
GRID
==============================*/

.technology-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================
CARD
==============================*/

.technology-card{

    background:#fff;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:.3s;

}

.technology-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-color:#00A651;

}

.technology-card img{

    width:120px;

    height:70px;

    object-fit:contain;

    margin:0 auto 20px;

}

.technology-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.technology-card p{

    color:#6b7280;

    font-size:15px;

    line-height:1.6;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

    .technology-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .technology-grid{

        grid-template-columns:1fr;

    }

}