﻿/* =====================================================
   LICENCES & CERTIFICATIONS
===================================================== */

.certifications-section {
    padding: 90px 6%;
    background: #ffffff;
}


/* =====================================================
   HEADING
===================================================== */

.certifications-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

    .certifications-heading span {
        display: inline-block;
        margin-bottom: 12px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #5f7f36;
        text-transform: uppercase;
    }

    .certifications-heading h2 {
        margin: 0;
        font-size: 42px;
        font-weight: 800;
        color: #17231a;
    }

    .certifications-heading p {
        margin: 16px auto 0;
        max-width: 650px;
        font-size: 16px;
        line-height: 1.7;
        color: #69736b;
    }


/* =====================================================
   CERTIFICATIONS GRID
===================================================== */

.certifications-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    /* 5 CARDS IN ONE LINE */
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}


/* =====================================================
   CERTIFICATION CARD
===================================================== */

.certification-card {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}


    /* Top shine */

    .certification-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.7), transparent );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
        pointer-events: none;
    }


    /* Hover */

    .certification-card:hover {
        transform: translateY(-10px);
        border-color: rgba(95, 127, 54, 0.25);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
    }

        .certification-card:hover::before {
            left: 130%;
        }


/* =====================================================
   IMAGE CONTAINER
===================================================== */

.certification-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}


    /* =====================================================
   CERTIFICATION IMAGE
===================================================== */

    .certification-image img {
        max-width: 100%;
        max-height: 145px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.45s ease, filter 0.45s ease;
    }


/* Image hover */

.certification-card:hover .certification-image img {
    transform: scale(1.08);
}


/* =====================================================
   APEDA CARD
   IMPORTANT: APEDA आता बाकी cards सारखाच आहे
===================================================== */

.certification-center {
    grid-column: auto;
    max-width: none;
    width: auto;
    margin: 0;
}


/* =====================================================
   TABLET - 3 CARDS
===================================================== */

@media (max-width: 1100px) {

    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}


/* =====================================================
   TABLET / SMALL LAPTOP - 2 CARDS
===================================================== */

@media (max-width: 768px) {

    .certifications-section {
        padding: 65px 20px;
    }


    .certifications-heading {
        margin-bottom: 40px;
    }


        .certifications-heading h2 {
            font-size: 30px;
        }


        .certifications-heading p {
            font-size: 14px;
        }


    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }


    .certification-card {
        min-height: 190px;
        padding: 20px;
    }


    .certification-image {
        height: 145px;
    }


        .certification-image img {
            max-height: 120px;
        }


    .certification-center {
        grid-column: auto;
    }
}


/* =====================================================
   MOBILE - 1 CARD
===================================================== */

@media (max-width: 480px) {

    .certifications-section {
        padding: 55px 16px;
    }


    .certifications-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }


    .certifications-heading h2 {
        font-size: 27px;
        line-height: 1.2;
    }


    .certifications-heading p {
        font-size: 13px;
        line-height: 1.6;
    }


    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .certification-card {
        min-height: 180px;
        border-radius: 16px;
    }


    .certification-image {
        height: 140px;
    }


        .certification-image img {
            max-width: 90%;
            max-height: 120px;
        }
}
