/* ============================================================
   Archean — Premium Navigation, Mega Menu & Search Overlay
   Loads after header.css and overrides its positioning hacks.
   Column accents follow group entities:
   1 Archean (brand green) · 2 Acume (deep green) · 3 Idealis (teal)
   4 Sicsem (amber) · 5 Quick links (slate panel)
   ============================================================ */

:root {
    --nav-ink: #14231b;
    --acc-archean: #3DC718;
    --acc-acume: #2E7D32;
    --acc-idealis: #00897B;
    --acc-sicsem: #E65100;
    --acc-slate: #46554d;
    --mega-radius: 18px;
    --mega-shadow: 0 24px 60px -18px rgba(13, 40, 24, 0.28), 0 6px 18px rgba(13, 40, 24, 0.08);
}

.page-template-products {
    overflow: visible;
}

/* ---------- top-level fit & polish (10 items) ---------- */
.headerWrap {
    .menuWrap {
        >ul {
            >li {
                margin-right: 17px;

                >a {
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: .01em;
                    transition: color .3s;
                }

                .toggleBtn {
                    margin-left: 5px;

                    i {
                        transition: transform .35s cubic-bezier(.34, 1.4, .54, 1);
                        display: inline-block;
                    }
                }

                &:hover,
                &:focus-within {
                    >a {
                        color: var(--acc-acume);
                    }

                    .toggleBtn i {
                        transform: rotate(180deg);
                    }
                }

                >a:focus-visible {
                    outline: 2px solid var(--acc-acume);
                    outline-offset: 4px;
                    border-radius: 4px;
                }
            }
        }
    }
}

/* ---------- mega menu: approved 3-column card design ---------- */
.headerWrap .menuWrap>ul>li.megaNav {

    .megaMenuWrap {
        /* kill header.css magic offsets at every breakpoint */
        right: auto !important;
        left: 50% !important;
        min-width: 0 !important;
        width: min(1150px, calc(100vw - 48px));
        top: calc(100% + 10px);
        transform: translate(-50%, 16px);
        padding: 14px 34px !important;
        border-radius: var(--mega-radius);
        border: 1px solid rgba(13, 40, 63, 0.08);
        background: #fff;
        box-shadow: var(--mega-shadow);
        transition: transform .38s cubic-bezier(.22, .9, .32, 1), opacity .3s, visibility .3s;

        /* hover bridge so the cursor can travel to the panel */
        &::before {
            content: "";
            position: absolute;
            top: -14px;
            left: 0;
            width: 100%;
            height: 14px;
        }

        .mega-inner {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr) !important;
            grid-auto-flow: row;
            gap: 0;

            /* full-height column hairlines, as in the approved design */
            &::before,
            &::after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                width: 1px;
                background: #e8eef4;
            }

            &::before {
                left: 33.333%;
            }

            &::after {
                left: 66.666%;
            }
        }

        .mega-inner .mega-col {
            padding: 26px 28px 24px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .35s ease, transform .45s cubic-bezier(.22, .9, .32, 1);

            /* approved layout — Bromine Derivatives fills the right column */
            &:nth-child(1) {
                grid-column: 1;
                grid-row: 1;
                border-bottom: 1px solid #e8eef4;
            }

            &:nth-child(2) {
                grid-column: 2;
                grid-row: 1;
                border-bottom: 1px solid #e8eef4;
            }

            &:nth-child(3) {
                grid-column: 3;
                grid-row: 1 / span 3;
            }

            &:nth-child(4) {
                grid-column: 1;
                grid-row: 2;
                border-bottom: 1px solid #e8eef4;
            }

            &:nth-child(5) {
                grid-column: 2;
                grid-row: 2;
                border-bottom: 1px solid #e8eef4;
            }

            &:nth-child(6) {
                grid-column: 1;
                grid-row: 3;
            }

            .mega-col-box {
                display: flex;
                align-items: flex-start;
                gap: 16px;

                /* neutralise the old header.css column divider */
                ul::after {
                    display: none;
                }

                .megaColIcon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 54px;
                    height: 54px;
                    min-width: 54px;
                    border-radius: 50%;
                    background: #e9f2fc;
                    color: #0a6fd0;
                    font-size: 19px;
                    padding: 10px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        filter: brightness(0) saturate(100%) invert(32%) sepia(20%) saturate(5793%) hue-rotate(196deg) brightness(91%) contrast(105%);
                    }
                }

                .megaColBody {
                    flex: 1;
                    min-width: 0;
                }

                .mega-col-title {
                    display: inline-block;
                    position: relative;
                    font-size: 16.5px;
                    font-weight: 700;
                    letter-spacing: .01em;
                    color: #0a6fd0;
                    padding: 4px 0 10px;
                    border-bottom: 0;
                    transition: color .3s;

                    &::after {
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        width: 34px;
                        height: 2px;
                        border-radius: 2px;
                        background: #9fc4e8;
                    }

                    &:hover {
                        color: #04213F;
                    }
                }

                ul {
                    margin-top: 12px;
                    height: auto;

                    li {
                        position: relative;
                        padding-left: 16px;

                        &:not(:last-child) {
                            margin-bottom: 10px;
                        }

                        &::before {
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 9px;
                            width: 5px;
                            height: 5px;
                            border-radius: 50%;
                            background: #0a6fd0;
                        }

                        a {
                            font-size: 14.5px;
                            line-height: 1.5;
                            display: block;
                            padding: 2px 0;
                            color: #33413a;
                            transition: color .25s;

                            &:hover {
                                color: #048FEA;
                            }
                        }
                    }
                }
            }
        }
    }

    /* reveal + staggered cards */
    &:hover .megaMenuWrap,
    &:focus-within .megaMenuWrap {
        transform: translate(-50%, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    &:hover .mega-inner .mega-col,
    &:focus-within .mega-inner .mega-col {
        opacity: 1;
        transform: translateY(0);
    }

    &:hover .mega-inner .mega-col:nth-child(1) {
        transition-delay: .02s;
    }

    &:hover .mega-inner .mega-col:nth-child(2) {
        transition-delay: .07s;
    }

    &:hover .mega-inner .mega-col:nth-child(3) {
        transition-delay: .12s;
    }

    &:hover .mega-inner .mega-col:nth-child(4) {
        transition-delay: .17s;
    }

    &:hover .mega-inner .mega-col:nth-child(5) {
        transition-delay: .22s;
    }

    &:hover .mega-inner .mega-col:nth-child(6) {
        transition-delay: .27s;
    }

    &:hover .mega-inner .mega-col:nth-child(7) {
        transition-delay: .32s;
    }
}



/* Hidden + revealed states, written at full ancestor depth so they
   outrank header.css's deeply nested transforms in both directions.
   Keeps the panel centred through the whole open/close animation. */
.headerWrap .headerInner .rightWrap .menuWrap>ul>li.megaNav>.megaMenuWrap {
    transform: translate(-50%, 16px) !important;
}

.headerWrap .headerInner .rightWrap .menuWrap>ul>li.megaNav:is(:hover, :focus-within)>.megaMenuWrap {
    transform: translate(-50%, 0) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* investor mega menu */
.headerWrap .headerInner {
    position: relative;

    .rightWrap .menuWrap>ul>li {
        &:nth-child(5) {
            position: static;

            .megaMenuWrap {
                position: absolute;
                top: 100%;
                right: 0;
                left: auto;
                width: 100%;
                max-width: 1440px;
                min-width: 0;
                background: #fff;
                border-radius: 15px;
                padding: 10px 12px 20px;
                box-shadow: 0 0 40px rgba(0, 0, 0, .125);
                transform: translate(-50%, 16px);
                visibility: hidden;
                opacity: 0;
                transition: .4s;

                .mega-inner {
                    display: block;
                    columns: 4;
                    column-gap: 0;
                    column-rule: 1px solid #e8eef4;

                    &::before,
                    &::after {
                        content: none;
                    }

                    .mega-col {
                        padding: 22px 28px;
                        position: relative;
                        break-inside: avoid;
                        -webkit-column-break-inside: avoid;

                        &:nth-child(2),
                        &:nth-child(5) {
                            border-bottom: none;
                        }

                        &:nth-child(6) {
                            border-bottom: 1px solid #e8eef4;
                        }

                        &::after {
                            content: none;
                        }

                        &:hover .megaColIcon {
                            background: #0a6fd0;
                            color: #fff;
                        }

                        .mega-col-box {
                            display: flex;
                            gap: 14px;
                            align-items: flex-start;

                            .megaColIcon {
                                flex: 0 0 auto;
                                width: 46px;
                                height: 46px;
                                min-width: 46px;
                                border-radius: 50%;
                                background: #e9f2fc;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                color: #0a6fd0;
                                font-size: 17px;
                                transition: .4s;
                                /* display: none !important; */

                                svg {
                                    width: 17px;
                                    height: 17px;
                                }
                            }

                            .megaColBody {
                                min-width: 0;
                                flex: 1;

                                .mega-col-title {
                                    display: block;
                                    font-size: 16.5px;
                                    font-weight: 700;
                                    color: #0a6fd0;
                                    line-height: 1.25;
                                    padding-bottom: 0;
                                    border-bottom: 0;

                                    &::after {
                                        content: "";
                                        display: block;
                                        width: 34px;
                                        height: 2px;
                                        background: #9fc4e8;
                                        margin-top: 10px;
                                    }
                                }

                                ul {
                                    margin-top: 14px;
                                    height: auto;

                                    li {
                                        position: relative;
                                        padding-left: 14px;
                                        transition: .4s;

                                        &:not(:last-child) {
                                            margin-bottom: 10px;
                                        }

                                        &::before {
                                            content: "";
                                            position: absolute;
                                            top: 9px;
                                            left: 0;
                                            width: 5px;
                                            height: 5px;
                                            border-radius: 50%;
                                            background: #0a6fd0;
                                            transition: .4s;
                                        }

                                        &>a {
                                            display: block;
                                            font-size: 14.5px;
                                            line-height: 1.4;
                                            color: #33413a;
                                            transition: .4s;
                                        }

                                        &:hover {
                                            padding-left: 22px;

                                            &::before {
                                                width: 12px;
                                                height: 1px;
                                                border-radius: 0;
                                                top: 11px;
                                            }

                                            &>a {
                                                color: #0a6fd0;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &:hover .megaMenuWrap {
                visibility: visible;
                opacity: 1;
            }

            @media (max-width: 1440px) {
                .megaMenuWrap {
                    width: calc(100vw - 40px);
                    right: -16px;

                    .mega-inner .mega-col {
                        padding: 20px;
                    }
                }
            }

            @media (max-width: 1180px) {
                .megaMenuWrap .mega-inner {
                    columns: 2;
                }
            }

            @media (max-width: 991px) {
                position: relative;

                .megaMenuWrap {
                    position: static;
                    width: auto;
                    max-width: none;
                    box-shadow: none;
                    border-radius: 0;
                    padding: 0;
                    transform: none;
                    opacity: 1;
                    visibility: visible;

                    .mega-inner {
                        columns: 1;
                        column-rule: none;

                        .mega-col {
                            padding: 16px 0;
                            border-bottom: 1px solid #e8eef4;
                        }
                    }
                }
            }
        }
    }
}

/* narrow desktop nav: two columns, natural flow */
@media (max-width: 1100px) {
    .headerWrap .menuWrap>ul>li.megaNav .megaMenuWrap .mega-inner {
        grid-template-columns: repeat(2, 1fr) !important;

        &::before {
            left: 50%;
        }

        &::after {
            display: none;
        }
    }

    .headerWrap .menuWrap>ul>li.megaNav .megaMenuWrap .mega-inner .mega-col {
        grid-column: auto !important;
        grid-row: auto !important;
        border-bottom: 1px solid #e8eef4 !important;
    }
}

/* ---------- header search trigger ---------- */
.headerSrch .srchTrigger {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s ease, transform .25s ease;

    i {
        font-size: 15px;
        color: #04213F;
        transition: color .3s ease;
    }

    &:hover {
        background: #048FEA;
        transform: translateY(-1px);

        i {
            color: #fff;
        }
    }

    &:focus-visible {
        outline: 2px solid var(--acc-acume);
        outline-offset: 3px;
    }
}

/* ---------- premium search overlay ---------- */
body.srchLock {
    overflow: hidden;
}

.srchOverlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13vh 24px 40px;
    background: rgba(4, 23, 39, 0.58);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;

    &.active {
        opacity: 1;
        visibility: visible;

        .srchPanel {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .srchClose {
        position: absolute;
        top: 26px;
        right: 30px;
        width: 46px;
        height: 46px;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 17px;
        cursor: pointer;
        transition: all .28s ease;

        &:hover {
            background: #fff;
            color: #04213F;
            transform: rotate(90deg);
        }
    }

    .srchPanel {
        width: min(720px, 100%);
        transform: translateY(22px);
        opacity: 0;
        transition: transform .4s cubic-bezier(.22, .9, .32, 1), opacity .3s ease;
    }

    .srchBox {
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        border-radius: 16px;
        padding: 0 22px;
        height: 64px;
        box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.55);

        >i {
            color: #048FEA;
            font-size: 17px;
        }

        .srchInput {
            flex: 1;
            height: 100%;
            border: 0;
            outline: 0;
            font-size: 17px;
            color: #04213F;
            background: transparent;

            &::placeholder {
                color: #9db2c6;
            }
        }

        .srchSpin {
            width: 18px;
            height: 18px;
            min-width: 18px;
            border-radius: 50%;
            border: 2px solid #dbe7f0;
            border-top-color: #048FEA;
            opacity: 0;
            transition: opacity .2s ease;
        }

        &.loading .srchSpin {
            opacity: 1;
            animation: srchSpin .7s linear infinite;
        }
    }

    .srchHint {
        margin: 14px 4px 0;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.72);

        kbd {
            display: inline-block;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 6px;
            padding: 1px 8px;
            font-size: 12px;
            color: #fff;
            font-family: inherit;
        }
    }

    .srchResults {
        margin-top: 14px;
        max-height: 44vh;
        overflow-y: auto;
        border-radius: 16px;

        &.open {
            background: #fff;
            padding: 10px;
            box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.5);
        }

        .srchResHead {
            font-size: 11.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #8aa3b8;
            padding: 6px 12px 8px;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        li[role="option"] {
            border-radius: 12px;

            a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 12px 14px;
                text-decoration: none;
            }

            .resTitle {
                color: #04213F;
                font-size: 15px;
                font-weight: 600;
            }

            .resBadge {
                flex-shrink: 0;
                font-size: 10.5px;
                font-weight: 700;
                letter-spacing: .05em;
                text-transform: uppercase;
                background: #E6F5FF;
                color: #048FEA;
                border-radius: 14px;
                padding: 4px 10px;
            }

            &:hover,
            &.isActive {
                background: #f2f9f4;

                .resTitle {
                    color: #2E7D32;
                }
            }
        }

        .srchEmpty {
            text-align: center;
            padding: 24px 20px 10px;
            color: #56728c;
            font-size: 14.5px;

            i {
                font-size: 34px;
                color: #cddbe7;
                display: block;
                margin-bottom: 10px;
            }
        }

        .srchAllLink {
            display: block;
            text-align: center;
            padding: 12px;
            margin: 6px 2px 2px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #048FEA;
            text-decoration: none;

            &:hover {
                background: #eef7ff;
            }
        }
    }

    .srchQuick {
        margin-top: 30px;

        .srchQuickTitle {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .04em;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 12px;
        }

        ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        a {
            display: inline-block;
            border: 1.5px solid rgba(255, 255, 255, 0.32);
            background: rgba(255, 255, 255, 0.10);
            border-radius: 24px;
            padding: 9px 20px 6px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            transition: all .22s ease;

            &:hover {
                background: #fff;
                color: #04213F;
                border-color: #fff;
                transform: translateY(-1px);
            }
        }
    }
}

@keyframes srchSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .srchOverlay {
        padding: 9vh 14px 24px;

        .srchClose {
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
        }

        .srchBox {
            height: 56px;
            padding: 0 16px;
        }

        .srchHint {
            display: none;
        }
    }
}

/* ---------- nav density per breakpoint ---------- */
@media (max-width: 1500px) {
    .headerWrap .menuWrap>ul>li {
        margin-right: 14px;
    }

    .headerWrap .menuWrap>ul>li>a {
        font-size: 15px;
    }
}

@media (max-width: 1360px) {
    .headerWrap .menuWrap>ul>li>a {
        font-size: 14.5px;
    }

    .headerWrap .menuWrap>ul>li.megaNav {
        .megaMenuWrap {
            padding: 14px 20px !important;

            .mega-inner .mega-col {
                padding: 26px 20px 24px;
            }
        }
    }

    .headerWrap .menuWrap>ul>li.megaNav .megaMenuWrap {
        width: calc(90vw - 40px);
    }
}

@media (max-width: 1240px) {
    .headerWrap .menuWrap>ul>li {
        margin-right: 11px;
    }

    .headerWrap .menuWrap>ul>li>a {
        font-size: 13.5px;
    }

    .headerWrap .menuWrap>ul>li.megaNav .megaMenuWrap .mega-col {
        padding: 2px 12px;
    }
}

@media (max-width: 1100px) {
    .headerWrap .menuWrap>ul>li {
        margin-right: 9px;
    }
}

@media (max-width: 640px) {
    #archSearch {
        padding: 80px 12px 20px;

        .srchHint {
            display: none;
        }
    }

    .srchOverlay {
        .srchBox {
            .srchInput {
                font-size: 15px;
                padding: 0;
            }
        }
    }
}

/* ---------- product data tables (identity + technical specs) ---------- */
.pdChemSec table,
.pdSpecSec table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 34px -14px rgba(13, 40, 24, 0.18);
    font-size: 15px;

    thead th,
    tr:first-child th,
    tr:first-child td:only-child {
        background: linear-gradient(120deg, #0B6E3A, #0E8547);
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: .07em;
        text-transform: uppercase;
        text-align: left;
        padding: 15px 22px;
    }

    thead th {
        border: 0;
    }

    tbody tr:nth-child(odd) td {
        background: #fbfdfb;
    }

    tbody tr:nth-child(even) td {
        background: #f2f8f2;
    }

    td {
        padding: 14px 22px;
        color: #24332b;
        border: 0;
        border-bottom: 1px solid #e8f1ea;
        vertical-align: top;
    }

    tbody tr:last-child td {
        border-bottom: 0;
    }

    td:first-child {
        font-weight: 600;
        color: #14231b;
        width: 42%;
    }
}

/* ---------- product page: properties grid (About values component,
   rebuilt as a scoped 4×2 grid) ---------- */
.single-product .valuesSec .valuesRow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 34px;
}

.single-product .valuesSec .valuesItem {
    position: relative;
    padding: 4px 0;

    .valuesTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .valuesTitle {
        font-size: 17px;
        font-weight: 700;
        color: var(--green, #3DC718);
        margin: 0;
    }

    .valuesDesc {
        font-size: 14.5px;
        line-height: 1.7;
        color: #4d6072;

        p {
            margin: 0;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
        }
    }

    /* every row now carries an icon (image or themed FA glyph) */
    .valuesIcon {
        display: flex;
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: background .3s ease;

        img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            transition: filter .3s ease;
        }

        i {
            font-size: 18px;
            color: #048FEA;
            transition: color .3s ease;
        }
    }

    /* hover: full inversion — blue chip, white glyph */
    &:hover .valuesIcon {
        background: #048FEA;

        i {
            color: #fff;
        }

        img {
            filter: brightness(0) invert(1);
        }
    }

    /* separator system recreating the designed About grid */
    &::after {
        content: "";
        position: absolute;
        top: 6px;
        right: -15px;
        width: 1px;
        height: calc(100% - 12px);
        background: linear-gradient(180deg, transparent, #dfe9e2, transparent);
    }

    &:nth-child(4n)::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .single-product .valuesSec .valuesRow {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .single-product .valuesSec .valuesItem {
        padding: 4px 15px 20px;

        &:nth-child(5),
        &:nth-child(6) {
            &::before {
                display: block;
            }
        }

    }

    .single-product .valuesSec .valuesItem:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .single-product .valuesSec .valuesRow {
        grid-template-columns: repeat(1, 1fr);
    }

    .single-product .valuesSec .valuesItem .valuesIcon {
        margin-bottom: 0;
    }

    .single-product .valuesSec .valuesItem {
        padding: 20px 0px;

        .valuesDesc {
            text-align: center;

            p {
                text-align: center;
            }
        }

        &::before {
            display: block !important;
        }
    }

    .page-template-products {
        overflow-x: hidden;
    }
}

@media (max-width: 640px) {
    .single-product .valuesSec .valuesRow {
        grid-template-columns: 1fr;
    }

    .single-product .valuesSec .valuesItem::after {
        display: none;
    }
}

/* ---------- product certifications: equal-height badge cards ---------- */
.pdCertGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.pdCertCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 168px;
    background: #fff;
    border: 1px solid #e3efe6;
    border-radius: 14px;
    padding: 24px 18px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;

    &:hover {
        transform: translateY(-4px);
        border-color: rgba(61, 199, 24, 0.4);
        box-shadow: 0 16px 34px rgba(13, 40, 24, 0.12);
    }

    &:not(:has(.pdCertIcon))::before {
        content: "\f559";
        font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "FontAwesome";
        font-weight: 900;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e8f5e9;
        color: #2E7D32;
        font-size: 19px;
    }

    .pdCertIcon {
        width: 52px;
        height: 52px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .pdCertLabel {
        font-weight: 700;
        color: #14231b;
        font-size: 15.5px;
    }

    .pdCertSub {
        color: #567262;
        font-size: 13px;
    }
}

/* ============================================================
   SEARCH RESULTS PAGE (search.php)
   ============================================================ */
.srchPageSec {
    .srchPageHead {
        max-width: 760px;
        margin: 0 0 38px;
    }

    .srchPageCount {
        font-size: 17px;
        color: #56728c;
        margin: 0 0 18px;

        strong {
            color: #04213F;
        }
    }

    .srchPageForm {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        border: 1.5px solid #dbe7f0;
        border-radius: 14px;
        padding: 6px 6px 6px 20px;
        box-shadow: 0 6px 24px rgba(4, 33, 63, 0.06);
        transition: border-color .25s ease, box-shadow .25s ease;

        &:focus-within {
            border-color: #048FEA;
            box-shadow: 0 8px 30px rgba(4, 143, 234, 0.14);
        }

        i {
            color: #048FEA;
            font-size: 16px;
        }

        input {
            flex: 1;
            border: 0;
            outline: 0;
            background: transparent;
            font-size: 16.5px;
            color: #04213F;
            padding: 10px 0;

            &::placeholder {
                color: #9db2c6;
            }
        }

        button {
            border: 0;
            cursor: pointer;
            background: linear-gradient(120deg, #048FEA, #3DC718);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: 10px;
            transition: transform .2s ease, box-shadow .2s ease;

            &:hover {
                transform: translateY(-1px);
                box-shadow: 0 8px 18px rgba(4, 143, 234, 0.3);
            }
        }
    }

    .srchPageList {
        max-width: 860px;
    }

    .srchPageItem {
        border: 1px solid #e3ecf3;
        border-radius: 14px;
        padding: 22px 26px;
        margin-bottom: 16px;
        background: #fff;
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;

        &:hover {
            transform: translateY(-2px);
            border-color: rgba(4, 143, 234, 0.35);
            box-shadow: 0 12px 28px rgba(4, 33, 63, 0.08);
        }
    }

    .srchPageItemTop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .srchPageTitle {
        font-size: 19px;
        line-height: 1.35;
        margin: 0;

        a {
            color: #04213F;
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: #048FEA;
        }
    }

    .srchPageBadge {
        flex-shrink: 0;
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: #048FEA;
        background: #E6F5FF;
        border-radius: 20px;
        padding: 5px 12px;
        white-space: nowrap;
    }

    .srchPageItem[data-type="product"] .srchPageBadge {
        color: #2E7D32;
        background: #E5F8E2;
    }

    .srchPageItem[data-type="our-industry"] .srchPageBadge {
        color: #E65100;
        background: #FFF3E0;
    }

    .srchPageItem[data-type="our-news"] .srchPageBadge,
    .srchPageItem[data-type="post"] .srchPageBadge {
        color: #6A1B9A;
        background: #F3E5F5;
    }

    .srchPageExcerpt {
        color: #56728c;
        font-size: 15px;
        line-height: 1.7;
        margin: 10px 0 12px;
    }

    .srchPageUrl {
        font-size: 13px;
        color: #8aa3b8;
        text-decoration: none;
        word-break: break-all;

        &:hover {
            color: #048FEA;
        }
    }

    .srchPageEmpty {
        text-align: center;
        max-width: 560px;
        margin: 30px auto 0;

        i {
            font-size: 46px;
            color: #cddbe7;
            margin-bottom: 18px;
        }

        h2 {
            font-size: 26px;
            color: #04213F;
            margin-bottom: 12px;
        }

        p {
            color: #56728c;
            font-size: 16px;
            line-height: 1.7;
        }
    }

    .srchPageChips {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 24px;

        a {
            border: 1.5px solid #dbe7f0;
            border-radius: 24px;
            padding: 9px 20px;
            font-size: 14.5px;
            font-weight: 600;
            color: #04213F;
            text-decoration: none;
            transition: all .2s ease;

            &:hover {
                border-color: #3DC718;
                color: #2E7D32;
                background: #F3FBF1;
            }
        }
    }
}

@media (max-width: 640px) {
    .srchPageSec .srchPageForm {
        padding-left: 14px;

        button {
            padding: 11px 18px;
        }
    }

    .srchPageSec .srchPageItemTop {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================================
   NEWS DETAIL (single-our-news.php)
   ============================================================ */
.newsDtlSec {
    .newsDtlWrap {
        max-width: 780px;
        margin: 0 auto;
    }

    .newsDtlMeta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 22px;
    }

    .newsDtlDate {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #E6F5FF;
        color: #048FEA;
        font-weight: 600;
        font-size: 14px;
        border-radius: 24px;
        padding: 8px 16px;
    }

    .newsDtlTag {
        background: #E5F8E2;
        color: #2E7D32;
        font-weight: 600;
        font-size: 14px;
        border-radius: 24px;
        padding: 8px 16px;
    }

    .newsDtlFigure {
        border-radius: 18px;
        overflow: hidden;
        margin: 0 0 26px;
        max-height: 440px;
        box-shadow: 0 16px 40px rgba(4, 33, 63, 0.10);

        img {
            width: 100%;
            height: auto;
            max-height: 440px;
            object-fit: cover;
            display: block;
        }
    }

    .newsDtlBody {
        p {
            font-size: 17px;
            line-height: 1.85;
            color: #3c4c5c;
            margin-bottom: 18px;
        }

        p:last-child {
            margin-bottom: 0;
        }

        >p:first-child {
            font-size: 19.5px;
            line-height: 1.75;
            color: #1d2f3f;
            font-weight: 500;
        }
    }

    .newsDtlActions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
        border-top: 1px solid #e3ecf3;
        padding-top: 26px;

        .cmnBtn i {
            margin-left: 6px;
            font-size: 13px;
        }

        .newsBackBtn {
            background: transparent;
            color: #04213F;
            border: 1.5px solid #cddbe7;

            i {
                margin: 0 6px 0 0;
            }

            &:hover {
                border-color: #048FEA;
                color: #048FEA;
                background: #F4FAFF;
            }
        }
    }

    .newsRelated {
        margin-top: 74px;
    }

    .newsRelatedHead {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .newsDtlSec {
        .newsDtlFigure {
            border-radius: 12px;
        }

        .newsDtlBody>p:first-child {
            font-size: 17.5px;
        }

        .newsDtlBody p {
            font-size: 16px;
            line-height: 1.8;
        }

        .newsRelated {
            margin-top: 50px;
        }
    }
}

/* ============================================================
   SECTION RHYTHM NORMALIZATION
   ============================================================ */
/* Contact page: two white sections stacked — collapse to a single
   standard gap instead of a double-height void. */
.contactGetInTouchSec+.contactDetailsSec {
    padding-top: 0;
}

/* Align hand-tuned listings with the sitewide customBlock scale. */
.industryListingSec.customBlock {
    padding-top: 100px;
    padding-bottom: 100px;
}

.openPositionsSec.customBlock {
    padding-bottom: 100px;
}

@media (max-width: 1399px) {
    .industryListingSec.customBlock {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .openPositionsSec.customBlock {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .industryListingSec.customBlock {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .openPositionsSec.customBlock {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .industryListingSec.customBlock {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .openPositionsSec.customBlock {
        padding-bottom: 50px;
    }
}

/* Markets We Serve (industry panel): the section had padding-bottom:0,
   leaving the tab strip flush against the section edge — restore the
   standard rhythm on both product pages and home. */
.industrySec.customBlock {
    padding-bottom: 100px !important;
}

@media (max-width: 1399px) {
    .industrySec.customBlock {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 991px) {
    .industrySec.customBlock {
        padding-bottom: 60px !important;
    }
}

@media (max-width: 575px) {
    .industrySec.customBlock {
        padding-bottom: 50px !important;
    }
}

/* chemical identity: breathing room between the data table and its CTAs */
.pdChemSec .pdChemBtns {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* home hero title is an h1 — neutralize UA/base heading spacing */
h1.bannerHeading {
    margin: 0;
}

/* ---------- unified inner banner: animated gradient + chemistry ---------- */
.pageBannerWrap.innerBanner,
.industryBanner {
    position: relative;
    overflow: hidden;
    background: #F4FBFF !important;

    /* aurora gradient layer (transform-animated, oversized) */
    &::before {
        content: "";
        position: absolute;
        inset: -45%;
        z-index: 0;
        pointer-events: none;
        background:
            radial-gradient(42% 55% at 24% 32%, rgba(4, 143, 234, 0.20), transparent 70%),
            radial-gradient(46% 60% at 76% 62%, rgba(61, 199, 24, 0.18), transparent 72%),
            radial-gradient(36% 50% at 58% 22%, rgba(0, 137, 123, 0.13), transparent 70%),
            radial-gradient(30% 45% at 40% 78%, rgba(4, 143, 234, 0.10), transparent 68%);
        animation: bannerAurora 24s ease-in-out infinite alternate;
        will-change: transform;
    }

    /* chemistry elements layer */
    &::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.13;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20140%20140%27%3E%3Cpath%20d%3D%27M70%2018%20114%2044%20114%2096%2070%20122%2026%2096%2026%2044Z%27%20fill%3D%27none%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Ccircle%20cx%3D%2770%27%20cy%3D%2718%27%20r%3D%279%27%20fill%3D%27%233DC718%27%2F%3E%3Ccircle%20cx%3D%27114%27%20cy%3D%2744%27%20r%3D%279%27%20fill%3D%27%23048FEA%27%2F%3E%3Ccircle%20cx%3D%27114%27%20cy%3D%2796%27%20r%3D%279%27%20fill%3D%27%233DC718%27%2F%3E%3Ccircle%20cx%3D%2770%27%20cy%3D%27122%27%20r%3D%279%27%20fill%3D%27%23048FEA%27%2F%3E%3Ccircle%20cx%3D%2726%27%20cy%3D%2796%27%20r%3D%279%27%20fill%3D%27%233DC718%27%2F%3E%3Ccircle%20cx%3D%2726%27%20cy%3D%2744%27%20r%3D%279%27%20fill%3D%27%23048FEA%27%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20120%2070%27%3E%3Cline%20x1%3D%2734%27%20y1%3D%2735%27%20x2%3D%2786%27%20y2%3D%2735%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Ccircle%20cx%3D%2730%27%20cy%3D%2735%27%20r%3D%2717%27%20fill%3D%27%23048FEA%27%2F%3E%3Ccircle%20cx%3D%2790%27%20cy%3D%2735%27%20r%3D%2713%27%20fill%3D%27%233DC718%27%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20130%20110%27%3E%3Cline%20x1%3D%2765%27%20y1%3D%2738%27%20x2%3D%2730%27%20y2%3D%2780%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Cline%20x1%3D%2765%27%20y1%3D%2738%27%20x2%3D%27100%27%20y2%3D%2780%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Ccircle%20cx%3D%2765%27%20cy%3D%2730%27%20r%3D%2715%27%20fill%3D%27%2300897B%27%2F%3E%3Ccircle%20cx%3D%2727%27%20cy%3D%2784%27%20r%3D%2711%27%20fill%3D%27%23048FEA%27%2F%3E%3Ccircle%20cx%3D%27103%27%20cy%3D%2784%27%20r%3D%2711%27%20fill%3D%27%23048FEA%27%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20110%2080%27%3E%3Cline%20x1%3D%2725%27%20y1%3D%2755%27%20x2%3D%2760%27%20y2%3D%2725%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Cline%20x1%3D%2760%27%20y1%3D%2725%27%20x2%3D%2792%27%20y2%3D%2752%27%20stroke%3D%27%2304213F%27%20stroke-width%3D%273%27%2F%3E%3Ccircle%20cx%3D%2722%27%20cy%3D%2758%27%20r%3D%2710%27%20fill%3D%27%233DC718%27%2F%3E%3Ccircle%20cx%3D%2760%27%20cy%3D%2722%27%20r%3D%2713%27%20fill%3D%27%23048FEA%27%2F%3E%3Ccircle%20cx%3D%2794%27%20cy%3D%2755%27%20r%3D%279%27%20fill%3D%27%2300897B%27%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position:
            right 6% top 26%,
            left 5% bottom 18%,
            right 17% bottom 12%,
            left 15% top 22%;
        background-size: 140px auto, 116px auto, 100px auto, 96px auto;
        animation: bannerMolDrift 30s ease-in-out infinite alternate;
        will-change: transform;
    }

    .container {
        position: relative;
        z-index: 1;
    }
}

/* the industries banner had its own photo layer — retire it */
.industryBannerBg {
    display: none;
}

@keyframes bannerAurora {
    from {
        transform: translate(-2%, -1%) rotate(-3deg) scale(1);
    }

    to {
        transform: translate(3%, 2%) rotate(4deg) scale(1.1);
    }
}

@keyframes bannerMolDrift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-14px, 10px);
    }
}

@media (max-width: 767px) {

    .pageBannerWrap.innerBanner,
    .industryBanner {
        &::after {
            opacity: 0.11;
            background-size: 92px auto, 78px auto, 0 0, 64px auto;
            background-position:
                right 4% top 24%,
                left 4% bottom 14%,
                right 20% bottom 10%,
                left 12% top 78%;
        }
    }
}

@media (prefers-reduced-motion: reduce) {

    .pageBannerWrap.innerBanner,
    .industryBanner {

        &::before,
        &::after {
            animation: none;
        }
    }
}

/* ============================================================
   PRODUCT SECTIONS — animated molecule backdrops
   ============================================================ */
.pdSpecSec {
    position: relative;
    overflow: hidden;

    >.container {
        position: relative;
        z-index: 1;
    }
}

.pdChemSec,
.pdSpecSec {
    .molDeco {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .molFloat {
        position: absolute;
        opacity: 0.14;
        will-change: transform;

        svg {
            width: 100%;
            height: auto;
            display: block;
        }
    }

    .molFloat--1 {
        width: 120px;
        top: 14%;
        left: 4%;
        animation: molDriftA 22s ease-in-out infinite alternate;
    }

    .molFloat--2 {
        width: 130px;
        bottom: 12%;
        right: 5%;
        animation: molDriftB 26s ease-in-out infinite alternate;
    }

    .molFloat--3 {
        width: 150px;
        top: 9%;
        right: 9%;
        opacity: 0.11;
        animation: molSpinDrift 48s linear infinite;
    }

    .molFloat--4 {
        width: 110px;
        bottom: 16%;
        left: 7%;
        animation: molDriftB 30s ease-in-out infinite alternate-reverse;
    }

    .molDot {
        position: absolute;
        border-radius: 50%;
        opacity: 0.16;
        animation: molPulse 6s ease-in-out infinite;
    }

    .molDot--1 {
        width: 10px;
        height: 10px;
        background: #048FEA;
        top: 26%;
        left: 18%;
    }

    .molDot--2 {
        width: 14px;
        height: 14px;
        background: #3DC718;
        top: 62%;
        left: 10%;
        animation-delay: 1.2s;
    }

    .molDot--3 {
        width: 8px;
        height: 8px;
        background: #00897B;
        top: 20%;
        right: 24%;
        animation-delay: 2.4s;
    }

    .molDot--4 {
        width: 12px;
        height: 12px;
        background: #048FEA;
        bottom: 24%;
        right: 16%;
        animation-delay: 3.1s;
    }

    .molDot--5 {
        width: 9px;
        height: 9px;
        background: #3DC718;
        bottom: 38%;
        right: 30%;
        animation-delay: 4.3s;
    }
}

/* mirrored composition for the specs section */
.molDeco--alt {
    .molFloat--1 {
        left: auto;
        right: 4%;
        top: 16%;
    }

    .molFloat--2 {
        right: auto;
        left: 5%;
        bottom: 14%;
    }

    .molFloat--3 {
        right: auto;
        left: 9%;
        top: 10%;
    }

    .molFloat--4 {
        left: auto;
        right: 7%;
        bottom: 18%;
    }

    .molDot--1 {
        left: auto;
        right: 18%;
    }

    .molDot--2 {
        left: auto;
        right: 10%;
    }

    .molDot--3 {
        right: auto;
        left: 24%;
    }

    .molDot--4 {
        right: auto;
        left: 16%;
    }

    .molDot--5 {
        right: auto;
        left: 30%;
    }
}

@keyframes molDriftA {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(14px, -24px) rotate(7deg);
    }
}

@keyframes molDriftB {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-16px, 20px) rotate(-8deg);
    }
}

@keyframes molSpinDrift {
    from {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(-14px);
    }

    to {
        transform: rotate(360deg) translateY(0);
    }
}

@keyframes molPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.16;
    }

    50% {
        transform: scale(1.45);
        opacity: 0.30;
    }
}

@media (max-width: 767px) {

    .molFloat--3,
    .molFloat--4,
    .molDot--3,
    .molDot--5 {
        display: none;
    }

    .molFloat--1 {
        width: 84px;
    }

    .molFloat--2 {
        width: 92px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .molFloat,
    .molDot {
        animation: none;
    }
}

/* ============================================================
   MOBILE HARDENING
   ============================================================ */
/* Sticky header: background/z-index must snap instantly. */
.headerWrap.isSticky {
    transition: box-shadow .3s ease, padding .3s ease;
}

/* Product data tables: scroll instead of clipping on narrow screens. */
@media (max-width: 767px) {

    .pdChemSec table,
    .pdSpecSec table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pdChemSec table td,
    .pdChemSec table th,
    .pdSpecSec table td,
    .pdSpecSec table th {
        min-width: 120px;
    }
}

/* Career: job filter bar had a fixed 430px width — wider than phones. */
@media (max-width: 600px) {
    .openPositionsSec .jobFilterRow {
        width: 100%;
    }
}

/* The floating GET IN TOUCH side tab overlaps content on phones. */
@media (max-width: 575px) {

    .getTouchBtnDiv,
    .getTouchBtnDiv .getTouchBtn {
        display: none;
    }

    .whatsappBtnDiv {
        display: none;
    }
}

/* ============================================================
   PRODUCTS LISTING — premium cards inside the classic
   sidebar + grid layout (right column redesign only)
   ============================================================ */
.productListingSec {
    .productListGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .plCard {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #fff;
        border: 1px solid #e3ecf3;
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;

        &:hover {
            transform: translateY(-6px);
            border-color: rgba(4, 143, 234, 0.35);
            box-shadow: 0 22px 48px rgba(4, 33, 63, 0.12);

            .plCardMedia img {
                transform: scale(1.06);
            }

            .plCardLink {
                color: #048FEA;

                i {
                    transform: translateX(5px);
                }
            }
        }
    }

    .plCardMedia {
        position: relative;
        overflow: hidden;
        background: linear-gradient(160deg, #EAF6FF 0%, #F6FBFF 55%, #EFFAEC 100%);
        aspect-ratio: 16 / 10;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
    }

    .plCardChip {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 1;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(6px);
        color: #04213F;
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        border-radius: 20px;
        padding: 6px 13px 2px;
        box-shadow: 0 4px 12px rgba(4, 33, 63, 0.10);
    }

    .plCardBody {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 20px 22px 22px;
    }

    .plCardTitle {
        font-size: 20px;
        font-weight: 700;
        color: #04213F;
        margin: 0 0 9px;
    }

    .plCardDesc {
        font-size: 14px;
        line-height: 1.65;
        color: #56728c;
        margin: 0 0 14px;
    }

    .plCardApps {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;

        span {
            background: #F1F7FB;
            border: 1px solid #E2EDF5;
            color: #3d5a75;
            font-size: 11.5px;
            font-weight: 600;
            border-radius: 14px;
            padding: 3px 10px;
        }

        .plCardAppsMore {
            background: #E5F8E2;
            border-color: #d2efcd;
            color: #2E7D32;
        }
    }

    .plCardLink {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14.5px;
        font-weight: 700;
        color: #04213F;
        transition: color .25s ease;

        i {
            font-size: 12.5px;
            transition: transform .25s ease;
        }
    }

    /* flagship (first) card — media + body side by side across both columns */
}


@media (max-width: 767px) {
    .productListingSec .productListGrid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HOME — all products together (3+3 grid)
   ============================================================ */
.productSec {
    .homeProdGrid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
        margin-top: 38px;
    }

    .homeProdCard {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        background: #fff;
        border: 1px solid #dfeaf2;
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;

        &:hover {
            transform: translateY(-6px);
            border-color: rgba(4, 143, 234, 0.35);
            box-shadow: 0 20px 44px rgba(4, 33, 63, 0.13);

            .homeProdFigure img {
                transform: scale(1.06);
            }

            .homeProdLink {
                color: #048FEA;

                i {
                    transform: translateX(5px);
                }
            }
        }
    }

    .homeProdFigure {
        position: relative;
        margin: 0;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: linear-gradient(160deg, #EAF6FF, #F3FBF0);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
    }

    .homeProdChip {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 1;
        background: rgba(255, 255, 255, 0.93);
        color: #04213F;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        border-radius: 16px;
        padding: 5px 12px;
        box-shadow: 0 3px 10px rgba(4, 33, 63, 0.10);
        display: none;
    }

    .homeProdTitle {
        font-size: 19.5px;
        line-height: 1.35;
        font-weight: 700;
        color: #04213F;
        margin: 16px 20px 8px;
    }

    .homeProdLink {
        margin: auto 20px 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14.5px;
        font-weight: 700;
        color: #2c4257;
        transition: color .25s ease;

        i {
            font-size: 12.5px;
            transition: transform .25s ease;
        }
    }

    .homeProdCta {
        text-align: center;
        margin-top: 38px;

        .commonBtn {
            display: inline-flex;
            width: auto;
            min-width: 0;
            padding: 14px 38px;
        }
    }
}

@media (max-width: 991px) {
    .productSec .homeProdGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .productSec .homeProdCard {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .productSec .homeProdGrid {
        grid-template-columns: 1fr;
    }

    .productSec .homeProdTitle {
        font-size: 17px;
        margin: 14px 16px 6px;
    }

    .productSec .homeProdLink {
        margin: auto 16px 16px;
    }
}

/* ============================================================
   STAT COUNTERS — solid premium numerals
   ============================================================ */
.countWrap {
    margin-top: 46px;

    .countItem {
        display: flex;
        align-items: center;

        h3 {
            -webkit-text-stroke: 0 transparent !important;
            color: #04213F !important;
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1;
            gap: 12px;

            a {
                font-size: 42px;
            }

            .counter {
                color: inherit;
            }

            .countText {
                font-size: 15px;
                line-height: 1.4;
                font-weight: 600;
                color: #56728c;
                max-width: 150px;
                white-space: normal;
            }
        }

        &::after {
            content: "";
            width: 1px;
            height: 58%;
            background: linear-gradient(180deg, transparent, #c3d9e9, transparent);
        }
    }
}

@media (max-width: 1366px) {
    .countWrap {
        .countItem {
            h3 {
                font-size: 36px;

                a {
                    font-size: 36px;
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .countWrap {
        .countItem {
            h3 {
                font-size: 32px;

                a {
                    font-size: 32px;
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .countWrap .countItem h3 {
        font-size: 34px;
        gap: 10px;

        a {
            font-size: 34px;
        }
    }

    .countWrap .countItem h3 .countText {
        font-size: 13.5px;
    }
}

@media (max-width: 640px) {
    .countWrap .countItem {
        padding: 12px 14px;

        &:nth-child(2n)::after {
            display: none;
        }
    }

    .countWrap .countItem h3 {
        font-size: 28px;

        a {
            font-size: 28px;
        }
    }
}

/* ============================================================
   TEAM SLIDER — equal card heights (Swiper-based)
   ============================================================ */
.teamSliderWrap {
    .swiper-wrapper {
        align-items: stretch;
    }

    .swiper-slide {
        height: auto;
        display: flex;
    }

    .teamCard {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .teamFigure {
        flex: 0 0 auto;
        margin: 0;
        aspect-ratio: 1 / 1;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .teamInfo {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 96px;
    }
}

/* team members without a photo: dignified initials tile */
.teamFigure--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(60% 80% at 30% 25%, rgba(4, 143, 234, 0.16), transparent 70%),
        radial-gradient(70% 80% at 75% 75%, rgba(61, 199, 24, 0.14), transparent 72%),
        #F2F9FE;

    span {
        font-size: 58px;
        font-weight: 800;
        letter-spacing: 0.04em;
        color: rgba(4, 33, 63, 0.34);
    }
}

/* ============================================================
   ESG — three pillar cards: equal heights, locked image ratio
   ============================================================ */
.wwdSec {
    .row {
        align-items: stretch;
    }

    .row>[class*="col-"] {
        display: flex;
        margin-bottom: 24px;
    }

    .esgBox {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .esgImg {
        aspect-ratio: 16 / 10;
        overflow: hidden;
        flex: 0 0 auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* keyBox cards (business/infra/ESG/CSR): body copy tone */
.keyBox .keyBoxTxt p {
    color: #4d6072;
    line-height: 1.7;
}

/* keyBox cards everywhere: fill the column so every card in a row
   matches the tallest — 24px row gap preserved */
.keyBox {
    height: calc(100% - 24px);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

/* Export Infrastructure counters: equal box heights, centered content */
.portSec .infraCountWrap {
    align-items: stretch;

    .infraCountItem {
        display: flex;
        margin-bottom: 20px;
    }

    .infraCountInner {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ============================================================
   BUSINESS PAGES — profile section polish
   ============================================================ */
.businessPageSec {
    .row {
        align-items: center;
    }

    /* fact panel: depth gradient, softer dividers, seated shadow */
    .overviewBoxWrap {
        background: linear-gradient(135deg, #0A9BF5 0%, #0470C7 100%);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 20px 46px rgba(4, 84, 150, 0.22);
    }

    .overviewBoxItem {
        padding: 22px 26px;
        border-right-color: rgba(255, 255, 255, 0.22);
        border-bottom-color: rgba(255, 255, 255, 0.22);
        transition: background .25s ease;

        .overviewBoxPara {
            height: 170px;
            overflow-y: auto;
            padding-right: 15px;

            p {
                font-weight: 400 !important;
            }

        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #0159a1;
        }

        &:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        p:first-child {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .03em;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 6px;
        }

        p:last-child {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.45;
            color: #fff;
            margin-bottom: 0;
        }
    }
}

.businessPageSec .overviewText .txtWrap {
    font-size: 16px;
    line-height: 1.85;
    color: #3c4c5c;

    p {
        font-size: inherit;
        line-height: inherit;
        color: inherit;
        margin-bottom: 16px;
    }

    p:last-child {
        margin-bottom: 0;
    }
}

/* ============================================================
   ESG PAGE — pillar stat alignment + Sustainability Goals polish
   ============================================================ */
.wwdSec .esgBox .esgContent .esgList {
    ul li {
        display: grid;
        grid-template-columns: 118px 1fr;
        gap: 14px;
        align-items: start;
        padding: 11px 0;

        &:not(:last-child) {
            border-bottom: 1px solid #edf3f8;
        }
    }

    .esgListLeft {
        font-weight: 800;
        font-size: 16.5px;
        line-height: 1.3;
        color: #048FEA;
    }

    .esgListRight {
        font-size: 14px;
        line-height: 1.6;
        color: #56728c;
    }
}

.commitmentSec {
    .row {
        align-items: center;
    }

    .commitmentImg {
        figure {
            margin: 0;
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            box-shadow: 0 18px 42px rgba(4, 33, 63, 0.13);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }

    .commitmentext p {
        font-size: 16px;
        line-height: 1.8;
        color: #3c4c5c;
    }
}

@media (max-width: 991px) {
    .commitmentSec .commitmentImg {
        margin-bottom: 26px;
    }
}

/* investor sidebar: active group's list visible on load; arrow rotates */
.investorSideBar .sidebarMenu {
    li.active .catMenu {
        display: block;
    }

    li.hasCatMenu .sideHeading {
        cursor: pointer;
    }

    li.hasCatMenu .sideHeading::after {
        transition: transform .3s ease;
    }

    li.hasCatMenu.active .sideHeading::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* ============================================================
   TOP MANAGEMENT — two-leader feature section
   ============================================================ */
.topMgmtSec {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #10307E 0%, #14399A 45%, #0E2A6E 100%);

    .tmDeco {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            radial-gradient(38% 55% at 12% 18%, rgba(4, 143, 234, 0.30), transparent 70%),
            radial-gradient(42% 60% at 88% 78%, rgba(61, 199, 24, 0.16), transparent 72%);
    }

    .container {
        position: relative;
        z-index: 1;
    }

    .headingWrap {
        margin-bottom: 46px;

        .subH {
            color: rgba(255, 255, 255, 0.82);
        }

        .secH {
            color: #fff;

            span {
                color: #6FD0FF;
            }

            span::after {
                display: none;
            }
        }
    }

    .tmGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        gap: 30px;
        max-width: 1060px;
        margin: 0 auto;
    }

    .tmCard {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 22px;
        overflow: hidden;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;

        &:hover {
            transform: translateY(-6px);
            border-color: rgba(111, 208, 255, 0.55);
            box-shadow: 0 26px 54px rgba(2, 14, 46, 0.45);

            .tmMedia img {
                transform: scale(1.04);
            }
        }
    }

    .tmMedia {
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #0d266b;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform .55s ease;
        }
    }

    .tmBody {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 26px 28px 24px;
    }

    /* no decorative quote glyph — the attribution below makes it read as a quote */
    .tmQuote {
        position: relative;
        margin: 0 0 22px;

        p {
            margin: 0;
            font-size: 17px;
            line-height: 1.75;
            color: #fff;
            font-weight: 500;
        }
    }

    .tmBio {
        margin: 0 0 22px;
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.82);
    }

    .tmMeta {
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .tmName {
        margin: 0 0 4px;
        font-size: 19px;
        font-weight: 700;
        color: #fff;
    }

    .tmRole {
        font-size: 14px;
        font-weight: 600;
        color: #6FD0FF;
    }
}

@media (max-width: 767px) {
    .topMgmtSec {
        .tmGrid {
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .tmBody {
            padding: 22px 22px 20px;
        }

        .tmQuote p {
            font-size: 16px;
        }
    }
}

/* stat strip: non-numeric values (e.g. the exchange listing) are not animated */
.countWrap .countItem h3 .counterStatic {
    color: inherit;
    font: inherit;
}

/* client review: make the ESG / community headings read stronger */
.esgSec .secH,
.communitySec .secH,
.wwdSec .secH {
    font-size: clamp(30px, 3.4vw, 46px);
}

/* ============================================================
   INVESTOR DOCUMENT VIEWER
   ============================================================ */
.pdfViewer {
    position: fixed;
    inset: 0;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 3vw;
    background: rgba(4, 23, 39, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;

    &.active {
        opacity: 1;
        visibility: visible;

        .pdfViewerPanel {
            transform: translateY(0);
        }
    }

    .pdfViewerPanel {
        width: min(1100px, 100%);
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 34px 80px -20px rgba(0, 0, 0, 0.55);
        transform: translateY(18px);
        transition: transform .35s cubic-bezier(.22, .9, .32, 1);
    }

    .pdfViewerBar {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-bottom: 1px solid #e9f1f7;
        background: #f8fbfd;
    }

    .pdfViewerTitle {
        flex: 1;
        font-size: 15.5px;
        font-weight: 700;
        color: #04213F;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pdfViewerBtn {
        flex-shrink: 0;
        font-size: 13.5px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        padding: 9px 16px;
        transition: all .2s ease;
    }

    .pdfViewerTab {
        color: #04213F;
        border: 1.5px solid #dbe7f0;

        &:hover {
            border-color: #048FEA;
            color: #048FEA;
        }
    }

    .pdfViewerDl {
        color: #fff;
        background: linear-gradient(120deg, #048FEA, #3DC718);

        &:hover {
            box-shadow: 0 8px 18px rgba(4, 143, 234, 0.3);
            color: #fff;
        }
    }

    .pdfViewerClose {
        flex-shrink: 0;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 50%;
        background: #eef4f8;
        color: #56728c;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        transition: all .2s ease;

        &:hover {
            background: #04213F;
            color: #fff;
        }
    }

    .pdfViewerFrame {
        flex: 1;
        width: 100%;
        border: 0;
        background: #f4f7f9;
    }
}

@media (max-width: 900px) {
    .pdfViewer .pdfViewerBar {
        flex-wrap: wrap;
    }

    .pdfViewer .pdfViewerTitle {
        width: 100%;
        white-space: normal;
    }
}

/* ESG report cards: paired actions (view in IR + download) */
.susReport .reportCardBtns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.susReport .reportCard {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================================
   HOME — Vision / Values / Strategy (approved three-card design)
   Icon disc over a hairline rule, centred title, copy, and a
   photo filling the base. Cards share the row height; the photo
   absorbs the difference in text length.
   ============================================================ */
.homeSec_1 .mvTriGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.homeSec_1 .mvTriCard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3ecf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(4, 33, 63, 0.07);
    transition: transform .3s ease, box-shadow .3s ease;

    &:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 44px rgba(4, 33, 63, 0.11);
    }

    .mvTriHead {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px 0;
        text-align: center;

        .mvTriIcon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: linear-gradient(135deg, #048FEA, #0470C7);
            box-shadow: 0 10px 22px rgba(4, 143, 234, 0.25);

            /* supplied icons are white line art */
            img {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }
        }

        .mvTriRule {
            display: block;
            width: 74%;
            height: 1px;
            margin: 12px auto 0;
            background: #cfdeeb;
        }

        .mvTriTitle {
            margin: 16px 0 12px;
            font-size: 21px;
            font-weight: 800;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: #04213F;
        }
    }

    .mvTriBody {
        padding: 0 28px 0px 26px;

        .mvTriBodyInner {
            overflow: hidden;
            max-height: 120px;
            transition: all 0.5s;
        }

        &.is-clamped {
            .mvTriBodyInner {
                position: relative;
                -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
                mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            }
        }

        p {
            margin: 0;
            font-size: 15px;
            line-height: 1.8;
            color: #41525f;

            strong {
                position: relative;
                display: inline-block;
                padding-left: 24px;

                &::before {
                    content: '';
                    position: absolute;
                    background-image: url(../../images/tick.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    width: 15px;
                    height: 15px;
                    top: 2px;
                    left: 0;
                }
            }
        }

        p+p {
            margin-top: 10px;
        }

        .mvTriMore {
            display: block;
            text-align: center;
            margin: 10px auto 20px;
            padding: 0;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 700;
            color: #048FEA;
            cursor: pointer;
            transition: color .3s ease;
        }
    }

    .mvTriPhoto {
        margin: 0;
        flex: 1 1 auto;
        min-height: 210px;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 200px;
            top: 0px;
            left: 0;
            background: linear-gradient(to bottom, #fff, rgb(255 255 255 / 53%), rgb(255 255 255 / 0%), transparent);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }

    /* per-card disc colours, matching the approved reference */
    &:nth-child(2) .mvTriHead .mvTriIcon {
        background: linear-gradient(135deg, #3DC718, #2ea312);
        box-shadow: 0 10px 22px rgba(61, 199, 24, 0.25);
    }

    &:nth-child(3) .mvTriHead .mvTriIcon {
        background: linear-gradient(135deg, #8A54D6, #6a3ab8);
        box-shadow: 0 10px 22px rgba(122, 77, 184, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {

    .mvTriBodyInner,
    .mvTriMore::after {
        transition: none;
    }
}

@media (max-width: 1600px) {
    .homeSec_1 .mvTriCard {
        .mvTriHead {
            padding: 20px 20px 0;

            .mvTriIcon {
                width: 60px;
                height: 60px;
            }
        }

        .mvTriBody {
            p {
                font-size: 14px;
            }
        }
    }
}

@media (max-width: 991px) {
    .homeSec_1 .mvTriGrid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .homeSec_1 .mvTriCard .mvTriPhoto {
        flex: 0 0 auto;
        height: 260px;
        min-height: 0;

        &::after {
            height: 140px;
        }
    }
}

@media (max-width: 575px) {
    .homeSec_1 .mvTriCard .mvTriPhoto {
        height: auto;
    }

    .homeSec_1 .mvTriCard {
        .mvTriBody {
            padding: 0 15px 20px;
            text-align: center;

            p {
                line-height: 1.4;
            }
        }
    }
}

/* ============================================================
   INVESTOR RELATIONS — written pages (Board of Directors,
   Board Committees). Renders inside .investorContWrap alongside
   the existing PDF-list pages.
   ============================================================ */
.investorSec .investorRich {
    .irLead {
        margin: 0 0 26px;
        font-size: 15.5px;
        line-height: 1.85;
        color: #41525f;
    }

    .irSubH {
        margin: 40px 0 18px;
        font-size: 20px;
        font-weight: 700;
        color: #04213F;
        padding-left: 14px;
        border-left: 4px solid #048FEA;
        line-height: 1.3;
    }

    .irNote {
        margin: 26px 0 0;
        padding: 16px 18px;
        background: #f4f8fb;
        border-radius: 10px;
        font-size: 13.5px;
        line-height: 1.8;
        color: #5a7285;

        em {
            color: #7d90a1;
            font-style: normal;
        }
    }
}

/* --- director cards --- */
.investorSec .bodGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    &.bodGrid--kmp {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 30px;
    }

    .bodCirImg,
    .bodPhoto {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
        box-shadow: rgba(4, 33, 63, 0.09) 0px 14px 30px;
        border-color: rgba(4, 143, 234, 0.4);
        border-radius: 12px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            border-radius: 12px;
        }
    }
}

.investorSec .bodCard {
    position: relative;
    background: #fff;
    border: 1px solid #dfeaf2;
    border-radius: 14px;
    padding: 22px 20px 20px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(4, 33, 63, 0.05);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;

    &:hover {
        border-color: rgba(4, 143, 234, 0.4);
        box-shadow: 0 14px 30px rgba(4, 33, 63, 0.09);
        transform: translateY(-3px);
    }

    .bodInitials {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 58px;
        height: 58px;
        margin: 0 auto 14px;
        border-radius: 50%;
        background: linear-gradient(135deg, #048FEA, #0470C7);
        color: #fff;
        font-size: 19px;
        font-weight: 700;
        letter-spacing: .5px;
        box-shadow: 0 8px 18px rgba(4, 143, 234, 0.28);
    }

    .bodName {
        margin: 0 0 6px;
        font-size: 16.5px;
        font-weight: 700;
        color: #04213F;
        line-height: 1.35;
    }

    .bodRole {
        margin: 0;
        font-size: 13.5px;
        line-height: 1.6;
        color: #5a7285;
    }

    .bodDin {
        margin: 10px 0 0;
        font-size: 12px;
        letter-spacing: .4px;
        color: #8aa3b8;
    }

    /* category tint on the initials disc */
    &.bodCard--chair .bodInitials {
        background: linear-gradient(135deg, #04213F, #0a3c6e);
    }

    &.bodCard--indep .bodInitials {
        background: linear-gradient(135deg, #3DC718, #2ea312);
        box-shadow: 0 8px 18px rgba(61, 199, 24, 0.26);
    }

    &.bodCard--kmp .bodInitials {
        background: linear-gradient(135deg, #00897B, #00695C);
        box-shadow: 0 8px 18px rgba(0, 137, 123, 0.26);
    }
}

/* --- committee cards --- */
.investorSec .cmteGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.investorSec .cmteCard {
    background: #fff;
    border: 1px solid #dfeaf2;
    border-radius: 14px;
    padding: 22px 22px 18px;
    box-shadow: 0 8px 22px rgba(4, 33, 63, 0.05);
    transition: border-color .3s ease, box-shadow .3s ease;

    &:hover {
        border-color: rgba(4, 143, 234, 0.4);
        box-shadow: 0 14px 30px rgba(4, 33, 63, 0.09);
    }

    .cmteName {
        margin: 0 0 10px;
        font-size: 17px;
        font-weight: 700;
        color: #04213F;
        line-height: 1.35;
    }

    .cmteTor {
        margin: 0 0 16px;
        font-size: 13.5px;
        line-height: 1.75;
        color: #5a7285;
    }

    .cmteList {
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid #eaf1f7;

        li {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 11px 0 11px 16px;
            border-bottom: 1px solid #eaf1f7;
            position: relative;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 17px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #c6d8e6;
            }

            &.isChair::before {
                background: #048FEA;
            }

            &:last-child {
                border-bottom: 0;
            }
        }
    }

    .cmteMember {
        font-size: 14.5px;
        font-weight: 600;
        color: #04213F;
    }

    .cmteRole {
        font-size: 12.5px;
        color: #7d90a1;
    }
}

@media (max-width: 1199px) {
    .investorSec .bodGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countWrap {
        .countItem {
            justify-content: center;

            h3 {
                width: 100%;
                max-width: 100%;
                display: block;
                text-align: center;

                .countText {
                    width: 100%;
                    max-width: 100%;
                    display: block;
                    text-align: center;
                    margin-top: 8px;

                    br {
                        display: none;
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {

    .investorSec .cmteGrid {
        grid-template-columns: 1fr;
    }

    .investorSec .investorRich .irSubH {
        font-size: 18px;
    }
}

/* ============================================================
   CSR / SUSTAINABILITY stat strips
   These hold "value — label" facts rather than short numerals, so the
   label is allowed to wrap under the value instead of forcing the h3
   past the width of its column. Scoped with --facts so the numeric
   strips on Home / About / ESG / Careers are untouched.
   ============================================================ */
.countWrap--facts {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    .countItem {
        flex: 1 1 0;
        min-width: 0;
        padding-right: 22px;
        align-items: flex-start;

        h3 {
            flex-wrap: wrap;
            min-width: 0;
            align-items: baseline;
            row-gap: 6px;

            .counterStatic {
                font-size: 34px;
                overflow-wrap: anywhere;
            }

            .countText {
                max-width: 100%;
            }
        }
    }
}

@media (max-width: 991px) {
    .countWrap--facts {
        gap: 18px;

        .countItem {
            flex: 1 1 44%;

            h3 .counterStatic {
                font-size: 28px;
            }
        }
    }

    .countWrap .countItem h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .countWrap--facts {
        gap: 14px;

        .countItem {
            flex: 1 1 100%;
            width: 100%;
            padding: 12px 0;

            &::after {
                display: none;
            }
        }
    }
}

/* ============================================================
   BOARD OF DIRECTORS — "Know More" button + profile popup
   ============================================================ */
.investorSec .bodCard {
    display: flex;
    flex-direction: column;

    .bodMore {
        margin: 16px auto 0;
        padding: 9px 20px 5px;
        border: 1px solid rgba(4, 143, 234, 0.45);
        border-radius: 999px;
        background: #fff;
        color: #048FEA;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .2px;
        cursor: pointer;
        transition: background .25s ease, color .25s ease, border-color .25s ease;

        &:hover,
        &:focus-visible {
            background: linear-gradient(135deg, #048FEA, #0470C7);
            border-color: transparent;
            color: #fff;
        }
    }

    /* the profile lives in the card but is only shown inside the popup */
    .bodProfile {
        display: none;
    }
}

/* push the button to the bottom so cards in a row line up */
.investorSec .bodCard .bodDin {
    margin-bottom: auto;
    display: none;
}

body.bodModalOpen {
    overflow: hidden;
}

.bodModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 33, 63, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .26s ease;

    &.isOpen {
        opacity: 1;
    }

    &[hidden] {
        display: none;
    }
}

.bodModalPanel {
    position: relative;
    width: min(860px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 34px 38px 32px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(4, 33, 63, 0.3);
    transform: translateY(14px) scale(.985);
    transition: transform .3s cubic-bezier(.22, .9, .32, 1);

    .bodModal.isOpen & {
        transform: none;
    }
}

.bodModalClose {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f6fa;
    color: #04213F;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;

    &:hover,
    &:focus-visible {
        background: #048FEA;
        color: #fff;
    }
}

.bodModalBody {
    .bodProfileHead {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 18px;
        padding-bottom: 20px;
        margin-bottom: 22px;
        border-bottom: 1px solid #e6eef5;

        .bodImg,
        .bodPhoto {
            width: 272px;
            height: auto;
            margin: 0 auto;
            border: 1px solid #ccc;
            border-radius: 10px;

            img {
                width: 100%;
                height: 100%;
                border-radius: 10px;
                object-fit: contain;
                object-position: bottom;
            }
        }

        .bodInitials {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #048FEA, #0470C7);
            color: #fff;
            font-size: 21px;
            font-weight: 700;
            box-shadow: 0 8px 18px rgba(4, 143, 234, 0.28);
        }

        h3 {
            margin: 0 0 4px;
            font-size: 22px;
            font-weight: 700;
            color: #04213F;
            line-height: 1.3;
        }

        .bodRole {
            margin: 0;
            font-size: 14.5px;
            color: #5a7285;
        }
    }

    .bodMeta {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin: 0 0 24px;
        padding: 16px 18px;
        background: #f4f8fb;
        border-radius: 12px;

        div {
            margin: 0;
        }

        dt {
            margin: 0 0 3px;
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: #8aa3b8;
        }

        dd {
            margin: 0;
            font-size: 14.5px;
            font-weight: 600;
            color: #04213F;
        }
    }

    .bodBio p {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.8;
        color: #3c4c5c;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .bodDirHead {
        margin: 28px 0 16px;
        padding-left: 13px;
        border-left: 4px solid #048FEA;
        font-size: 17px;
        font-weight: 700;
        color: #04213F;
    }

    .bodDirGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bodDirBlock {
        padding: 16px 18px;
        border: 1px solid #e6eef5;
        border-radius: 12px;

        &:last-child {
            display: none;
        }

        h5 {
            margin: 0 0 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase;
            color: #048FEA;
            line-height: 1.4;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;

            li {
                position: relative;
                padding: 0 0 7px 14px;
                font-size: 13.5px;
                line-height: 1.6;
                color: #3c4c5c;

                &::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 8px;
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background: #c6d8e6;
                }

                &:last-child {
                    padding-bottom: 0;
                }
            }
        }

        .bodNil {
            margin: 0;
            font-size: 13.5px;
            color: #8aa3b8;
        }
    }
}

@media (max-width: 767px) {
    .bodModal {
        padding: 14px;
    }

    .bodModalPanel {
        max-height: 92vh;
        padding: 28px 20px 24px;
    }

    .bodModalBody {
        .bodProfileHead h3 {
            font-size: 19px;
        }

        .bodMeta {
            grid-template-columns: repeat(2, 1fr);
        }

        .bodDirGrid {
            grid-template-columns: 1fr;
        }
    }
}

/* ============================================================
   INFRASTRUCTURE — photo slideshows
   Client: "we can show our infra as slide show, as we have
   shared pictures" / "here also we have so many pictures".
   ============================================================ */
.infraSlider {
    position: relative;

    .infraSliderMain {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(4, 33, 63, 0.13);
    }

    figure {
        margin: 0;
        aspect-ratio: 4 / 3;
        background: #eaf3fa;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* dots sit inside the frame */
    .infraSliderDots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 14px;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            margin: 0 !important;
            border-radius: 999px;
            background: #fff;
            opacity: .55;
            transition: width .3s ease, opacity .3s ease;
        }

        .swiper-pagination-bullet-active {
            width: 22px;
            opacity: 1;
        }
    }

    .infraSliderPrev,
    .infraSliderNext {
        position: absolute;
        top: 50%;
        z-index: 4;
        width: 42px;
        height: 42px;
        transform: translateY(-50%);
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: #04213F;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(4, 33, 63, 0.18);
        transition: background .25s ease, color .25s ease;

        &:hover,
        &:focus-visible {
            background: linear-gradient(135deg, #048FEA, #0470C7);
            color: #fff;
        }
    }

    .infraSliderPrev {
        left: 14px;
    }

    .infraSliderNext {
        right: 14px;
    }
}

@media (max-width: 575px) {
    .infraSlider {

        .infraSliderPrev,
        .infraSliderNext {
            width: 36px;
            height: 36px;
        }

        .infraSliderPrev {
            left: 8px;
        }

        .infraSliderNext {
            right: 8px;
        }
    }
}

/* ============================================================
   AWARDS — real trophy / certificate photography
   The stock landscape shots still fill their frame. Client-supplied
   trophies and certificates are portrait on a white studio background,
   so they get a framed "contain" treatment instead of being stretched.
   ============================================================ */
.awardCard {
    .awardImg {
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* was `fill`, which distorted anything off-ratio */
            display: block;
            transition: transform .5s ease;
        }
    }

    &:hover .awardImg img {
        transform: scale(1.04);
    }

    /* portrait trophies and certificates */
    .awardImg--frame {
        background: linear-gradient(160deg, #ffffff 0%, #f2f7fb 100%);
        border-bottom: 1px solid #e6eef5;

        img {
            object-fit: contain;
            padding: 16px 14px;
            transition: transform .45s ease;
        }
    }

    &:hover .awardImg--frame img {
        transform: scale(1.05);
    }
}

/* ============================================================
   HOME — OUR CSR PROJECTS
   Row inside the Community & CSR green block: title left,
   Read More right (opens the Investor Relations CSR page).
   ============================================================ */
.communitySec .csrProjRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 46px;
    padding-top: 38px;
    border-top: 1px solid rgba(4, 33, 63, 0.1);

    .secH {
        margin: 0;
    }

    .commonBtn {
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .communitySec .csrProjRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 32px;
        padding-top: 26px;
    }
}

/* Breathing room below the Community & CSR green block — the
   Infrastructure section's padding sits inside its background
   image, so without this the two blocks touch. Matches the
   site's 100/60/40 section rhythm. */
.communitySec {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .communitySec {
        margin-bottom: 60px;
    }

    .investorSec .bodGrid {

        .bodCirImg,
        .bodPhoto {
            height: 400px;
        }
    }
}

@media (max-width: 840px) {
    .pdPropGrid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
    }

    .investorSec .bodGrid {

        .bodCirImg,
        .bodPhoto {
            height: 300px;
        }
    }
}

@media (max-width: 767px) {
    .investorSec .bodGrid {

        &.bodGrid--kmp {
            grid-template-columns: 1fr;
        }

        .investorRich {
            .irLead {
                font-size: 14px;
                line-height: 1.5;
            }
        }
    }

    .bodModalBody {
        .bodProfileHead {

            .bodImg,
            .bodPhoto {
                width: 100%;
            }
        }

        .bodBio p {
            font-size: 14px;
        }
    }

    .bodModalClose {
        background: #048FEA;
        color: #fff;
    }
}

@media (max-width: 640px) {
    .investorSec .bodGrid {

        .bodCirImg,
        .bodPhoto {
            height: 240px;
        }

    }

    .bodModalBody {
        .bodProfileHead {

            .bodImg,
            .bodPhoto {
                width: 240px;
            }
        }
    }
}

@media (max-width: 575px) {
    .communitySec {
        margin-bottom: 40px;
    }

    .investorSec .bodGrid {
        grid-template-columns: 1fr;

        .bodCirImg,
        .bodPhoto {
            height: auto;
        }

    }

    .bodModalBody {
        .bodMeta {
            grid-template-columns: 1fr;
        }
    }
}

@media(max-width: 480px) {
    .bodModalClose {
        top: 5px;
        right: 2px;
    }
}

@media (max-width: 420px) {

    .esgSec .secH,
    .communitySec .secH,
    .wwdSec .secH {
        font-size: clamp(26px, 3.4vw, 46px);
    }
}

/* ============================================================
   SLIDER PRE-INIT GUARD
   Slick/Swiper initialise from footer scripts. Until then every
   slide paints stacked at its full size, so a loading page shows
   a column of giant images. Show only the first slide while the
   script is still loading — slick adds .slick-initialized and
   these rules stop applying.
   ============================================================ */
.subsOverviewSlick:not(.slick-initialized)>*:not(:first-child),
.unitSlick:not(.slick-initialized)>*:not(:first-child),
.childProdSlick:not(.slick-initialized)>*:not(:first-child),
.employeeSlick:not(.slick-initialized)>*:not(:first-child),
.pdOtherSwiper:not(.slick-initialized)>*:not(:first-child) {
    display: none;
}

/* the interim single slide never exceeds its initialised height */
.subsOverviewSlick:not(.slick-initialized) .subsOverviewImg img,
.unitSlick:not(.slick-initialized) .unitImg img {
    width: 100%;
    object-fit: cover;
}

/* Board of Directors — photograph variant of the initials disc.
   Same footprint, so the grid is unchanged when photos arrive. */
.investorSec .bodCard .bodPhoto {
    display: block;
}

.bodModalBody .bodProfileHead .bodPhoto {
    display: block;
}

.investorSec .bodCard .bodPhoto {
    box-shadow: 0 10px 24px rgba(4, 33, 63, 0.2);
}
/* ---- Career apply CTA (replaces general CV form) 2.4.4 ---- */
.careerGetInSec .applyCtaInner { padding: 10px 4px; }
.careerGetInSec .applyCtaRow { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 14px; }
.careerGetInSec .applyCtaTitle { margin: 0; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.18; font-weight: 700; text-transform: uppercase; color: #111; }
.careerGetInSec .applyCtaTitle em { font-style: normal; background: linear-gradient(transparent 62%, rgba(101, 191, 91, .28) 62%); }
.careerGetInSec .applyCtaBtn { flex-shrink: 0; }
@media (max-width: 575px) {
    .careerGetInSec .applyCtaRow { justify-content: flex-start; margin-top: 10px; }
}

/* full-width apply CTA card 2.4.5 */
.careerGetInSec .careerGetInWrap .formWrap { width: 100%; }

/* ---- Footer connect band: LET'S CONNECT truly centred (2.4.6) ---- */
.footerConnect .footerConnectRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
}
.footerConnect .footerConnectRow > [class*="col-"]:first-child {
    grid-column: 1;
    justify-self: start;
    width: auto;
    max-width: none;
    padding: 0 0 0 clamp(20px, 3.5vw, 64px);
}
.footerConnect .footerConnectRow .footerConnectRgt {
    grid-column: 2;
    justify-self: center;
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}
@media (max-width: 991px) {
    .footerConnect .footerConnectRow { grid-template-columns: 1fr; row-gap: 18px; }
    .footerConnect .footerConnectRow > [class*="col-"]:first-child,
    .footerConnect .footerConnectRow .footerConnectRgt { grid-column: 1; justify-self: start; }
}
