/* ==========================================
   CSR SECTION
========================================== */

.csr-section-white {
    background: var(--gt-white);
    position: relative;
    overflow: hidden;
}

.csr-header-card {
    background: var(--gt-white);
}

.csr-left-panel {
    background: #fff;
    padding: 2.5rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
    position: relative;
    isolation: isolate;
}

    .csr-left-panel:hover {
        transform: translateY(-4px);
        border-color: rgba(221, 31, 37, 0.4);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

.csr-panel-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(221, 31, 37, 0.12);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.csr-section-badge {
    margin-bottom: 1.5rem;
}

    .csr-section-badge span {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(221, 31, 37, 0.12);
        border: 1px solid rgba(221, 31, 37, 0.25);
        color: #ffffff;
        padding: 0.45rem 0.9rem;
        border-radius: 0.6rem;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

.csr-section-number {
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: rgb(221, 31, 37);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -4px;
}

.csr-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    position: relative;
    z-index: 2;
}

.csr-title-line {
    width: 90px;
    height: 4px;
    background: #dd1f25;
    border-radius: 50px;
    margin-top: 1.4rem;
    position: relative;
    overflow: hidden;
}

    .csr-title-line::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 28px;
        height: 100%;
        background: #ffc400;
        border-radius: 50px;
    }


.csr-intro-card {
    background: #fff8e1;
    border: 1px solid rgba(221, 31, 37, 0.08);
    border-left: 4px solid var(--gt-theme);
    border-radius: 1rem;
    padding: 2rem 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    transition: 0.3s ease;
}

    .csr-intro-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(221, 31, 37, 0.08);
    }

.csr-quote-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(221, 31, 37, 0.18);
}

.csr-intro-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--gt-header);
    font-weight: 500;
    margin: 0;
    flex: 1;
}


.csr-content-card {
    background: var(--gt-white);
    border: 1px solid rgba(221, 31, 37, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: 0.35s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

    .csr-content-card:hover {
        transform: translateY(-6px);
        border-color: rgba(221, 31, 37, 0.18);
        box-shadow: 0 18px 40px rgba(221, 31, 37, 0.08);
    }

.csr-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

.csr-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(221, 31, 37, 0.15);
}

.csr-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gt-header);
    line-height: 1.5;
    margin: 0;
}

.csr-card-text {
    color: var(--gt-text);
    line-height: 1.9;
    margin: 0;
}

.csr-focus-wrapper {
    background: var(--gt-header);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 3rem;
}

.csr-focus-title {
    color: var(--gt-white);
    font-size: 2rem;
    font-weight: 700;
}

.csr-focus-badge {
    background: #ffc400;
    color: var(--gt-black);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.csr-focus-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 196, 0, 0.14);
    border-radius: 1rem;
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: 0.35s ease;
}

    .csr-focus-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 196, 0, 0.3);
        background: rgba(255, 196, 0, 0.04);
    }

.csr-focus-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: #ffc400;
    color: var(--gt-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
}

.csr-focus-text {
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}


@media (max-width: 991px) {

    .csr-left-panel {
        padding: 2rem;
    }

    .csr-section-number {
        font-size: 4.5rem;
    }

    .csr-section-title {
        font-size: 2rem;
    }

    .csr-intro-card,
    .csr-content-card,
    .csr-focus-wrapper {
        padding: 1.8rem;
    }
}

@media (max-width: 767px) {

    .csr-section-title {
        font-size: 1.9rem;
    }

    .csr-intro-card,
    .csr-card-top,
    .csr-focus-card {
        gap: 1rem;
        display:flex;
        flex-direction:column;
        align-items:start;
    }

    .csr-quote-icon,
    .csr-card-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.2rem;
    }

    .csr-focus-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .csr-focus-title {
        font-size: 1.5rem;
    }

    .csr-intro-text,
    .csr-card-text,
    .csr-focus-text {
        line-height: 1.8;
    }
}


/*Objective CSS*/

.csr-objective-section {
    background: var(--gt-header);
    position: relative;
    overflow: hidden;
}

.csr-objective-title-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.csr-objective-number {
    width: 70px;
    height: 70px;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px rgba(221, 31, 37, 0.22);
}

.csr-objective-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gt-white);
    margin-bottom: 1rem;
}

.csr-objective-line {
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background: #ffc400;
}

.csr-objective-intro {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 196, 0, 0.12);
    border-left: 4px solid #ffc400;
    border-radius: 1rem;
    padding: 2rem 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: 0.3s ease;
}

    .csr-objective-intro:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 196, 0, 0.22);
        background: rgba(255, 255, 255, 0.06);
    }

.csr-objective-intro-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #ffc400;
    color: var(--gt-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.csr-objective-intro-text {
    color: rgba(255,255,255,0.88);
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
    flex: 1;
}


.csr-objective-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 4px solid var(--gt-theme);
    border-radius: 1rem;
    padding: 2rem;
    transition: 0.35s ease;
}

    .csr-objective-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 196, 0, 0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }


.csr-objective-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.csr-objective-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(221, 31, 37, 0.2);
}

.csr-objective-card-title {
    color: var(--gt-white);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.csr-objective-card-text {
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 991px) {

    .csr-objective-title {
        font-size: 2.2rem;
    }

    .csr-objective-intro,
    .csr-objective-card {
        padding: 1.8rem;
    }
}

@media (max-width: 767px) {

    .csr-objective-title {
        font-size: 1.9rem;
    }

    .csr-objective-intro,
    .csr-objective-card-top {
        gap: 1rem;
    }

    .csr-objective-intro-icon,
    .csr-objective-card-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.2rem;
    }

    .csr-objective-intro-text,
    .csr-objective-card-text {
        line-height: 1.8;
    }
}

/*focus of engagement*/


.csr-focus-wrapper {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.08);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.csr-focus-intro {
    font-size: 1.05rem;
    color: var(--gt-text);
    font-weight: 500;
}

.csr-focus-card {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.1);
    padding: 1.5rem;
    transition: 0.3s ease;
    height: 100%;
}

.csr-focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 31, 37, 0.22);
    box-shadow: 0 14px 35px rgba(221, 31, 37, 0.08);
}


.csr-focus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.csr-focus-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gt-black);
    line-height: 1.4;
}


.csr-focus-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(221, 31, 37, 0.08);
    border: 1px solid rgba(221, 31, 37, 0.12);
    color: var(--gt-theme);
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.csr-focus-card:hover .csr-focus-icon {
    background: var(--gt-theme);
    color: #ffffff;
}
.csr-focus-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.csr-focus-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gt-text);
    line-height: 1.7;
    font-size: 0.96rem;
}

.csr-focus-list li:last-child {
    margin-bottom: 0;
}

.csr-focus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffc400;
}


@media (max-width: 991px) {

    .csr-focus-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {

    .csr-focus-card {
        padding: 1.25rem;
    }

    .csr-focus-header {
        align-items: flex-start;
    }

    .csr-focus-header h3 {
        font-size: 1.05rem;
    }

    .csr-focus-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
}

/*CSR Footprint section*/


#location {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

    #location::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(221, 31, 37, 0.12), transparent 30%), radial-gradient(circle at bottom left, rgba(255, 196, 0, 0.08), transparent 30%);
        pointer-events: none;
    }


.csr-location-wrapper {
    position: relative;
    z-index: 2;
}

.csr-map-box {
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.76)), url('/images/csr-map-bg.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

    .csr-map-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(221, 31, 37, 0.12), transparent 50%);
        pointer-events: none;
    }

.csr-map-icon {
    width: 85px;
    height: 85px;
    background: rgba(221, 31, 37, 0.14);
    border: 1px solid rgba(221, 31, 37, 0.28);
    color: var(--gt-theme);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.csr-map-title {
    color: var(--gt-white);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.csr-map-text {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.csr-location-card {
    background: #171717;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .csr-location-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(221, 31, 37, 0.08), transparent 60%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-location-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 196, 0, 0.3);
        background: #1d1d1d;
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }

        .csr-location-card:hover::before {
            opacity: 1;
        }


.csr-location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

    .csr-location-header h3 {
        color: var(--gt-white);
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0;
    }


.csr-location-icon {
    width: 60px;
    height: 60px;
    background: rgba(221, 31, 37, 0.14);
    border: 1px solid rgba(221, 31, 37, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-theme);
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}


.csr-location-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .csr-map-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {

    #location {
        padding: 70px 0;
    }



    .csr-map-box {
        padding: 3rem 1.5rem !important;
    }

    .csr-map-icon {
        width: 72px;
        height: 72px;
        font-size: 1.7rem;
    }

    .csr-map-title {
        font-size: 1.4rem;
    }

    .csr-map-text {
        font-size: 0.95rem;
    }

    .csr-location-card {
        padding: 1.5rem;
    }

    .csr-location-header {
        flex-direction: column;
        text-align: center;
    }

        .csr-location-header h3 {
            font-size: 1.05rem;
        }

    .csr-location-card p {
        text-align: center;
        font-size: 0.9rem;
    }
}

/*Scope Section*/


#scope {
    background: var(--gt-white);
    position: relative;
}

.csr-scope-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 3rem;
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .csr-scope-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(221, 31, 37, 0.03), transparent 55%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-scope-card:hover {
        transform: translateY(-4px);
        border-color: rgba(221, 31, 37, 0.18);
        box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

        .csr-scope-card:hover::before {
            opacity: 1;
        }

.csr-scope-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    background: rgba(221, 31, 37, 0.08);
    border: 1px solid rgba(221, 31, 37, 0.14);
    color: var(--gt-theme);
    font-size: 1.9rem;
    position: relative;
    z-index: 2;
}


.csr-scope-content {
    position: relative;
    z-index: 2;
}

    .csr-scope-content p {
        color: #555;
        font-size: 1.05rem;
        line-height: 2;
        margin-bottom: 0;
    }

@media (max-width: 991px) {

    .csr-scope-card {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {

    .csr-scope-card {
        padding: 2rem 1.5rem;
    }

    .csr-scope-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.5rem;
    }

    .csr-scope-content p {
        font-size: 0.95rem;
        line-height: 1.9;
    }
}

/*CSR Committee*/

.csr-committee-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.csr-committee-content {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}


.csr-committee-info {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(221,31,37,0.12);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

    .csr-committee-info:hover {
        border-color: rgba(221,31,37,0.35);
        transform: translateY(-3px);
        box-shadow: 0 14px 35px rgba(221,31,37,0.08);
    }

.csr-committee-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 25px rgba(221,31,37,0.2);
}

.csr-committee-info p {
    color: #595959;
    line-height: 1.9;
    font-size: 1rem;
}


.csr-members-title {
    color: #1D1D1D;
    font-size: 1.6rem;
    font-weight: 700;
}

.csr-members-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(221,31,37,0.7), rgba(221,31,37,0.05));
    min-width: 120px;
}

.csr-member-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

    .csr-member-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(221,31,37,0.05), transparent 60%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-member-card:hover {
        transform: translateY(-5px);
        border-color: rgba(221,31,37,0.35);
        box-shadow: 0 18px 40px rgba(221,31,37,0.08);
    }

        .csr-member-card:hover::before {
            opacity: 1;
        }

.csr-member-avatar {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.25rem;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(221,31,37,0.2);
}

.csr-member-card h4 {
    color: #1D1D1D;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
}

.csr-member-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    background: rgba(221,31,37,0.08);
    border: 1px solid rgba(221,31,37,0.15);
    color: var(--gt-theme);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}


@media (max-width: 991px) {

    .csr-committee-content {
        padding: 1.5rem;
    }

    .csr-committee-info {
        flex-direction: column;
    }

    .csr-members-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {

    .csr-member-card {
        padding: 1.5rem 1.2rem;
    }

    .csr-member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }

    .csr-committee-info p {
        font-size: 0.95rem;
    }
}


/*CSR Committee Role*/

.csr-role-section {
    background: #111111;
    position: relative;
    overflow: hidden;
}


.csr-role-content-wrapper {
    height: 100%;
}


.csr-role-highlight-card {
    background: #1D1D1D;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

    .csr-role-highlight-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: var(--gt-theme);
    }

    .csr-role-highlight-card:hover {
        border-color: rgba(221,31,37,0.3);
        transform: translateY(-4px);
    }

.csr-role-highlight-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(221,31,37,0.12);
    margin-bottom: 1rem;
}

.csr-role-highlight-title {
    color: var(--gt-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.csr-role-highlight-text {
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
    font-size: 1rem;
    max-width: 90%;
}

.csr-role-card {
    background: #1D1D1D;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .csr-role-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(221,31,37,0.08), transparent 75%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-role-card:hover {
        transform: translateY(-5px);
        border-color: rgba(221,31,37,0.35);
    }

        .csr-role-card:hover::after {
            opacity: 1;
        }


.csr-role-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(221,31,37,0.25);
}


.csr-role-content h4 {
    color: var(--gt-white);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.csr-role-content p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .csr-role-highlight-card {
        padding: 1.75rem;
    }

    .csr-role-highlight-title {
        font-size: 1.7rem;
    }

    .csr-role-highlight-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .csr-role-highlight-number {
        font-size: 3rem;
    }

    .csr-role-highlight-title {
        font-size: 1.45rem;
    }

    .csr-role-card {
        padding: 1.25rem;
    }

    .csr-role-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 0.9rem;
    }

    .csr-role-content h4 {
        font-size: 1rem;
    }

    .csr-role-content p {
        font-size: 0.92rem;
    }
}

/*role of board*/


.csr-board-role-section {
    background: #111111;
    position: relative;
    overflow: hidden;
}


.csr-board-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #1D1D1D;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.75rem;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .csr-board-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(221,31,37,0.08), transparent 60%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-board-card:hover {
        transform: translateY(-4px);
        border-color: rgba(221,31,37,0.35);
    }

        .csr-board-card:hover::before {
            opacity: 1;
        }


.csr-board-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: var(--gt-theme);
    color: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 12px 28px rgba(221,31,37,0.28);
}


.csr-board-content {
    flex: 1;
}

    .csr-board-content p {
        color: rgba(255,255,255,0.76);
        font-size: 1rem;
        line-height: 1.9;
    }

@media (max-width: 767px) {

    .csr-board-card {
        padding: 1.3rem;
        gap: 1rem;
    }

    .csr-board-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 0.9rem;
    }

    .csr-board-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}


/*CSR Monitoring command reporting mechanism*/

.csr-monitoring-card {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.10);
    padding: 2rem;
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

    .csr-monitoring-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 196, 0, 0.45);
        box-shadow: 0 18px 45px rgba(221, 31, 37, 0.10);
    }

.csr-monitoring-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

    .csr-monitoring-icon::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 14px;
        height: 100%;
        background: #ffc400;
    }

.csr-monitoring-card p {
    color: #4b5563;
    line-height: 1.9;
    font-size: 1rem;
    font-weight: 500;
}


@media (max-width: 991px) {

    .csr-monitoring-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {

    .csr-monitoring-card {
        padding: 1.5rem;
    }

    .csr-monitoring-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.2rem;
    }
}

/*CSR Expenditure*/


#expenditure {
    background: #0f0f10;
}

.csr-expenditure-card {
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .csr-expenditure-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #ffc400;
        transition: 0.3s ease;
    }

    .csr-expenditure-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 196, 0, 0.25);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    }

        .csr-expenditure-card:hover::before {
            background: #dd1f25;
        }


.csr-expenditure-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

    .csr-expenditure-icon::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 12px;
        height: 100%;
        background: #ffc400;
    }

.csr-expenditure-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.csr-expenditure-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 0.98rem;
    font-weight: 400;
}


@media (max-width: 991px) {

    .csr-expenditure-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {

    .csr-expenditure-card {
        padding: 1.5rem;
    }

    .csr-expenditure-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.2rem;
    }

    .csr-expenditure-card h3 {
        font-size: 1.1rem;
    }
}

/*Disclosure*/


#disclosure {
    background: #ffffff;
}

.csr-disclosure-card {
    background: #fff;
    border: 1px solid rgba(221, 31, 37, 0.08);
    padding: 2rem;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

    /* TOP ACCENT BAR */

    .csr-disclosure-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #dd1f25;
        transition: 0.35s ease;
    }

    /* YELLOW CORNER ACCENT */

    .csr-disclosure-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 70px;
        height: 70px;
        background: #ffc400;
        clip-path: polygon(100% 0, 0 0, 100% 100%);
        opacity: 0.95;
    }

    /* HOVER */

    .csr-disclosure-card:hover {
        transform: translateY(-8px);
        border-color: rgba(221, 31, 37, 0.18);
        box-shadow: 0 18px 45px rgba(221, 31, 37, 0.12);
    }

        .csr-disclosure-card:hover::before {
            background: #ffc400;
        }

.csr-disclosure-icon {
    width: 74px;
    height: 74px;
    background: rgba(221, 31, 37, 0.08);
    color: #dd1f25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.75rem;
    transition: all 0.35s ease;
    border: 1px solid rgba(221, 31, 37, 0.08);
    position: relative;
    z-index: 2;
}

.csr-disclosure-card:hover .csr-disclosure-icon {
    background: #dd1f25;
    color: #ffffff;
    transform: rotate(-6deg);
}

.csr-disclosure-card h3 {
    color: #111827;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.csr-disclosure-card p {
    color: #5b6472;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}


@media (max-width: 991px) {

    .csr-disclosure-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {

    .csr-disclosure-card {
        padding: 1.5rem;
    }

    .csr-disclosure-icon {
        width: 62px;
        height: 62px;
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .csr-disclosure-card h3 {
        font-size: 1.15rem;
    }

    .csr-disclosure-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/*quorum*/

/* ======================================================
   CSR QUORUM SECTION
====================================================== */

#quorum {
    background: #0f0f10;
}

/* ======================================================
   CARD
====================================================== */

.csr-quorum-card {
    background: linear-gradient(180deg, #171717 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .csr-quorum-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(221, 31, 37, 0.06), transparent 45%);
        opacity: 0;
        transition: 0.35s ease;
    }

    .csr-quorum-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 196, 0, 0.25);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    }

        .csr-quorum-card:hover::before {
            opacity: 1;
        }

/* ======================================================
   TOP AREA
====================================================== */

.csr-quorum-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

/* ======================================================
   ICON
====================================================== */

.csr-quorum-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

    .csr-quorum-icon::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 12px;
        height: 100%;
        background: #ffc400;
    }

/* ======================================================
   BADGE
====================================================== */

.csr-quorum-badge {
    background: rgba(255, 196, 0, 0.12);
    color: #ffc400;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 196, 0, 0.18);
    letter-spacing: 1px;
}

/* ======================================================
   TEXT
====================================================== */

.csr-quorum-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.csr-quorum-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

    .csr-quorum-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {

    .csr-quorum-card {
        padding: 1.5rem;
    }

    .csr-quorum-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.2rem;
    }

    .csr-quorum-card h3 {
        font-size: 1.15rem;
    }

    .csr-quorum-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/*Definition*/

/* ==========================================
   DEFINITIONS SECTION
========================================== */

.csr-definition-card {
    background: #ffffff;
    border: 1px solid rgba(221, 31, 37, 0.08);
    padding: 2rem;
    transition: 0.35s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

    .csr-definition-card:hover {
        transform: translateY(-5px);
        border-color: rgba(221, 31, 37, 0.18);
        box-shadow: 0 20px 45px rgba(221, 31, 37, 0.08);
    }

/* ==========================================
   HEADER
========================================== */

.csr-definition-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.csr-definition-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(221, 31, 37, 0.18);
}

.csr-definition-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
    margin-top: 0.15rem;
}

/* ==========================================
   CONTENT
========================================== */

.csr-definition-content p,
.csr-definition-content li {
    color: #5b6475;
    line-height: 1.9;
    font-size: 0.98rem;
}

.csr-definition-list {
    padding-left: 1.2rem;
}

    .csr-definition-list li {
        margin-bottom: 1rem;
    }

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .csr-definition-card {
        padding: 1.5rem;
    }

    .csr-definition-header {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {

    .csr-definition-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
    }

    .csr-definition-header h3 {
        font-size: 1rem;
    }

    .csr-definition-content p,
    .csr-definition-content li {
        font-size: 0.92rem;
    }
}