/* =========================================================
   TECHNOLOGIES SECTION
   Trisha Web Enterprise SEO CMS
   ========================================================= */

.technologies-section {
    padding: 70px 0;
    background: #ffffff;
}


/* =========================
   HEADER
   ========================= */

.technologies-header {
    margin-bottom: 45px;
    text-align: center;
}

.technologies-badge {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;

    color: #111827;
}

.technologies-title {
    margin: 0 0 10px;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;

    color: #111827;
}

.technologies-description {
    max-width: 850px;
    margin: 0 auto;

    font-size: 15px;
    line-height: 1.7;

    color: #374151;
}


/* =========================
   GRID
   ========================= */

.technologies-grid {
    align-items: stretch;
}


/* =========================
   CARD
   ========================= */

.technology-card {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 166px;

    padding: 25px 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #edf0f5;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    text-align: center;

    text-decoration: none;

    color: #111827;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* IMPORTANT:
   Card can be <a> because URL is dynamic
*/

a.technology-card {
    display: flex;

    width: 100%;

    color: #111827;
    text-decoration: none;
}


/* =========================
   HOVER
   ========================= */

.technology-card:hover {
    transform: translateY(-5px);

    border-color: #e0e7f0;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);

    color: #111827;
}


/* =========================
   ICON AREA
   ========================= */

.technology-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    font-size: 42px;
    line-height: 1;

    color: #0d6efd;
}


/* Font Awesome icons */

.technology-icon i {
    display: block;

    font-size: 42px;
    line-height: 1;

    color: #0d6efd;
}


/* Image logos */

.technology-icon img {
    display: block;

    width: 70px;
    height: 70px;

    object-fit: contain;
}


/* =========================
   NAME
   ========================= */

.technology-name {
    margin: 0;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;

    color: #111827;
}


/* Keep anchor text from becoming blue */

a.technology-card .technology-name {
    color: #111827;
    text-decoration: none;
}


/* =========================
   DESCRIPTION
   ========================= */

.technology-description {
    margin-top: 8px;

    font-size: 14px;
    line-height: 1.6;

    color: #666666;
}


/* =========================
   DESKTOP
   ========================= */

@media (min-width: 992px) {

    .technologies-grid {
        row-gap: 24px;
    }

}


/* =========================
   TABLET
   ========================= */

@media (max-width: 991.98px) {

    .technologies-section {
        padding: 60px 0;
    }

    .technologies-title {
        font-size: 28px;
    }

    .technology-card {
        min-height: 165px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 575.98px) {

    .technologies-section {
        padding: 50px 0;
    }

    .technologies-header {
        margin-bottom: 30px;
    }

    .technologies-title {
        font-size: 25px;
    }

    .technologies-description {
        font-size: 14px;
    }

    .technology-card {
        min-height: 155px;
        padding: 22px 15px;
    }

    .technology-icon {
        width: 65px;
        height: 65px;
    }

    .technology-icon i {
        font-size: 36px;
    }

    .technology-icon img {
        width: 60px;
        height: 60px;
    }

    .technology-name {
        font-size: 17px;
    }

}