﻿/* =====================================================
   INDIRA GAS & PETROLEUM
   PREMIUM CERTIFICATION SECTION
===================================================== */

.igp-cert-section {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    background: #f8f9f8;
    overflow: hidden;
}


/* Background Decorative Elements */

.igp-cert-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -240px;
    left: -180px;
    border-radius: 50%;
    background: rgba(229, 0, 18, 0.045);
}

.igp-cert-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -220px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(251, 194, 25, 0.09);
}


/* =====================================================
   CONTAINER
===================================================== */

.igp-cert-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =====================================================
   TOP HEADING
===================================================== */

.igp-cert-top {
    text-align: center;
    margin-bottom: 48px;
}


/* Eyebrow */

.igp-cert-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #006b32;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.igp-cert-eyebrow-line {
    width: 30px;
    height: 3px;

    background: #e50018;
    border-radius: 10px;
}


/* Heading */

.igp-cert-top h2 {
    margin: 0;

    color: #0b376d;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}

.igp-cert-top h2 span {
    position: relative;
    display: inline-block;
}


/* Yellow heading underline */

.igp-cert-top h2 span::after {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    bottom: -6px;

    height: 5px;

    background: #fbc219;

    border-radius: 10px;

    z-index: -1;
}


/* Subtitle */

.igp-cert-subtitle {
    margin: 13px 0 0;

    color: #e50018;

    font-size: 16px;
    font-weight: 700;
}


/* =====================================================
   MAIN CREDENTIAL BOX
===================================================== */

.igp-cert-box {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 50px 1fr;

    gap: 30px;

    padding: 38px 42px;

    background: #ffffff;

    border: 1px solid #e4e7e5;

    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.07);
}


/* =====================================================
   SIDE
===================================================== */

.igp-cert-side {
    min-width: 0;
}


/* =====================================================
   SIDE TITLE
===================================================== */

.igp-cert-side-title {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}


.igp-cert-title-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff7d9;

    color: #006b32;

    border-radius: 12px;

    font-size: 19px;

    border: 1px solid rgba(251, 194, 25, 0.35);
}


.igp-cert-side-title h3 {
    margin: 0;

    color: #0b376d;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 800;
}


.igp-cert-side-title p {
    margin: 4px 0 0;

    color: #7a7f84;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .7px;
}


/* =====================================================
   CREDENTIAL CARD
===================================================== */

.igp-cert-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 76px;

    gap: 15px;

    margin-bottom: 12px;
    padding: 13px 45px 13px 14px;

    background: #fbfcfb;

    border: 1px solid #e9ecea;

    border-radius: 10px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}


/* Left accent */

.igp-cert-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12px;
    bottom: 12px;

    width: 3px;

    background: #e50018;

    border-radius: 0 5px 5px 0;

    opacity: 0;

    transition: opacity .3s ease;
}


/* Hover */

.igp-cert-card:hover {
    transform: translateX(5px);

    background: #ffffff;

    border-color: #d9dfdc;

    box-shadow: 0 8px 22px rgba(0, 0, 0, .07);
}

.igp-cert-card:hover::before {
    opacity: 1;
}


/* =====================================================
   CARD ICON
===================================================== */

.igp-cert-card-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #006b32;

    background: #eef7f1;

    border-radius: 9px;

    font-size: 15px;

    transition: all .3s ease;
}


.igp-cert-card:hover .igp-cert-card-icon {
    color: #ffffff;
    background: #006b32;
}


/* =====================================================
   CARD TEXT
===================================================== */

.igp-cert-card-content {
    min-width: 0;
}

.igp-cert-card-content h4 {
    margin: 0;

    color: #34383c;

    font-size: 13px;
    line-height: 1.45;

    font-weight: 700;
}

.igp-cert-card-content p {
    margin: 3px 0 0;

    color: #777d82;

    font-size: 11.5px;
    line-height: 1.45;

    font-weight: 500;
}


/* =====================================================
   CHECK ICON
===================================================== */

.igp-cert-check {
    position: absolute;

    right: 14px;
    top: 50%;

    transform: translateY(-50%);

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #006b32;

    background: #eaf6ee;

    border-radius: 50%;

    font-size: 9px;
}


/* =====================================================
   CENTER DIVIDER
===================================================== */

.igp-cert-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;

    padding-top: 55px;
}


.igp-divider-line {
    width: 1px;
    flex: 1;

    background: linear-gradient(
        to bottom,
        transparent,
        #d7ddd9 20%,
        #d7ddd9 80%,
        transparent
    );
}


.igp-divider-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    background: #fbc219;

    border: 2px solid #ffffff;

    box-shadow: 0 0 0 1px #e4b000;

    border-radius: 50%;
}


/* =====================================================
   VERIFICATION PANEL
===================================================== */

.igp-verification {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 24px;

    padding: 20px 24px;

    background: #07376e;

    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(7, 55, 110, .12);
}


/* Icon */

.igp-verification-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #07376e;

    background: #fbc219;

    border-radius: 50%;

    font-size: 18px;
}


/* Content */

.igp-verification-content {
    flex: 1;
}

.igp-verification-content h4 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .7px;
}

.igp-verification-content p {
    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 12px;
    line-height: 1.55;

    font-weight: 400;
}


/* Badge */

.igp-verification-badge {
    display: flex;
    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    padding: 9px 13px;

    color: #006b32;

    background: #ffffff;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
}

.igp-verification-badge i {
    font-size: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .igp-cert-section {
        padding: 70px 20px;
    }

    .igp-cert-top h2 {
        font-size: 36px;
    }

    .igp-cert-box {
        grid-template-columns: 1fr 30px 1fr;
        gap: 20px;

        padding: 30px;
    }

    .igp-cert-card {
        padding-right: 35px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .igp-cert-section {
        padding: 55px 15px;
    }


    /* Heading */

    .igp-cert-top {
        margin-bottom: 30px;
    }

    .igp-cert-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .igp-cert-eyebrow-line {
        width: 24px;
        height: 3px;
    }

    .igp-cert-top h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .igp-cert-top h2 span::after {
        height: 4px;
        bottom: -4px;
    }

    .igp-cert-subtitle {
        font-size: 13px;
    }


    /* Main box */

    .igp-cert-box {
        display: block;

        padding: 23px 16px;

        border-radius: 14px;
    }


    /* Side */

    .igp-cert-side-title {
        gap: 11px;

        margin-bottom: 18px;
    }

    .igp-cert-title-icon {
        width: 41px;
        height: 41px;

        border-radius: 10px;

        font-size: 16px;
    }

    .igp-cert-side-title h3 {
        font-size: 14px;
    }

    .igp-cert-side-title p {
        font-size: 9px;
    }


    /* Cards */

    .igp-cert-card {
        min-height: 67px;

        gap: 11px;

        margin-bottom: 9px;

        padding: 11px 36px 11px 11px;

        border-radius: 8px;
    }

    .igp-cert-card-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        border-radius: 8px;

        font-size: 13px;
    }

    .igp-cert-card-content h4 {
        font-size: 11.5px;
    }

    .igp-cert-card-content p {
        font-size: 10px;
    }

    .igp-cert-check {
        right: 10px;

        width: 18px;
        height: 18px;

        font-size: 8px;
    }


    /* Divider */

    .igp-cert-divider {
        flex-direction: row;

        height: 30px;

        padding: 0 25px;

        gap: 8px;
    }

    .igp-divider-line {
        width: auto;
        height: 1px;

        flex: 1;

        background: #d7ddd9;
    }


    /* Verification */

    .igp-verification {
        align-items: flex-start;

        gap: 11px;

        margin-top: 15px;

        padding: 16px;

        border-radius: 10px;
    }

    .igp-verification-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 14px;
    }

    .igp-verification-content h4 {
        font-size: 10px;
    }

    .igp-verification-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .igp-verification-badge {
        display: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .igp-cert-top h2 {
        font-size: 24px;
    }

    .igp-cert-box {
        padding: 20px 12px;
    }

    .igp-cert-card-content h4 {
        font-size: 11px;
    }

    .igp-cert-card-content p {
        font-size: 9.5px;
    }

}