﻿/*=============================
Trusted Section
==============================*/

.trusted-section {
    padding: 100px 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    background: #EAF3FC;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 18px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.trusted-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
    transition: .35s;
    border: 1px solid #edf2f8;
}

    .trusted-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: 0 25px 60px rgba(74,130,193,.18);
    }

    .trusted-card i {
        font-size: 42px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .trusted-card h4 {
        font-size: 20px;
    }


.trust-banner {
    margin-top: 80px;
    background: linear-gradient(135deg,var(--primary),var(--primary-dark));
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

    .trust-banner h3 {
        color: #fff;
        margin-bottom: 10px;
    }

    .trust-banner p {
        color: rgba(255,255,255,.9);
        margin: 0;
    }
