﻿/* =========================================================
   INDIRA GAS & PETROLEUM
   THE OPPORTUNITY - PREMIUM VERSION
   ========================================================= */

.ig-opportunity-section {
    position: relative;
    width: 100%;
    padding: 85px 0 80px;
    overflow: hidden;

    background:
        radial-gradient(circle at 8% 10%, rgba(0, 105, 62, 0.07), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(230, 0, 18, 0.06), transparent 30%),
        #f6f8f7;

    font-family: "Poppins", sans-serif;
}


/* Decorative background */

.ig-opportunity-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -180px;
    top: 100px;

    border: 45px solid rgba(0, 105, 62, 0.025);
    border-radius: 50%;

    pointer-events: none;
}

.ig-opportunity-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: 30px;

    border: 35px solid rgba(230, 0, 18, 0.025);
    border-radius: 50%;

    pointer-events: none;
}


/* -----------------------------------------
   Container
   ----------------------------------------- */

.ig-opportunity-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1280px;

    margin: 0 auto;
}


/* -----------------------------------------
   Heading
   ----------------------------------------- */

.ig-opportunity-heading {
    position: relative;
    max-width: 920px;

    margin-bottom: 45px;
}


.ig-opportunity-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: #006b3f;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}


.ig-opportunity-label strong {
    color: #e60012;
}


.ig-label-line {
    width: 5px;
    height: 20px;

    display: inline-block;

    background: #e60012;
    border-radius: 5px;
}


.ig-opportunity-heading h2 {
    margin: 0 0 7px;

    color: #12386b;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.7px;
}


.ig-opportunity-heading h2 span {
    color: #12386b;
}


.ig-opportunity-heading h3 {
    margin: 0 0 13px;

    color: #e60012;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;
}


.ig-opportunity-heading p {
    max-width: 880px;

    margin: 0;

    color: #555d62;

    font-size: 15px;
    line-height: 1.75;
}


/* -----------------------------------------
   Stats Grid
   ----------------------------------------- */

.ig-stat-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 55px;
}


/* -----------------------------------------
   Stat Cards
   ----------------------------------------- */

.ig-stat-card {
    position: relative;

    min-height: 155px;

    display: flex;
    align-items: center;

    padding: 25px 25px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid #dfe4e1;
    border-radius: 4px;

    box-shadow:
        0 8px 25px rgba(18, 56, 107, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.ig-stat-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 105, 62, 0.35);

    box-shadow:
        0 16px 35px rgba(18, 56, 107, 0.12);
}


/* Top accent */

.ig-stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 75px;
    height: 4px;

    background: #e60012;

    border-radius: 4px 0 4px 0;
}


/* Bottom accent */

.ig-stat-card::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75px;
    height: 3px;

    background: #006b3f;

    border-radius: 4px 0 4px 0;
}


/* -----------------------------------------
   Icons
   ----------------------------------------- */

.ig-stat-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 17px;

    color: #e60012;

    font-size: 38px;
}


.ig-stat-icon i {
    line-height: 1;
}


/* -----------------------------------------
   Stat Content
   ----------------------------------------- */

.ig-stat-content {
    min-width: 0;
}


.ig-stat-number {
    margin-bottom: 5px;

    color: #12386b;

    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;

    font-size: 31px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.3px;
}


.ig-stat-title {
    color: #454b50;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}


.ig-stat-source {
    margin-top: 9px;

    color: #73777a;

    font-size: 9px;
    line-height: 1.3;

    font-style: italic;
}


/* -----------------------------------------
   Indira's Role
   ----------------------------------------- */

.ig-role-box {
    position: relative;

    padding: 34px 42px;

    background:
        linear-gradient(
            100deg,
            #eaf4ef 0%,
            #f8faf9 55%,
            #ffffff 100%
        );

    border: 1px solid #d8e4de;

    border-left: 6px solid #006b3f;

    border-radius: 3px;

    box-shadow:
        0 10px 30px rgba(18, 56, 107, 0.07);
}


.ig-role-content {
    max-width: 950px;
}


.ig-role-box h3 {
    margin: 0 0 9px;

    color: #006b3f;

    font-size: 27px;
    line-height: 1.3;

    font-weight: 700;
}


.ig-role-box p {
    margin: 0 0 12px;

    color: #50585c;

    font-size: 15px;
    line-height: 1.7;
}


.ig-role-box small {
    display: block;

    color: #73787b;

    font-size: 10.5px;
    line-height: 1.5;

    font-style: italic;
}


.ig-role-source {
    margin-top: 7px;

    color: #606568;

    font-size: 10px;

    font-style: italic;
}


.ig-role-source span {
    font-weight: 600;
}


/* -----------------------------------------
   Decorative Bars
   ----------------------------------------- */

.ig-role-accent {
    position: absolute;

    right: 45px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: flex-end;

    gap: 6px;

    height: 65px;
}


.ig-role-accent span {
    display: block;

    width: 6px;

    border-radius: 5px 5px 0 0;

    background: #e60012;
}


.ig-role-accent span:nth-child(1) {
    height: 25px;
}


.ig-role-accent span:nth-child(2) {
    height: 43px;

    background: #006b3f;
}


.ig-role-accent span:nth-child(3) {
    height: 62px;

    background: #e60012;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ig-opportunity-section {
        padding: 65px 0;
    }

    .ig-opportunity-container {
        width: 92%;
    }

    .ig-opportunity-heading h2 {
        font-size: 36px;
    }

    .ig-stat-grid {
        gap: 18px;
    }

    .ig-stat-card {
        padding: 22px 17px;
    }

    .ig-stat-icon {
        flex-basis: 45px;
        width: 45px;
        margin-right: 12px;
        font-size: 32px;
    }

    .ig-stat-number {
        font-size: 27px;
    }

    .ig-stat-title {
        font-size: 13px;
    }

    .ig-role-accent {
        right: 25px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ig-opportunity-section {
        padding: 52px 0 55px;
    }

    .ig-opportunity-container {
        width: 90%;
    }


    /* Heading */

    .ig-opportunity-heading {
        margin-bottom: 32px;
    }

    .ig-opportunity-label {
        font-size: 12px;
        margin-bottom: 13px;
    }

    .ig-label-line {
        width: 4px;
        height: 17px;
    }

    .ig-opportunity-heading h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .ig-opportunity-heading h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .ig-opportunity-heading p {
        font-size: 13.5px;
        line-height: 1.65;
    }


    /* Stats */

    .ig-stat-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 40px;
    }


    .ig-stat-card {
        min-height: 125px;

        padding: 20px 18px;
    }


    .ig-stat-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 55px;

        margin-right: 14px;

        font-size: 33px;
    }


    .ig-stat-number {
        font-size: 27px;
    }


    .ig-stat-title {
        font-size: 13px;
    }


    .ig-stat-source {
        margin-top: 7px;
        font-size: 8.5px;
    }


    /* Role */

    .ig-role-box {
        padding: 26px 21px;

        border-left-width: 4px;
    }


    .ig-role-box h3 {
        font-size: 23px;
    }


    .ig-role-box p {
        font-size: 13.5px;
        line-height: 1.65;
    }


    .ig-role-box small {
        font-size: 9.5px;
    }


    .ig-role-accent {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .ig-opportunity-section {
        padding: 45px 0 48px;
    }

    .ig-opportunity-heading h2 {
        font-size: 26px;
    }

    .ig-opportunity-heading h3 {
        font-size: 16px;
    }

    .ig-stat-card {
        min-height: 118px;
        padding: 18px 15px;
    }

    .ig-stat-icon {
        flex-basis: 43px;
        width: 43px;
        margin-right: 12px;
        font-size: 30px;
    }

    .ig-stat-number {
        font-size: 25px;
    }

    .ig-stat-title {
        font-size: 12px;
    }

    .ig-role-box {
        padding: 22px 18px;
    }
}