html { overflow-x: clip; }            /* kill horizontal scrollbar from full-bleed sliders */
/* The web Noto Sans does not bold the Indian Rupee sign (U+20B9). Wrap each
   rupee glyph in <span class="rs"> so it uses a local font that bolds it,
   inheriting the surrounding weight. */
.rs { font-family: Arial, 'Segoe UI', sans-serif; }
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    color: #222;
    overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-family: 'Playfair Display', serif;
}
p {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none !important;
    font-size: 16px;
}

a:hover {
    text-decoration: none !important;
}

p {
    font-size: 16px;
    line-height: 24px;
}

.my-sidenav {
    display: none;
}

img { display: block; max-width: 100%; }

/* ============================================================
   PRELOADER — centred logo + horizontal progress bar + counter
   ============================================================ */
.preloader {
    position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; }
.preloader-logo { width: 130px; height: auto; display: block; }
.preloader-bar {
    position: relative; overflow: hidden;
    width: 220px; height: 2px; margin-top: 30px;
    background: #e6e6e6; border-radius: 2px;
}
.preloader-fill {
    position: absolute; top: 0; left: 0; height: 100%; width: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    transition: width .25s ease;
}
.preloader-num {
    margin-top: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: .5px;
    color: #8a8a8a;
}

/* ============================================================
   HEADER
   ============================================================ */
:root {
    --header-bg:     rgba(255, 255, 255, 0.6);
    --header-border: rgba(0, 0, 0, 0.06);
    --header-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    --text-primary:  #1a1a1a;
    --text-secondary:#555555;
    --divider:       rgba(0, 0, 0, 0.18);
    --hover-bg:      rgba(0, 0, 0, 0.06);
    --brand-purple:  #975ea7;
    --brand-blue:    #006db7;
}

.header-fixed {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .4s ease;
}
/* hidden when scrolling down, slides back in on scroll up */
.header-fixed.header-hidden {
    transform: translateY(-160%);
}

.site-header {
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
    transition: box-shadow .35s ease;
}
.header-fixed.sticky .site-header {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}
.header-left { display: flex; align-items: center; gap: 18px; }

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 46px; width: auto; }

.header-divider { width: 1px; height: 46px; background: var(--divider); flex-shrink: 0; }
.header-title { display: flex; flex-direction: column; gap: 3px; }
.company-name {
    font-size: 15px; font-weight: 600; color: var(--text-primary);
    line-height: 1.3; white-space: nowrap;
}
.report-subtitle {
    font-size: 12.5px; font-weight: 400; color: var(--text-secondary);
    line-height: 1.3; white-space: nowrap;
}

.header-right { display: flex; align-items: center; gap: 10px; }
.search-btn {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    color: var(--text-primary);
    transition: background .2s;
}
.search-btn:hover { background: var(--hover-bg); }
.search-btn svg { width: 22px; height: 22px; }

.menu-btn {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 20px; cursor: pointer;
    background: linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    border: none; color: #fff;
    font-size: 14.5px; font-weight: 500; letter-spacing: .2px;
    transition: opacity .2s, transform .15s;
}
.menu-btn:hover { opacity: .9; transform: scale(1.02); }
.hamburger { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.hamburger span { display: block; width: 16px; height: 1.8px; background: #fff; border-radius: 2px; }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: #f0ebe3;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; transition: opacity 1s ease; }
.hero-video-wrap.is-hidden { opacity: 0; }
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* Banner content container */
.hero-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

/* Right-side heading + CTA + icons */
.banner-right-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 620px;
    max-width: 100%;
    pointer-events: auto;
    opacity: 0;                       /* JS sets opacity to 1 when the video completes */
    transition: opacity 0.8s ease;    /* smooth 0 -> 100% fade-in on completion */
}
.banner-right-panel.is-visible {
    opacity: 1;
}
.brp-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28.6px, 3.3vw, 46.2px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--brand-purple);
    margin: 0 0 28px;
}

/* Read More button (outlined blue) */
.cta-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    transition: background .25s ease, color .25s ease;
    text-decoration: none;
}
.cta-read-more .cta-arrow { display: flex; align-items: center; transition: transform .25s ease; }
.cta-read-more:hover { background: var(--brand-blue); color: #fff; }
.cta-read-more:hover .cta-arrow { transform: translateX(4px); }

/* Sector icons strip — slider */
.brp-icons-bottom {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 32px;
}
.brp-icons-bottom .swiper-wrapper { align-items: flex-start; }
.brp-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: auto;
    border-right: .5px solid #00000020;
}
.brp-icons-bottom .swiper-slide:last-child
{
border-right: none;
}
/* pagination dots — bottom left */
.brp-pagination.swiper-pagination-bullets {
    left: 0; right: auto; bottom: 0;
    width: auto;
    text-align: left;
}
.brp-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #1a1a1a; opacity: .25;
    transition: opacity .25s ease, background .25s ease;
}
.brp-pagination .swiper-pagination-bullet-active {
    background: var(--brand-purple); opacity: 1;
}
.brp-icon-circle {
    display: flex; align-items: center; justify-content: center;
}
.brp-icon-circle img { width: 66px; height: 66px; object-fit: contain; }
.brp-icon-item span {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

/* ============================================================
   MESSAGE FROM THE CHAIRMAN
   ============================================================ */
.chairman-section {
    position: relative;
    background: url('../images/bg.jpeg') center center / cover no-repeat;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: flex-end;
}
.md-section
{
     background: url('../images/bg02.jpeg') center center / cover no-repeat;
}
.chairman-row {
    display: flex;
    align-items: flex-end;
    min-height: 88vh;
}
.chairman-img-col {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    align-items: flex-end;
}
.chairman-img-col img {
    width: 100%;
    height: auto;
    display: block;
}
.chairman-content-col {
    flex: 1;
    align-self: center;
    padding: 0 0 0 50px;
    max-width: 620px;
}
.chairman-label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}
.chairman-title {
    font-family: 'Playfair Display', serif;
    font-size:40px;
    font-weight: 700;
    line-height: 1.12;
    color: #00729c;
    margin-bottom: 22px;
}
.chairman-body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom:30px;
}
.chairman-name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #00729c;
    letter-spacing: 1px;
    margin-bottom:40px;
}

/* Managing Director — same layout mirrored: image right, content left */
.md-section .chairman-row { flex-direction: row-reverse; }
.md-section .chairman-content-col {
    padding: 0 50px 0 0;
    margin-left: auto;
}

/* ============================================================
   ADANI PORTFOLIO OF COMPANIES — scroll-driven slideshow
   ============================================================ */
.pf-scroll {
    position: relative;
    height: 100vh;
    background: #e9f6fc;
}
.pf-stage {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background — base image + sliced "shatter" layer.
   Base and slices use identical sizing so the assembled slices match the
   base pixel-for-pixel (no jump when the transition completes). */
.pf-bgbase {
    position: absolute; inset: 0; z-index: 1;
    background-size: 100% 100%; background-position: 0 0;
}
.pf-bgslices { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.pf-slice {
    position: absolute; left: 0; width: 100%;
    background-repeat: no-repeat;
    visibility: hidden;
    will-change: transform;
}
.pf-scrim {
    position: absolute; inset: 0; z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* UI rail — centered to the same container as the header */
.pf-ui { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.pf-ui-inner {
    position: relative; height: 100%;
    padding-left: 0; padding-right: 0;
}

/* Left title — aligned to header content (16px inside the container) */
.pf-titlebar {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    width: 330px; max-width: 40%;
    pointer-events: auto;
}
.pf-eyebrow {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #fff; margin-bottom: 14px;
}
.pf-gradient {
    font-family: 'Playfair Display', serif;
    font-size:40px;
    font-weight: 700; line-height: 1.15;
   color: #ffffff;
}
.pf-title-cta
{
    margin-top: 28px;
    color: #fff;
    border-color: #fff;
}
.pf-title-cta:hover { background: #fff; color: #006db7; }
/* Right-side figures (per slide) */
.pf-figs {
    position: absolute; right: 16px; top: 50%; z-index: 5;
    transform: translateY(-50%);
    pointer-events: auto;
    display: flex; flex-direction: column;
    min-width: 240px;
}
.pf-figs-fy {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; font-weight: 700; color: #fff;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}
.pf-fig {
    display: flex; flex-direction: column; gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.pf-fig-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; color: rgba(255, 255, 255, 0.85);
}
.pf-fig-val {
    font-family: 'Noto Sans', sans-serif;
    font-size: 42px; font-weight: 800; color: #fff; line-height: 1;
}
.pf-figs-unit {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px; color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Prev / next arrows */
.pf-nav {
    position: absolute; right: 16px; bottom: 40px; z-index: 6;
    display: flex; gap: 14px;
    pointer-events: auto;
}
.pf-arrow {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: transparent; cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pf-arrow:hover { background: #fff; color: #1a1a1a; border-color: #fff; }

/* Fixed beige card */
.pf-cardframe {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: min(430px, 86vw);
    height: 100vh;
    background: #e9f6fc;
}
.pf-card-inner {
    height: 100%;
    padding: 40px 38px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.pf-counter {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px; letter-spacing: 3px; font-weight: 600;
    color: #7a7464; margin-bottom: 0px;
}
.pf-head { margin-bottom: 10px; }
.pf-company {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px; font-weight: 700;
    color: #2b2b2b; margin-bottom: 0px;
}
.pf-largest {
    display: block;;
    font-size: clamp(22px, 2vw, 30px); font-weight: 400;
    color: #2b2b2b; line-height: 1.1;
}
.pf-largest strong { font-weight: 700; font-size:72px; display:block; }

/* Image box — images slide vertically (one over another) */
.pf-imagebox {
    position: relative;
    width: 100%; height: 230px;
    overflow: hidden;
}
.pf-imagebox img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transform: translateY(100%);
    transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.pf-foot { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 0px; }
.pf-sub {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px; color: #4a4a4a; line-height: 1.45;
    max-width: 320px;
}
.pf-fade { will-change: opacity; }
.pf-discover {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 50px; cursor: pointer;
    background: transparent;
    border: 1.5px solid #3a3a3a;
    font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 500;
    color: #2b2b2b;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.pf-discover:hover { background: #2b2b2b; color: #fff; transform: translateY(-2px); }
.pf-arrow { font-style: normal; font-size: 16px; }

/* ============================================================
   STABLE, PREDICTABLE GROWTH — tabs
   ============================================================ */
.growth-section { background: #fff; padding: 80px 0px; }
.industry-section { background: #fff; padding: 20px 0 80px; }
.growth-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700; line-height: 1.15;
    color: #00729c;
    text-align: center;
    margin-bottom: 44px;
}

/* Stacked blocks (headings one below another, separated by a line) */
.growth-blocks { display: flex; flex-direction: column; }
.growth-block { padding: 40px 0; border-bottom: 1px solid #e2e2e2; }
.growth-block:last-child { border-bottom: none; }
.growth-block:first-child { padding-top: 0; }
.growth-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; line-height: 1.2;
    margin-bottom: 26px;
}
/* Heading accent per block */
.growth-block[data-block="0"] .growth-block-title { color: #1b8fc4; }
.growth-block[data-block="1"] .growth-block-title { color: #8e44ad; }
.growth-block[data-block="2"] .growth-block-title { color: #8e44ad; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 22px 34px; border-left: 1px solid #e6e6e6; }
.stat:nth-child(3n+1) { border-left: none; padding-left: 0; }
.stat:nth-child(n+4) { border-top: 1px solid #e6e6e6; padding-top: 30px; }
/* Block 2 (5 stats): full-width divider under the first row (incl. 3.32x) */
.growth-block[data-block="1"] .stat:nth-child(-n+3) { border-bottom: 1px solid #e6e6e6; padding-bottom: 30px; }
.growth-block[data-block="1"] .stat:nth-child(n+4) { border-top: none; padding-top: 30px; }
.growth-block[data-block="1"] .stat:nth-child(5) { border-right: 1px solid #e6e6e6; }
.stat-num {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(30px, 3.4vw, 46px); font-weight: 800;
    color: #3a3a3a; line-height: 1.05; margin-bottom: 12px;
}
.stat-num .cur { font-size: 0.55em; font-weight: 600; vertical-align: 0.18em; }
.stat-num .unit { font-size: 0.42em; font-weight: 500; color: #777; }
.stat-num .unit-lead { font-size: 0.55em; font-weight: 700; }
.stat-purple .stat-num { color: var(--brand-purple); }
.stat-purple .stat-num .unit,
.stat-purple .stat-num .cur { color: var(--brand-purple); opacity: .85; }
.stat-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; color: #444; line-height: 1.4;
}
.stat-note { font-size: 12.5px; color: #9a9a9a; margin-top: 6px; }
.stat-cagr {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; color: #555; margin-top: 14px;
}
.stat-cagr .tri { color: #5fb1a1; font-style: normal; font-size: 12px; margin-right: 4px; }
.stat-cagr b { color: var(--brand-blue); font-weight: 700; }

/* Graph slider (tab 4) — two graphs per slide */
.graph-swiper { width: 100%; }
.graph-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:200px;
    align-items: start;
}
.graph-cell img { width: 100%; height: auto; display: block; }
.graph-swiper-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top:30px;
}
.graph-swiper .swiper-pagination {
    position: static; display: flex; gap: 10px; width: auto;
}
.graph-swiper .swiper-pagination-bullet {
    width: 9px; height: 9px; background: #c9c2d6; opacity: 1;
}
.graph-swiper .swiper-pagination-bullet-active { background: var(--brand-purple); }
.graph-nav { display: flex; gap: 12px; }
.graph-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: transparent; cursor: pointer;
    border: 1.5px solid #c9c2d6; color: #975ea7;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.graph-arrow:hover { background: #975ea7; border-color: #975ea7; color: #fff; }
.graph-arrow.swiper-button-disabled { opacity: .35; cursor: default; }
.graph-arrow.swiper-button-disabled:hover { background: transparent; color: #975ea7; border-color: #c9c2d6; }

/* ============================================================
   AFTERMARKET / INDUSTRY-LEADING — card slider
   ============================================================ */
.aft-section { position: relative; overflow: hidden; }
.aft-bgs { position: absolute; inset: 0; z-index: 0; }
.aft-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .8s ease;
}
.aft-bg.is-active { opacity: 1; }
.aft-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0, 0, 0, 0.5); }

.aft-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 40px;
    min-height: 100vh;
}

/* Left column — heading only */
.aft-left { flex: 1; max-width: 480px; }
.aft-head {
    font-family: 'Playfair Display', serif;
    font-size:40px; font-weight: 700;
    line-height: 1.15; color: #fff;
}

/* Right column — card slider */
.aft-right {
    flex: 1; position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 0 56px;
}
.aft-swiper { width: 100%; max-width: 440px; overflow: hidden; }
.aft-card {
    background: #fff; border-radius: 14px;
    padding: 16px 16px 26px;
}
.aft-card-img { border-radius: 10px; overflow: hidden; }
.aft-card-img img { width: 100%; height: 250px; object-fit: cover; display: block; }
.aft-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 600; color: #1f1f1f;
    margin: 20px 4px 8px;
}
.aft-card-sub {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; color: #666; margin: 0 4px;
}
/* Graph-only card */
.aft-card-graph { padding: 24px 22px; }
.aft-card-graph img { width: 100%; height: auto; display: block; }

/* Pagination bars (hidden) */
.aft-pagination { display: none; }
.aft-pagination .swiper-pagination-bullet {
    width: 28px; height: 4px; border-radius: 2px;
    background: #cfcabf; opacity: 1; transition: background .2s, width .2s;
}
.aft-pagination .swiper-pagination-bullet-active { background: #e8862e; width: 40px; }

/* Arrows flanking the card */
.aft-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.65); cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.15); color: #555;
    transition: background .2s ease, color .2s ease;
}
.aft-arrow:hover { background: #fff; color: #1f1f1f; }
.aft-prev { left: 0; }
.aft-next { right: 0; }

/* ============================================================
   PERFORMANCE HIGHLIGHTS  (scroll-driven split + image reveal)
   Base = mobile/static layout. Desktop animation is in the
   @media (min-width:1026px) block (and driven by js/app.js).
   ============================================================ */
.ph-section { position: relative; background: #fff; padding: 70px 0; overflow: hidden; }

/* Heading words */
.ph-headwrap {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap; text-align: center;
}
.ph-t1, .ph-t2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; line-height: 1.1;
    font-size:40px;
    color: #00729c;
    margin: 0;
}

/* Mobile-only header (above the image) — hidden on tablet/desktop */
.ph-mobile-head { display: none; }

/* Reveal image */
.ph-img { margin: 36px auto 0; max-width: 980px; position: relative; }
.ph-img img { width: 100%; height: auto; display: block; border-radius: 16px; }
/* Dark overlay — fades in (via JS) only after the image is full.
   Sits at section level, above the image (z2) but below the numbers (z6). */
.ph-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); opacity: 0; z-index: 5; pointer-events: none; }

/* Frosted data box */
.ph-databox-wrap { margin: 40px auto 0; }
.ph-databox {
    background: transparent;
    padding: 40px 48px;
}
.ph-eyebrow {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 700; letter-spacing: .3px;
    color: #2a2a2a;
    text-align: center; margin-bottom: 8px;
}
.ph-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700; color: var(--brand-purple);
    text-align: center; margin-bottom: 34px;
}
.ph-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ph-cell { padding: 18px 30px; border-left: 1px solid #e6e6e6; }
.ph-cell:nth-child(3n+1) { border-left: none; padding-left: 0; }
.ph-cell:nth-child(n+4) { border-top: 1px solid #e6e6e6; padding-top: 26px; }
.ph-num {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(28px, 3vw, 40px); font-weight: 800;
    color: var(--brand-purple); line-height: 1.05; margin-bottom: 10px;
}
.ph-num .cur { font-size: 0.6em; font-weight: 600; vertical-align: 0.12em; margin-right: 2px; }
.ph-num .unit { font-size: 0.4em; font-weight: 500; color: #777; }
.ph-label { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #444; line-height: 1.4; }
.ph-box-cta { text-align: center; margin-top: 34px; }

/* ---- Desktop scroll animation states ---- */
@media (min-width: 1026px) {
    .ph-section { padding: 0; }
    .ph-headwrap { height: 100vh; flex-wrap: nowrap; gap: 0; position: relative; z-index: 4; }
    /* Each word fills half the width and hugs the centre with a small equal
       gap — words sit together at the start, then split symmetrically and the
       reveal image grows from the exact centre with equal space on both sides. */
    .ph-t1 { flex: 1; text-align: right; padding-right: 10px; white-space: nowrap; }
    .ph-t2 { flex: 1; text-align: left;  padding-left: 10px;  white-space: nowrap; }
    .ph-img {
        position: absolute; inset: 0; margin: 0; max-width: none;
        height: 100vh; width: 100%; z-index: 2;
        transform: scale(0); opacity: 0;
    }
    .ph-img img { height: 100%; object-fit: cover; object-position: center; border-radius: 0; }
    .ph-databox-wrap {
        position: absolute; left: 50%; transform: translateX(-50%);
        bottom: 40px; width: 100%; margin: 0; z-index: 6; opacity: 0;
    }
    .ph-databox { padding: 36px 90px; }
    /* white text over the darkened image */
    .ph-eyebrow { color: rgba(255, 255, 255, 0.9); }
    .ph-box-title { color: #fff; }
    .ph-num { color: #fff; }
    .ph-num .cur { color: #fff; }
    .ph-num .unit { color: rgba(255, 255, 255, 0.8); }
    .ph-label { color: rgba(255, 255, 255, 0.9); }
    .ph-cell { border-left-color: rgba(255, 255, 255, 0.28); }
    .ph-cell:nth-child(n+4) { border-top-color: rgba(255, 255, 255, 0.28); }
    .ph-box-cta .cta-read-more { color: #fff; border-color: #fff; }
    .ph-box-cta .cta-read-more:hover { background: #fff; color: var(--brand-blue); }
}

/* ============================================================
   ABOUT AEL  (scroll-driven: text rises, image grows fullscreen)
   Base = mobile/static. Desktop animation in @media + js/app.js.
   ============================================================ */
.about-section {
    position: relative;
    background: rgb(239, 234, 225);
    overflow: hidden;
    min-height: 100vh;
}
.about-section > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.about-content {
    width: 50%;
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 70px 50px 70px 0;
}
.about-label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700; color: #2a2a2a;
    margin-bottom: 16px;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.2vw, 40px);
    font-weight: 700; line-height: 1.12; color: #00729c;
    margin: 0 0 20px;
}
.about-body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; line-height: 1.6; color: #444;
    margin: 0 0 28px; max-width: 560px;
}
.about-media { position: absolute; top: 0; right: 0; width: 50%; height: 100%; z-index: 1; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; will-change: transform; }

/* ============================================================
   BUSINESS SEGMENT PERFORMANCE REVIEW  (expanding card slider)
   Active card grows (350 -> 730px); the inner image stays a fixed
   730px so narrow cards show a cropped centre that "opens up".
   Driven by Swiper (virtualTranslate) + manual step — see custom.js.
   ============================================================ */
.bsp-section {
    position: relative;
    background: #fff;                     /* white */
    padding: 80px 0;
    overflow: hidden;
    --bsp-card:    350px;                 /* normal card width  */
    --bsp-active:  730px;                 /* active card width   */
    --bsp-h:       490px;                 /* card height         */
    --bsp-radius:  15px;
}
.bsp-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700; line-height: 1.15;
    color:#00729c;
    text-align: center;
    margin-bottom: 44px;
}
/* Left edge aligned to the header container (logo). Track bleeds off right.
   .bsp-nav shares the same padding so the arrows line up under the card. */
.bsp-colwrap, .bsp-nav { padding-left: 16px; }
@media (min-width: 992px)  { .bsp-colwrap, .bsp-nav { padding-left: calc((100% - 960px)  / 2 + 16px); } }
@media (min-width: 1200px) { .bsp-colwrap, .bsp-nav { padding-left: calc((100% - 1140px) / 2 + 16px); } }
@media (min-width: 1400px) { .bsp-colwrap, .bsp-nav { padding-left: calc((100% - 1320px) / 2 + 16px); } }

/* margin:0 overrides Swiper's default margin:auto (which centred the card) */
.bsp-swiper { position: relative; margin-left: 0; margin-right: 0; max-width: var(--bsp-active); overflow: visible; cursor: grab; }
.bsp-swiper.is-grabbing { cursor: grabbing; }
.bsp-swiper .swiper-slide {
    max-width: var(--bsp-card);
    overflow: hidden;
    transition: max-width 1s ease;       /* matches Swiper speed (1000ms) */
}
.bsp-swiper .swiper-slide.swiper-slide-active { max-width: var(--bsp-active); }

/* Image frame */
.bsp-slide-div {
    position: relative;
    height: var(--bsp-h);
    border-radius: var(--bsp-radius);
    overflow: hidden;
}
.bsp-pic {
    position: absolute; top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: var(--bsp-active); height: 100%;
    overflow: hidden;
    border-radius: var(--bsp-radius);
    transition: all .5s ease;
}
.bsp-pic img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    border-radius: var(--bsp-radius);
    transition: transform .8s ease-in-out;
}
.bsp-slide-div:hover .bsp-pic img { transform: scale(1.12); }
/* bottom scrim so the caption stays legible */
.bsp-slide-div::after {
    content: ""; position: absolute; inset: 0;
    border-radius: var(--bsp-radius);
    background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0) 42%);
    pointer-events: none;
}

/* Caption overlay (bottom-left, italic serif w/ underline) */
.bsp-caption {
    position: absolute; left: 40px; bottom: 46px; width: 80%; z-index: 2;
    pointer-events: none;
}
.bsp-caption h5 {
    color: #fff;
 font-weight: 500;
    font-size: 20px; line-height: 28px;
    margin: 0;
}
.bsp-cap-desc {
    color: rgba(255, 255, 255, .9);
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px; line-height: 1.5;
    margin: 8px 0 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Footer row: arrows pinned left (aligned with the card), Read More centred */
.bsp-footer { position: relative; margin-top: 36px; min-height: 46px; }
.bsp-nav { display: flex; gap: 12px; align-items: center; }
.bsp-more {
    position: absolute; top: 0; bottom: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;                /* let arrow clicks through the centred overlay */
}
.bsp-more .cta-read-more { pointer-events: auto; }
.bsp-arrow {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: transparent; cursor: pointer;
    border: 1.5px solid #c9c2d6; color: var(--brand-purple);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.bsp-arrow:hover { background: var(--brand-purple); border-color: var(--brand-purple); color: #fff; }
.bsp-arrow.swiper-button-disabled { opacity: .35; cursor: default; }
.bsp-arrow.swiper-button-disabled:hover { background: transparent; color: var(--brand-purple); border-color: #c9c2d6; }

/* Side arrows — prev on the left, next on the right, vertically centred on the cards */
.bsp-colwrap { position: relative; }
.bsp-nav { position: static; padding: 0; }
.bsp-prev, .bsp-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 5px 16px rgba(0, 0, 0, .14);
}
/* left arrow sits ON the first card (container offset + 16px inset) */
.bsp-prev { left: 32px; }
@media (min-width: 992px)  { .bsp-prev { left: calc((100% - 960px)  / 2 + 32px); } }
@media (min-width: 1200px) { .bsp-prev { left: calc((100% - 1140px) / 2 + 32px); } }
@media (min-width: 1400px) { .bsp-prev { left: calc((100% - 1320px) / 2 + 32px); } }
.bsp-next { right: 16px; }
.bsp-prev:hover, .bsp-next:hover { background: var(--brand-purple); }

/* ============================================================
   BUSINESS MODEL — EMPOWERED TO DELIVER VALUE  (capital tabs)
   Each panel sets --cap (its accent). The shared bottom block's
   --cap is updated by JS to follow the active tab.
   ============================================================ */
/* --cap-bg = active capital colour (set by JS on the section) */
.bm-section { background: #f4f6f8; padding: 80px 0; --cap-bg: #975ea7; }
.bm-eyebrow {
    display: block; text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #1a1a1a; margin-bottom: 12px;
}
.bm-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700; color:#00729c;
    text-align: center; margin-bottom: 36px;
}

/* Tabs — a coloured indicator slides behind the active tab and, via the two
   curved SVGs, merges smoothly into the coloured body (notched-tab effect). */
.bm-tabs { display: flex; flex-wrap: nowrap; align-items: stretch; justify-content: space-between; gap: 0; position: relative; z-index: 2; }
.bm-select { display: none; }   /* shown only on mobile (replaces the tab row) */
.bm-tab {
    position: relative; z-index: 1;
    background: none; border: none; cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 600; color: #2b2b2b;
    padding: 16px 4px; white-space: nowrap;
    transition: color .25s ease;
    letter-spacing: -0.8px;
}
.bm-tab[data-tab="0"] { padding-left: 14px; }
.bm-tab[data-tab="5"] { padding-right: 14px; }
.bm-tab:not(.is-active):hover { color: #000; }
.bm-tab.is-active { color: #fff; }

.bm-indicator {
    position: absolute; top: 0; left: 0; height: 100%; z-index: 0;
    background: #00729c;
    transition: transform .55s cubic-bezier(.77, 0, .18, 1),
                width .55s cubic-bezier(.77, 0, .18, 1),
                background .3s ease;
}
.bm-indicator svg { position: absolute; bottom: 0; height: 100%; width: auto; }
.bm-indicator svg path { fill: #00729c; transition: fill .3s ease; }
.bm-ind-l { right: 98%; }
.bm-ind-r { left: 98%; }
.bm-indicator.is-first { border-top-left-radius: 14px; }
.bm-indicator.is-first .bm-ind-l { display: none; }
.bm-indicator.is-last { border-top-right-radius: 14px; }
.bm-indicator.is-last .bm-ind-r { display: none; }

/* Coloured body block (background follows the active capital) */
.bm-body {
    background: #00729c;
    border-radius: 20px;
    padding: 30px 40px 30px;
    color: #fff;
    position: relative; z-index: 1;
    transition: background .3s ease;
}
/* square the corner that connects to the first / last tab */
.bm-section.cap-first .bm-body { border-top-left-radius: 0; }
.bm-section.cap-last  .bm-body { border-top-right-radius: 0; }

.bm-panel { display: none; }
.bm-panel.is-active { display: block; }

.bm-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.bm-head-left { display: flex; align-items: center; gap: 16px; }
.bm-icon { width: 52px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.bm-cap-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: .5px;
}
.bm-sdg { height: 54px; width: auto; object-fit: contain; flex-shrink: 0; display:none; }

/* Input / Outcomes boxes (translucent on the coloured block) */
.bm-io {
    display: grid; grid-template-columns: 1fr 2fr;
    border: 1px solid rgba(255,255,255,.4); border-radius: 10px; overflow: hidden;
    margin-bottom: 34px;
}
/* Outcomes column — stats stacked one below another */
.bm-out { display: inline-block; vertical-align: top; margin: 0 24px 0 0; }
.bm-out:last-child { margin-right: 0; }
.bm-out-num { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 800; color: #fff; line-height: 1.1; }
.bm-out-lbl { font-size: 14px; color: rgba(255,255,255,.88); margin-top: 3px; }
.bm-io-col { padding: 22px 22px; }
.bm-io-col + .bm-io-col { border-left: 1px solid rgba(255,255,255,.4); }
.bm-io-label {
    display: block; font-family: 'Noto Sans', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.75); margin-bottom: 16px;
}
.bm-io-col ul { list-style: none; margin: 0; padding: 0; }
.bm-io-col li {
    position: relative; padding-left: 18px; margin-bottom: 10px;
    font-size: 15px; line-height: 1.5; color: #fff;
}
.bm-io-col li:last-child { margin-bottom: 0; }
.bm-io-col li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
/* Footnote inside the Outcomes box, pinned below the list */
.bm-io-foot {
    font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.4;
    color: rgba(255,255,255,.75); margin: 12px 0 0;
}
/* Scrollable Input/Outcomes lists with thin right-side scrollbar */
.scroll-text-new { overflow-y:auto; overflow-x:hidden; padding-right:10px !important; max-height:105px; }
.scroll-text-new::-webkit-scrollbar { width:3px; }
.scroll-text-new::-webkit-scrollbar-track { border-radius:0; background-color:rgba(255,255,255,.2); }
.scroll-text-new::-webkit-scrollbar-thumb { border-radius:0; background-color:rgba(255,255,255,.85); }
.bm-out-m
{
    margin-top: 20px;
}
/* Shared bottom block — strategic priorities on top, enablers underneath */
.bm-block-label { margin-bottom: 16px; color: rgba(255,255,255,.78); }
.bm-bottom-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 32px; align-items: start; margin-bottom: 30px;
}
/* Key Strategic Priorities — 8 numbered items across 4 columns x 2 rows */
.bm-ksp-list {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 24px;
}
.bm-ksp-list li {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.22);
}
/* Outlined pentagon: white shape + inner shape in the capital colour = 1px "border"
   that follows the arrow notch (a plain border would be cut off by clip-path). */
.bm-ksp-num {
    flex: 0 0 auto;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 34px;
    background: rgba(255,255,255,.75);
    -webkit-clip-path: polygon(0 0, 74% 0, 100% 50%, 74% 100%, 0 100%);
            clip-path: polygon(0 0, 74% 0, 100% 50%, 74% 100%, 0 100%);
}
.bm-ksp-num::before {
    content: "";
    position: absolute; inset: 1px;
    background:#00729c;
    -webkit-clip-path: polygon(0 0, 73% 0, 100% 50%, 73% 100%, 0 100%);
            clip-path: polygon(0 0, 73% 0, 100% 50%, 73% 100%, 0 100%);
}
.bm-ksp-num i {
    position: relative;              /* sits above ::before */
    padding-right: 8px;              /* optical centring inside the notch */
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px; font-weight: 600; font-style: normal; color: #fff;
}
.bm-ksp-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px; font-weight: 500; line-height: 1.35; color: #fff;
}

/* Both outcome numbers in ONE box, split by a divider */
.bm-stats {
    display: flex;
    background: rgba(255,255,255,.14);
    border-left: 4px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}
.bm-stat { flex: 1; padding: 22px 20px; }
.bm-stat + .bm-stat { border-left: 1px solid rgba(255,255,255,.28); }
.bm-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 28px; font-weight: 800; color: #fff; line-height: 1.1; }
.bm-stat-label { font-size: 14px; color: rgba(255,255,255,.88); margin-top: 4px; }

/* Enabler icons (white), to the right of the strategic priorities */
.bm-model {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 20px;
    align-items: start;
}
.bm-model-item {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    text-align: left; text-decoration: none; transition: transform .2s;
}
.bm-model-item:hover { transform: translateY(-3px); }
.bm-model-item img { width: 46px; height: 46px; object-fit: contain; filter: brightness(0) invert(1); }
.bm-model-item span { font-size: 13px; color: #fff; line-height: 1.3; }
@media (max-width: 991px) {
    .bm-ksp-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .bm-model { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bm-ksp-list { grid-template-columns: 1fr; }
}

/* Read More on the coloured block → white outline */
.bm-cta { text-align: left; }
.bm-body .cta-read-more { color: #fff; border-color: #fff; background: transparent; }
.bm-body .cta-read-more:hover { background: #fff; color: var(--cap-bg); }

/* ============================================================
   OUR STRATEGY — animated image-stack slider (Yes Bank style)
   ============================================================ */
.yb-slider {
    --font-body: 'Noto Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --yb-white: #fff;
    --yb-gold: #c79a4b;
    position: relative; width: 100%; height: 100vh; overflow: hidden;
    display: flex; flex-direction: column; z-index: 2;
    background-color: #1a3a6b;
    transition: background-color 1.2s ease;
}
/* Wrap = Bootstrap container (aligns content with the header), 16px gutter */
.yb-slider__wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; width: 100%; padding-top: 90px; padding-bottom: 36px; padding-left: 16px; padding-right: 16px; }
.yb-slider__body { flex: 1; display: flex; flex-direction: column; padding: 0; min-height: 0; position: relative; }

/* LEFT */
.yb-slider__left { display: flex; flex-direction: column; flex: 1; min-height: 0; position: relative; z-index: 4; justify-content: center; }
.yb-slider__label { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.yb-slider__title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 40px); font-weight: 800; color: var(--yb-white); line-height: 1.15; overflow: hidden; position: relative; margin-bottom: 24px; }
.yb-slider__title span { display: inline-block; will-change: transform; }
.yb-slider__footer { flex-shrink: 0; }
.yb-slider__desc { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 440px; margin-bottom: 24px; }
/* Read More button (matches other sections), white variant for the dark bg */
.yb-slider .cta-read-more { color: #fff; border-color: #fff; background: transparent; }
.yb-slider .cta-read-more:hover { background: #fff; color: #1a3a6b; }

/* RIGHT (image stack) */
.yb-slider__right { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.yb-slider__images { width: 100%; height: 100%; position: relative; }
.yb-slider__slide { position: absolute; top: 50%; right: 0; left: auto; width: 55%; aspect-ratio: 1.4; overflow: hidden; border-radius: 12px; will-change: transform, filter, opacity; }
.yb-slider__slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.9); }

/* NAV */
.yb-slider__nav { align-self: flex-end; margin-top: 20px; display: flex; align-items: center; gap: 16px; z-index: 5; }
.yb-slider__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: none; color: var(--yb-white); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .3s ease, border-color .3s ease; }
.yb-slider__arrow:hover { background: var(--yb-gold); border-color: var(--yb-gold); }
.yb-slider__counter-display { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .1em; }

/* Desktop: title left, images right */
@media (min-width: 1024px) {
    .yb-slider__body { flex-direction: row; padding: 0; }
    .yb-slider__left { width: 50%; flex-shrink: 0; }
    .yb-slider__right { position: static; flex: 1; display: flex; align-items: center; justify-content: flex-end; min-height: 0; pointer-events: auto; }
    .yb-slider__images { display: flex; align-items: center; justify-content: flex-end; }
    .yb-slider__slide { width: 80%; right: 0; left: auto; }
}
@media (max-width: 767.98px) {
    .yb-slider__wrap { padding-top: 40px; }
    .yb-slider__title { font-size: clamp(24px, 9vw, 40px); }
    .yb-slider__slide { width: 90%; left: 0; margin: auto; }
    .yb-slider__desc { display: none; }
    .yb-slider__title
    {
        margin-bottom: 15px;
    }
}
/* ============================================================
   ESG — full-screen background image with left heading
   ============================================================ */
.esg-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/homepage/esg-img.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
}
.esg-section .container { width: 100%; }
.esg-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}
@media (max-width: 767.98px) {
    .esg-section { min-height: 80vh; }
    .esg-title { font-size: clamp(28px, 8vw, 42px); }
}

/* ============================================================
   ESG FOCUS AREAS — vertical parallax slider (Swiper 11)
   ============================================================ */
.esg-slider-section { background: #fff; padding: 70px 0; }
.upk-salf-slider-wrapper {
    display: flex; flex-direction: row; position: relative;
    background: #fff; box-shadow: 0 5px 24px rgba(0,0,0,.08);
    border-radius: 10px; overflow: hidden;
    height: 400px; padding: 30px 0 30px 30px;
}
.upk-salf-slider-wrapper .swiper { flex: 1 1 auto; width: 100%; min-width: 0; height: 100%; }
.upk-salf-item { position: relative; display: flex; flex-direction: row-reverse; }
.upk-salf-item.swiper-slide-active .upk-salf-title,
.upk-salf-item.swiper-slide-active .upk-salf-desc,
.upk-salf-item.swiper-slide-active .upk-salf-button { opacity: 1; }
.upk-salf-image-wrap { height: 100%; width: 100%; }
.upk-xanc-img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.upk-salf-content-wrap {
    position: absolute; left: 0; bottom: 0; top: unset; max-width: 460px;
    overflow: hidden; background: rgba(255,255,255,.55);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    transition: backdrop-filter .9s; padding: 20px; border-radius: 8px;
}
.upk-salf-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 40px); font-weight: 700; line-height: 1.2;
    color:#00729c; margin-bottom: 18px; opacity: 1;
}
.upk-salf-desc {
    font-family: 'Noto Sans', sans-serif;
    color: #656565; font-size: 14px; line-height: 1.6; margin-bottom: 20px; opacity: 1;
}
.upk-salf-button { opacity: 1; }
.upk-salf-button .link {
    font-family: 'Noto Sans', sans-serif;
    color: #2b2d42; cursor: pointer; font-weight: 500; text-decoration: none;
    font-size: 14px; transition: color .3s ease;
}
.upk-salf-button .link:hover { color: var(--brand-purple); }
.link--arrowed { display: inline-flex; align-items: center; gap: 8px; }
.link--arrowed .arrow-icon { transition: transform .3s ease; }
.link--arrowed .arrow-icon--circle { transition: stroke-dashoffset .3s ease; stroke-dasharray: 95; stroke-dashoffset: 95; }
.link--arrowed g { stroke: currentColor; color: #2b2d42; }
.link--arrowed:hover .arrow-icon { transform: translate3d(5px, 0, 0); }
.link--arrowed:hover .arrow-icon--circle { stroke-dashoffset: 0; }
.link--arrowed:hover g { color: var(--brand-purple); }

/* Right-side rail: circular up/down arrows (same style as other sections) */
.upk-salf-nav-pag-wrap { position: absolute; top: 0; right: 0; height: 100%; width: 76px; display: flex; align-items: center; justify-content: center; }
.upk-salf-navigation { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.esg-counter {
    display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.1;
    font-family: 'Noto Sans', sans-serif; color: #2b2d42;
}
.esg-counter .esg-cur { font-size: 15px; font-weight: 700; }
.esg-counter .esg-sep {
    font-size: 0;                                  /* hide the dash glyph */
    width: 18px; height: 1px; margin: 3px 0;
    background: rgba(43, 45, 66, .4);
}
.esg-counter .esg-total { font-size: 13px; color: rgba(43, 45, 66, .6); }
.upk-button-prev, .upk-button-next { cursor: pointer; }

@media (min-width: 768px) {
    .upk-salf-slider-wrapper { height: 550px; padding: 60px 0 60px 60px; }
    .upk-salf-title { font-size: 36px; }
    .upk-salf-content-wrap { max-width: 400px; padding: 40px; padding-left: 0; top: 50%; transform: translateY(-50%); bottom: unset; background: rgba(255,255,255,.55); }
    .upk-salf-image-wrap { width: 86%; }
}
@media (min-width: 1024px) {
    .upk-salf-slider-wrapper { height: 600px; padding: 70px; }
    .upk-salf-title { font-size: 40px; }
    .upk-salf-content-wrap { max-width: 460px; padding: 50px; padding-left: 0; }
    .upk-salf-desc { font-size: 16px; }
    .upk-salf-button .link { font-size: 16px; }
    .upk-salf-image-wrap { width: 84%; }
}
/* ============================================================
   DOWNLOAD CENTRE
   ============================================================ */
.dc-section {
    background: linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    padding: 70px 0 64px;
}
.dc-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700; color: #fff;
    text-align: center; margin-bottom: 44px;
}
.dc-grid {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    border: 1px solid rgba(255, 255, 255, .35);
}
.dc-col-left, .dc-center { border-right: 1px solid rgba(255, 255, 255, .35); }

.dc-item {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 30px 30px; min-height: 100px;
    color: #fff; text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    transition: background .25s ease;
}
.dc-col-left .dc-item:last-child, .dc-col-right .dc-item:last-child { border-bottom: none; }
.dc-item span { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 600; }
.dc-item svg { width: 24px; height: 24px; flex-shrink: 0; opacity: .9; transition: transform .25s ease; }
.dc-item:hover { background: rgba(255, 255, 255, .08); }
.dc-item:hover svg { transform: translateY(3px); }

.dc-center {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 30px 18px;
}
.dc-center img { width: 168px; height: auto; display: block; box-shadow: 0 8px 22px rgba(0, 0, 0, .3); }
.dc-caption { color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.45; margin-top: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-image: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
                      linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    padding: 26px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy, .footer-credit { color: rgba(255, 255, 255, .9); font-family: 'Noto Sans', sans-serif; font-size: 14px; margin: 0; }
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social-label { color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 600; margin-right: 6px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 6px;
    background: rgba(255, 255, 255, .12); color: #fff; font-size: 15px;
    transition: background .25s ease;
}
.footer-social a:hover { background: rgba(255, 255, 255, .28); }
/* ============================================================
   INFRASTRUCTURE PLATFORM CONTRIBUTION — auto tab slider
   ============================================================ */
.ipc-section {
    background: linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    padding: 70px 0 52px;
}
.ipc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.4vw, 40px); font-weight: 700;
    color: #fff; text-align: center; line-height: 1.2; margin-bottom: 36px;
}
.ipc-card {
    max-width: 820px; margin: 0 auto;
    background: #fff; border-radius: 16px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
    padding: 26px 34px 24px;
}
.ipc-card-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #e3e3e3; }
.ipc-fy { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #222; }
.ipc-unit { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #9a9a9a; }
.ipc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #ececec; }
.ipc-row-label { font-family: 'Noto Sans', sans-serif; font-size: 16px; color: #333; }
.ipc-row-val { font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--brand-purple); letter-spacing: .5px; }
.ipc-note { font-family: 'Noto Sans', sans-serif; font-size: 11.5px; line-height: 1.55; color: rgba(142, 39, 143, .7); margin-top: 16px; }

/* Tabs with progress bars */
.ipc-tabs { display: flex; gap: 8px; margin-top: 34px; }
.ipc-tab {
    flex: 1; min-width: 0; background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 6px 4px 0;
    font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase;
    color: rgba(255, 255, 255, .7); transition: color .25s ease;
}
.ipc-tab:hover { color: #fff; }
.ipc-tab.is-active { color: #fff; }
.ipc-tab-label { white-space: nowrap; }
.ipc-tab-bar { width: 100%; height: 3px; background: rgba(255, 255, 255, .3); border-radius: 2px; overflow: hidden; }
.ipc-tab-fill { display: block; height: 100%; width: 0; background: #fff; border-radius: 2px; }
/*-----------Header Css End-------------*/

/* ============================================================
   ACCELERATING INFRASTRUCTURE POPUP
   ============================================================ */
.ai-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.ai-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
/* Full-screen panel with the PDF's soft blue gradient */
.ai-popup-panel {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #eaf6fc 45%, #d6eefa 100%);
    border-radius: 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.ai-popup-overlay.is-open .ai-popup-panel {
    transform: translateY(0);
}

/* Close button */
.ai-close {
    position: absolute;
    top: 22px;
    right: 26px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: background 0.2s, color 0.2s;
}
.ai-close:hover { background: var(--brand-purple); color: #fff; border-color: var(--brand-purple); }

/* Scroll container */
.ai-popup-inner {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    max-height: 100vh;
    padding: 36px 60px 40px;
    -webkit-overflow-scrolling: touch;
}

/* Two-column grid: media+person box (left) | all text (right) */
.ai-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Title column — dark charcoal title with purple underline (as per PDF) */
.ai-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    color: #2b2b2b;
    margin-bottom: 22px;
    padding-bottom: 22px;
    position: relative;
}
.ai-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: var(--brand-purple);
}
/* Subhead — same grey body style, NOT highlighted (as per PDF) */
.ai-subhead {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}
.ai-body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}
.ai-body:last-child { margin-bottom: 0; }

/* Left media column */
.ai-col-media { position: relative; }
.ai-visual {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 330px;
}
.ai-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(30%);
}
.ai-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(142,39,143,0.18) 0%, rgba(0,109,183,0.12) 100%);
    pointer-events: none;
}
.ai-grid-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Person card — clean white box with purple border (as per PDF) */
.ai-person-card {
    margin-top: 22px;
    border: 1.5px solid var(--brand-purple);
    border-radius: 10px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.55);
}
.ai-person-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(142,39,143,0.2);
    margin-bottom: 14px;
}
.ai-person-name {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
}
.ai-person-role {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.ai-person-bio {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

/* ============================================================
   PORTFOLIO PAGE — A LEGACY OF VISION, LEADERSHIP & NATIONHOOD
   ============================================================ */
.pl-section {
    background: #fff;
    padding: 130px 0 80px;
}
.pl-label {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.pl-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.12;
    color: #00729c;
    margin-bottom: 44px;
}

/* Intro lead paragraph (no background, aligned to the heading) */
.pl-intro-box {
    padding: 0;
    margin-bottom: 50px;
}
.pl-intro-box p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 0;
}

/* Guided-by paragraphs (left) + bird image (right) */
.pl-guided-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.pl-guided-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 18px;
}
.pl-guided-text p:last-child { margin-bottom: 0; }
.pl-guided-media {
    border-radius: 14px;
    overflow: hidden;
}
.pl-guided-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pedigree, Vision + Values, Culture — stacked one below the other */
.pl-pvc-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}
/* Vision+Values and Culture side by side */
.pl-pvc-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 44px;
    align-items: start;
}
.pl-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}
.pl-col-title + .pl-list,
.pl-col-body + .pl-col-title { margin-top: 26px; }
.pl-title-purple { color: #00729c; }
.pl-title-blue { color: #00aeef; }
.pl-col-body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}
.pl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pl-list li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}
.pl-list li:last-child { margin-bottom: 0; }
.pl-list li strong { color: #1a1a1a; font-weight: 700; }

/* ---- A portfolio invested in India's tomorrow (text left, image right) ---- */
.pf-tomorrow { background: #eef6fb; overflow: hidden; }
.pf-tomorrow-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;   /* image gets the larger share */
    align-items: stretch;
    gap: 50px;
    min-height: 88vh;
}
.pf-tomorrow-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 70px 0;
}
.pf-tomorrow .pf-tomorrow-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 30px !important;
    font-weight: 700; line-height: 1.12; color: #00729c;
    margin-bottom: 34px;
}
.pf-tomorrow-pillars {
    display: flex; flex-direction: column;
    gap: 22px;
}
.pf-pillar span {
    display: inline-block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px; font-weight: 600; color: #1a1a1a; line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-blue);
}
.pf-tomorrow-media {
    position: relative;   /* aligns to the container (menu) right edge */
}
.pf-tomorrow-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* ---- Built Around Core Infrastructure chart ---- */
.pf-chart-section { background: #fff; padding: 80px 0; }
.pf-chart-section .pf-sec-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 700; color: #00729c;
    margin-bottom: 16px;
}
.pf-sec-intro {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: #444;
    max-width: 880px; margin-bottom: 40px;
}
.pf-chart-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.pf-chart { min-width: 980px; }
/* Company-structure chart as a single SVG */
.pf-chart-img { margin: 8px 0 24px; }
.pf-chart-img img { width: 100%; max-width: 1040px; height: auto; display: block; }

/* adani logo centred over a thin rule */
.pf-chart-logo {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.pf-chart-logo::before {
    content: ""; position: absolute; left: 16%; right: 16%; top: 50%;
    height: 1px; background: #d6d6d6;
}
.pf-chart-logo img { height: 38px; position: relative; background: #fff; padding: 0 24px; }

/* Group banners aligned to the 5-column grid */
.pf-chart-banners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.pf-banner {
    position: relative;
    background: var(--brand-purple);
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    text-align: center;
    padding: 12px 10px;
    border-radius: 3px;
}
.pf-banner-flagship { grid-column: 1; }
.pf-banner-core     { grid-column: 2 / 4; }
.pf-banner-primary  { grid-column: 4; }
.pf-banner-other    { grid-column: 5; }
/* blue right-pointing arrow sitting in the gap after the banner */
.pf-banner-arrow {
    position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 12px solid var(--brand-blue);
}

/* Column heads + top tier (5-column grid) */
.pf-chart-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: start;
}
.pf-chart-heads { margin-bottom: 16px; }
/* stretch top columns to equal height so the AEL connector can run full length */
.pf-chart-top { align-items: stretch; }
.pf-chart-top .pf-chart-col:first-child { position: relative; }
.pf-chart-top .pf-chart-col:first-child::after {
    content: ""; position: absolute;
    left: 50%; top: 82px; bottom: -16px;
    border-left: 2px solid var(--brand-blue);
}
.pf-col-head {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--brand-blue);
    text-align: center; line-height: 1.25;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-blue);
}
.pf-node {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    border-radius: 6px;
    padding: 12px 10px;
    margin-bottom: 14px;
}
.pf-node:last-child { margin-bottom: 0; }
.pf-listed   { background: #dceefb; border: 1.5px solid #2aa6e0; }
.pf-unlisted { background: #ececec; border: 1.5px solid transparent; }
.pf-direct   { background: #fff;    border: 1.5px solid #2aa6e0; }
.pf-node-name { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; }
.pf-node-sub  { font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #555; margin-top: 2px; }
.pf-node-pct  { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 600; margin-top: 8px; }
.pf-pct-family { color: var(--brand-purple); }
.pf-pct-ael    { color: #0093d0; }
.pf-pct-ambuja { color: #3a9d3a; }

/* Materials sub-group (ACC + Orient under Ambuja) */
.pf-down-arrow {
    display: block; margin: 0 auto 12px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid var(--brand-blue);
}
.pf-subgroup {
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 14px 14px 0;
}

/* Bottom band — bordered box fed by the AEL connector */
.pf-chart-lower {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.pf-lower-connector { position: relative; }
.pf-lower-connector::before {
    content: ""; position: absolute;
    left: 50%; top: 0; bottom: 50%; width: 50%;
    border-left: 2px solid var(--brand-blue);
    border-bottom: 2px solid var(--brand-blue);
}
.pf-lower-connector::after {
    content: ""; position: absolute;
    right: -2px; bottom: calc(50% - 7px);
    width: 0; height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--brand-blue);
}
.pf-band {
    grid-column: 2 / 6;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    padding: 18px 6px;
}
.pf-band-col { padding: 0 12px; }
.pf-band-col + .pf-band-col { border-left: 1px dashed #c2c2c2; }

/* Legend */
.pf-legend {
    display: flex; flex-wrap: wrap; gap: 12px 26px;
    margin: 34px 0 24px;
    font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #444;
}
.pf-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.pf-swatch { width: 26px; height: 16px; border-radius: 3px; display: inline-block; }
.pf-sw-listed { background: #dceefb; }
.pf-sw-unlisted { background: #ececec; }
.pf-sw-direct { background: #fff; border: 1.5px solid #2aa6e0; }

/* Footnotes + abbreviations */
.pf-notes {
    margin: 0 0 18px; padding-left: 20px;
    font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.6; color: #333;
}
.pf-notes li { margin-bottom: 6px; }
.pf-abbr {
    font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.7; color: #333;
}

/* ---- Empowering India's Critical Sectors ---- */
.pf-critical { background: #eef7f3; padding: 80px 0; }
.pf-critical .pf-critical-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 700; color: #00729c; line-height: 1.1;
    white-space: nowrap;
    margin-bottom: 34px;
}
.pf-critical-intro {
    max-width: 620px;
    margin-bottom: 50px;
}
/* Page-10 block: stacked text cards + flamingo image */
.pf-uns-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 54px;
}
.pf-uns-textcol { display: flex; flex-direction: column; gap: 24px; }
.pf-uns-media { border-radius: 12px; overflow: hidden; min-height: 320px; }
.pf-uns-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Empowering Critical Sectors — sectors + factory image (image matches sector height) */
.pf-sectors-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.pf-sectors-media {
    border-radius: 12px;
    background: url('../images/portfolio-critical-plant.jpeg') center center / cover no-repeat;
    height: 300px;
}

/* Enabling India's Rise — plain, left-aligned (no background) */
.pf-enabling {
    padding: 0;
    margin-bottom: 54px;
}
.pf-enabling-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: #484848;
    line-height: 1.2; margin-bottom: 12px;
}
.pf-enabling p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: #444; margin: 0;
}
.pf-sectors-block { margin-bottom: 56px; }
.pf-card-soft {
    background: rgba(255,255,255,0.6);
    border-radius: 12px; padding: 28px 30px;
}
.pf-card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px; font-weight: 700; color: #333; line-height: 1.25;
    margin-bottom: 14px;
}
.pf-card-soft p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: #444; margin: 0;
}
.pf-critical-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px;
    align-items: start; margin-bottom: 56px;
}
.pf-tick-list { list-style: none; margin: 18px 0 0; padding: 0; }
.pf-tick-list li {
    position: relative; padding-left: 22px; margin-bottom: 12px;
    font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: #444;
}
.pf-tick-list li::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 8px; height: 8px; border-radius: 50%; background: var(--brand-purple);
}
.pf-card-foot {
    font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.55;
    color: #888; margin: 18px 0 0;
}
.pf-critical-media { margin-top: 24px; border-radius: 12px; overflow: hidden; }
.pf-critical-media img { width: 100%; height: auto; display: block; }

.pf-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--brand-purple); margin-bottom: 10px;
}
.pf-block-title.pf-title-dark { color: #484848; font-size: 22px; }
.pf-block-sub {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; color: #444; margin-bottom: 26px;
}
.pf-sectors {
    display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px;
    margin-bottom: 34px;
}
.pf-sector h5 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px;
}
.pf-sector p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.6; color: #555; margin: 0;
}
.pf-intel { border-top: 1px solid #d6e3dd; padding-top: 24px; }
.pf-intel-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--brand-purple); line-height: 1.25;
    margin-bottom: 12px;
}
.pf-intel p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: #444; margin: 0;
}

/* Purpose-driven ESG */
.pf-purpose { border-top: 1px solid #d6e3dd; padding-top: 44px; }
.pf-esg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pf-esg { border-radius: 10px; padding: 26px 26px; color: #fff; }
.pf-esg h5 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.pf-esg ul { list-style: none; margin: 0; padding: 0; }
.pf-esg li {
    position: relative; padding-left: 18px; margin-bottom: 12px;
    font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.95);
}
.pf-esg li:last-child { margin-bottom: 0; }
.pf-esg li::before {
    content: ""; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.pf-esg li strong { font-weight: 700; color: #fff; }
.pf-esg-env { background: #0b6e6a; }
.pf-esg-soc { background: #1a7fc0; }
.pf-esg-gov { background: #b85a28; }

/* ---- Growing with the Nation (text left, image right) ---- */
.pf-growing-hero { background: #eef6fb; overflow: hidden; }
.pf-growing-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;   /* image gets the larger share */
    align-items: stretch;
    gap: 50px;
    min-height: 88vh;
}
.pf-growing-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 70px 0;
}
.pf-growing-hero .pf-growing-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 40px !important;
    font-weight: 700; line-height: 1.12; color: #00729c;
    margin: 0;
}
.pf-growing-media {
    position: relative;   /* aligns to the container (menu) right edge */
}
.pf-growing-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}

/* ---- Growing with Impact (metrics) ---- */
.pf-impact { background: #fff; padding: 80px 0; }
.pf-impact-group { padding: 34px 0; border-bottom: 1px solid #e6e6e6; }
.pf-impact-group:first-child { padding-top: 0; }
.pf-impact-head {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 26px;
    display: flex; align-items: center; gap: 12px;
}
/* Placeholder icon (design team to replace the SVGs) */
.pf-impact-icon { display: inline-flex; flex-shrink: 0; }
.pf-impact-icon img { height: 40px; width: auto; display: block; }
.pf-impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 50px; }
.pf-metric { }
.pf-metric-val {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 26px; font-weight: 800;
    color: #8e278f; line-height: 1.1; margin-bottom: 10px;
}
.pf-metric-val sup { font-size: 0.5em; vertical-align: super; font-weight: 600; }
.pf-metric p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.6; color: #555; margin: 0;
}
.pf-notes-impact { margin-top: 30px; }
.pf-notes-impact p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12.5px; line-height: 1.6; color: #333; margin: 0 0 6px;
}
.pf-notes-impact p:last-child { margin-bottom: 0; }
.pf-notes-impact sup { font-size: 0.75em; }

/* ============================================================
   DRIVEN BY SYNERGIES, SIGNIFICANCE AND SUSTAINABILITY
   ============================================================ */
/* Hero — text left, larger image bleeding to the right edge */
.syn-hero { background: #eef6fb; overflow: hidden; padding-top: 110px; }
.syn-eyebrow {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700; color: #1a1a1a;
    margin-bottom: 14px;
}
.syn-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700; line-height: 1.12; color: #00729c;
    margin: 0 0 24px;
}
.syn-hero-row {
    display: grid; grid-template-columns: 2fr 3fr;   /* image gets the larger share */
    gap: 50px; align-items: stretch; min-height: 480px;
}
.syn-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 20px 0 40px; }
.syn-hero-img {
    position: relative;   /* aligns to the container (menu) right edge */
}
.syn-hero-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    display: block;
}
/* Intro copy below the banner */
.syn-intro { background: #fff; padding: 50px 0 0; }
.syn-intro-copy {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: #444; margin: 0;
}

/* Company blocks */
.syn-companies { background: #fff; padding: 70px 0 60px; }
/* Per-company colour coding (bar = header colour, accent = metric line/bullet) */
.syn-company { --syn-bar: #8e278f; --syn-accent: #00aeef; }
.syn-company--ael    { --syn-bar: #8e278f; --syn-accent: #00aeef; }
.syn-company--apsez  { --syn-bar: #42408e; --syn-accent: #42408e; }
.syn-company--agel   { --syn-bar: #2f9c6a; --syn-accent: #2f9c6a; }
.syn-company--aesl   { --syn-bar: #107aa1; --syn-accent: #107aa1; }
.syn-company--atgl   { --syn-bar: #007978; --syn-accent: #007978; }
.syn-company--apl    { --syn-bar: #2f2e82; --syn-accent: #2f2e82; }
.syn-company--ambuja { --syn-bar: #7c1f25; --syn-accent: #7c1f25; }
.syn-company--ndtv   { --syn-bar: #3d306d; --syn-accent: #3d306d; }
.syn-company { padding: 44px 0; border-bottom: 1px solid #e6e6e6; }
.syn-company:last-of-type { border-bottom: none; }
.syn-company:first-child { padding-top: 0; }

.syn-company .syn-company-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important; font-weight: 700; color: var(--syn-bar);
    margin: 0 0 4px;
}
.syn-company--ael .syn-company-name { color: #00729c !important; }
.syn-company-tag {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 600; color: #333; margin: 0;
}
.syn-company-tag sup { font-size: 0.7em; }

/* Image (left, full height) | heading + metrics (right) */
.syn-company-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: stretch; margin-bottom: 34px;
}
.syn-company-media { position: relative; border-radius: 12px; overflow: hidden; min-height: 240px; }
.syn-company-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.syn-company-right { display: flex; flex-direction: column; justify-content: center; }
.syn-company-head { margin-bottom: 24px; }
.syn-metrics {
    display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px;
}
.syn-metric-foot { grid-column: 1 / -1; }
.syn-metric-num {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 30px; font-weight: 800; color: #3a3a3a; line-height: 1.05;
    margin-bottom: 6px;
}
.syn-metric-num .syn-metric-unit { font-size: 0.5em; font-weight: 700; color: #777; }
.syn-metric-num.syn-metric-text { font-size: 20px; font-weight: 700; }
.syn-metric-logos { display: flex; align-items: center; gap: 18px; margin-top: 12px; }
.syn-metric-logos img { height: 42px; width: auto; display: block; }
.syn-metric p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px; line-height: 1.45; color: #555; margin: 0;
    position: relative; padding-top: 8px;
}
.syn-metric p::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 22px; height: 2px; background: #00aeef;
}
.syn-metric-foot {
    grid-column: 1 / -1;
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px; color: #888; margin: 18px 0 0;
}

/* Contribution columns */
.syn-contrib {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 1px solid #e2e2e2; border-radius: 8px; overflow: hidden;
}
.syn-contrib-2 { grid-template-columns: repeat(2, 1fr); }
.syn-contrib-col { border-left: 1px solid #e2e2e2; }
.syn-contrib-col:first-child { border-left: none; }
.syn-contrib-head {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; font-weight: 700; color: #fff;
    background: var(--syn-bar);
    padding: 12px 18px; margin: 0;
}
.syn-contrib-col ul { list-style: none; margin: 0; padding: 18px 18px; }
.syn-contrib-col li {
    position: relative; padding-left: 16px; margin-bottom: 12px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px; line-height: 1.5; color: #444;
}
.syn-contrib-col li:last-child { margin-bottom: 0; }
.syn-contrib-col li::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 7px; height: 7px; background: #975ea7;
}
.syn-note {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12.5px; line-height: 1.6; color: #333; margin: 40px 0 0;
}

/* ============================================================
   STABLE, PREDICTABLE INFRASTRUCTURE-LED GROWTH
   ============================================================ */
.spg-hero { background: #fff; padding: 130px 0 0; }
.spg-eyebrow {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 14px;
}
.spg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700; line-height: 1.12; color: #00729c; margin: 0;
}

/* Section headings */
.spg-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: #2b2b2b; margin: 0;
}

/* Performance section */
.spg-perf { background: #fff; padding: 28px 0 60px; }
.spg-perf-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.spg-unit { font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #888; }

/* Table */
.spg-table-wrap { overflow-x: auto; margin-bottom: 44px; }
.spg-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.spg-table thead th {
    background: #1976b5; color: #fff;
    font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700;
    text-align: right; padding: 14px 18px; line-height: 1.3; vertical-align: bottom;
}
.spg-table thead th:first-child { text-align: left; }
.spg-table tbody td {
    font-family: 'Noto Sans', sans-serif; font-size: 16px; color: #333;
    text-align: right; padding: 13px 18px; border-bottom: 1px solid #e6e6e6;
}
.spg-table tbody td:first-child { text-align: left; color: #1a1a1a; }
.spg-table tbody td + td { border-left: 1px solid #e6e6e6; }
.spg-table tbody tr:last-child td { border-bottom: 2px solid #1976b5; }

/* Totals */
.spg-totals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.spg-total-val {
    display: block;
    font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 2.6vw, 34px); font-weight: 800;
    color: #8e278f; line-height: 1.05;
}
.spg-total-val small { font-size: 0.6em; font-weight: 700; }
.spg-total-label {
    font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #444;
    position: relative; padding-left: 26px; margin: 12px 0 0;
}
.spg-total-label::before { content: ""; position: absolute; top: 0.95em; left: 0; width: 18px; height: 3px; background: #8e278f; }
.spg-cagr { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #444; margin: 12px 0 0; }
.spg-cagr .spg-tri { color: #2bb3a3; font-size: 11px; }
.spg-cagr b { color: #009fc7; font-size: 17px; }

/* Split label + body (Growth with Prudence / Solid Fundamentals) */
.spg-split { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: stretch; padding: 36px 0; border-top: 1px solid #e6e6e6; }
.spg-card { background: #eef6f3; border-radius: 12px; padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.spg-card-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--brand-purple); line-height: 1.25; margin: 0; }
.spg-card-sub { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 14px 0 0; }
.spg-split-body { display: flex; flex-direction: column; justify-content: center; }
.spg-split-eyebrow { font-family: 'Noto Sans', sans-serif; font-size: 17px; color: #333; margin: 0 0 22px; }
.spg-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.spg-fund-row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 30px; margin-bottom: 30px; }
.spg-fund-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
.spg-mini-num {
    display: block;
    font-family: 'Noto Sans', sans-serif; font-size: clamp(24px, 2.4vw, 32px); font-weight: 800;
    color: #3a3a3a; line-height: 1.05;
}
.spg-mini p {
    font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.45; color: #555;
    position: relative; padding-left: 24px; margin: 8px 0 0;
}
.spg-mini p::before { content: ""; position: absolute; top: 0.9em; left: 0; width: 16px; height: 2px; background: var(--brand-purple); }
.spg-foot { font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.6; color: #555; margin: 30px 0 0; }

/* Industry-Leading by Design — charts */
.spg-ilg { background: #fff; padding: 0 0 70px; }
.spg-ilg-title { margin-bottom: 36px; }
.ilg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 70px; }
.ilg-chart img { display: block; width: 100%; height: auto; }
.ilg-chart-title { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.ilg-chart-title .ilg-unit { font-size: 13px; font-weight: 400; color: #888; }
.ilg-tag {
    display: inline-block; background: var(--brand-purple); color: #fff;
    font-family: 'Noto Sans', sans-serif; font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 3px; margin: 9px 0 10px;
}
.ilg-bars { border-top: 1px solid #e0e0e0; }
.ilg-bar-row { display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 1px solid #e0e0e0; }
.ilg-bar-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; }
.ilg-bar-track { display: block; height: 18px; }
.ilg-bar-fill { display: block; height: 100%; }
.ilg-ind { background: #5bc2e7; }
.ilg-comp { background: #a3d6bb; }
.ilg-bar-val { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; text-align: right; min-width: 46px; }
.ilg-data { width: 100%; border-collapse: collapse; margin-top: 12px; }
.ilg-data td { font-family: 'Noto Sans', sans-serif; font-size: 14px; padding: 6px 6px; border-bottom: 1px solid #e6e6e6; }
.ilg-data td:first-child { font-weight: 700; color: #1a1a1a; width: 33%; }
.ilg-data .ilg-c-ind { color: #009fc7; font-weight: 600; }
.ilg-data .ilg-c-comp { color: #5bab86; font-weight: 600; }
/* ============================================================
   FULLSCREEN MEGA MENU (copied from DAR reference)
   Opens from the existing Menu button; hamburger -> cross.
   ============================================================ */
.menu {
    position: fixed; inset: 0; z-index: 900; background: #fbfafc;
    clip-path: circle(0% at calc(100% - 48px) 42px);
    transition: clip-path .65s cubic-bezier(.22,.61,.36,1);
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 140px 0 clamp(28px,5vh,56px); overflow-y: auto;
}
/* Inner container aligns the menu's left/right edges with the header */
.menu > .container { width: 100%; }
.menu.open { clip-path: circle(150% at calc(100% - 48px) 42px); }
.menu-search { max-width: 520px; margin-bottom: clamp(18px,2.6vh,32px); display:none; }
.menu-search form { display: flex; align-items: center; gap: 10px; border-bottom: 2px solid #012a3f; padding-bottom: 10px; }
.menu-search input { flex: 1; border: none; outline: none; background: transparent; font-family: 'Noto Sans', sans-serif; font-size: 18px; color: #1b2127; }
.menu-search button { background: none; border: none; cursor: pointer; color: #012a3f; display: flex; }
.menu-search button svg { width: 20px; height: 20px; }
.menu-inner { width: 100%; max-width: 1340px; }
.mega {
    display: grid; grid-template-columns: 0.8fr 1.5fr; gap: clamp(28px,4vw,60px); align-items: stretch;
    opacity: 0; transform: translateY(18px);
}
.menu.open .mega { opacity: 1; transform: translateY(0); transition: opacity .55s cubic-bezier(.22,.61,.36,1) .14s, transform .55s cubic-bezier(.22,.61,.36,1) .14s; }
.mega-nav { display: flex; flex-direction: column; gap: 2px; border-right: 1px solid #e4e7ea; padding-right: clamp(14px,2vw,30px); }
.mega-tab {
    text-align: left; background: none; border: none; cursor: pointer; font-family: 'Playfair Display', serif;
    font-size: clamp(19px,1.9vw,28px); font-weight: 400; color: #1b2127; letter-spacing: -.01em; line-height: 1.18;
    padding: 10px 0; display: flex; align-items: baseline; gap: 13px; transition: color .25s, padding-left .25s;
}
.mega-tab .ix { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #5b6770; font-weight: 700; transition: color .25s; }
.mega-tab:hover, .mega-tab.active { color: var(--brand-blue); padding-left: 8px; }
.mega-tab:hover .ix, .mega-tab.active .ix { color: var(--brand-blue); }
.mega-panels { position: relative; min-height: 340px; }
.mega-panel {
    position: absolute; inset: 0; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(22px,2.6vw,42px);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1), visibility .45s;
}
.mega-panel.active { position: relative; opacity: 1; visibility: visible; transform: translateY(0); }
.mega-subs { list-style: none; columns: 1; column-gap: 30px; align-self: center; margin: 0; padding: 0; }
.mega-subs.two { columns: 2; }
.mega-subs li { break-inside: avoid; margin-bottom: 11px; }
.mega-subs li a { font-size: 13.5px; color: #5b6770; line-height: 1.35; transition: color .2s, padding-left .2s; display: inline-block; }
.mega-subs li a:hover { color: var(--brand-blue); padding-left: 5px; }
/* download-link icon (statutory reports, financial statements, global tax) */
.mega-subs li a:has(.dl-ico) { display: inline-flex; align-items: center; gap: 8px; }
.mega-subs .dl-ico { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 15px; width: 15px; height: 15px; color: var(--brand-blue); opacity: .55; transition: opacity .2s, transform .2s; }
.mega-subs .dl-ico svg { width: 15px; height: 15px; display: block; }
.mega-subs li a:hover .dl-ico { opacity: 1; transform: translateY(1px); }
.mega-figure {
    border-radius: 8px; overflow: hidden; min-height: 320px; position: relative;
    background-size: cover; background-position: center;
    background-image: linear-gradient(150deg, rgba(1,42,63,.55), rgba(138,43,140,.5)), var(--img, none);
    background-color: #0a2335;
}
.mega-figure .cap {
    position: absolute; left: 20px; bottom: 18px; right: 20px; color: #fff; font-family: 'Playfair Display', serif;
    font-size: clamp(17px,1.4vw,21px); line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
@media (max-width: 860px) {
    .menu { padding-top: 96px; }
    /* Accordion: JS moves each panel directly under its tab inside .mega-nav */
    .mega { display: block; }
    .mega-nav { border-right: none; padding-right: 0; gap: 0; }
    .mega-panels { display: none; }                 /* emptied on mobile */
    .mega-tab { border-bottom: 1px solid #e4e7ea; width: 100%; padding: 15px 0; display: flex; align-items: center; }
    .mega-tab::after { content: '+'; margin-left: auto; font-size: 24px; font-weight: 400; line-height: 1; color: var(--brand-blue); }
    .mega-tab.active::after { content: '\2212'; }   /* minus when open */
    /* smooth expand/collapse */
    .mega-panel {
        position: relative; display: block; visibility: visible; transform: none;
        max-height: 0; overflow: hidden; opacity: 0; padding: 0;
        transition: max-height .4s ease, opacity .35s ease, padding .4s ease;
    }
    .mega-panel.active { max-height: 1000px; opacity: 1; padding: 2px 0 16px; }
    .mega-figure { display: none; }                 /* remove image on mobile */
    .mega-subs, .mega-subs.two { columns: 1; }
    .mega-subs li { margin-bottom: 13px; }
}
/* hamburger -> cross on the existing Menu button */
.menu-btn .hamburger span { transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .2s; }
.menu-btn.is-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-btn.is-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   INNER PAGE — Accelerating Infrastructure, Leveraging Intelligence
   ============================================================ */
/* Reference banner (heading + one intro, image right) then single-column body
   (incubating-sustainable-growth layout). Colours follow the report cutout. */
.ail-page {
    background: #ffffff;
    --ail-blue:  #00729c;   /* heading / section heads */
    --ail-cyan:  #00b4d8;   /* question / gradient end */
    --ail-box:   #d3ebee;   /* pull-quote box */
    --ail-body:  #1a1a1a;
}

/* ---- Hero banner: text (left) + image (right) ---- */
.ail-hero { background: #eef6fb; padding: 110px 0 0; }
.ail-hero-row {
    display: grid; grid-template-columns: 2fr 3fr;
    gap: 50px; align-items: stretch; min-height: 480px;
}
.ail-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 20px 0 40px; }
.ail-hero-img { position: relative; min-height: 480px; }
.ail-hero-img img,
.ail-hero-img .ail-img-placeholder {
    position: absolute; inset: 0;
    width: 100%; height: 100%; aspect-ratio: auto;
    object-fit: cover;
}
.ail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700; line-height: 1.12;
    color: var(--ail-blue);
    margin: 0 0 24px;
}
.ail-lead {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400; line-height: 1.6;
    color: var(--ail-body);
    margin: 0;
}

/* ---- Single-column body ---- */
.ail-content { background: transparent; padding: 50px 0 0; }
.ail-wrap { max-width: 100%; }
.ail-content p:not(.ail-question) {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; line-height: 1.7; color: var(--ail-body);
    margin: 0 0 16px;
}
.ail-h {
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px; font-weight: 600; line-height: 1.4;
    color: var(--ail-blue);
    margin: 28px 0 14px;
}
/* black-bold sub-question heading (e.g. "But is Execution Alone Enough…") */
.ail-h--dark { color: var(--ail-body); font-weight: 700; }
.ail-question {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 700; line-height: 1.45;
    color: var(--ail-cyan);
    margin: 4px 0 22px;
}

/* ---- Full-width images (placeholders until real sizes supplied) ---- */
.ail-figure { margin: 20px 0 26px; }
.ail-figure img { display: block; width: 100%; height: auto; }
.ail-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 8;
    background: #eef0f3;
    border: 1px dashed #c4cad2;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    color: #97a1ac;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 600; letter-spacing: .3px;
    text-align: center;
}
.ail-img-placeholder small { font-size: 12px; font-weight: 400; color: #adb5bd; }
/* 2nd image — sized so the section fits within one view */
.ail-figure--compact .ail-img-placeholder { aspect-ratio: 16 / 6.5; }

/* ---- Pull quote (blue→cyan gradient text on light-teal) ---- */
.ail-quote-wrap { padding: 40px 0 60px; }
.ail-quote {
    background: var(--ail-box);
    padding: clamp(30px, 4vw, 48px);
}
.ail-quote p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 700; line-height: 1.4;
    background: linear-gradient(90deg, var(--ail-cyan) 0%, var(--ail-blue) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin: 0 0 20px;
}
.ail-quote p:last-child { margin-bottom: 0; }

/* ---- Prev / Next page navigation ---- */
.ail-pagenav { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 48px 0 90px; }
/* the Accelerating page's pull-quote already leaves space below it */
.ail-page .ail-pagenav { padding-top: 10px; }
.ail-pnav {
    flex: 1 1 0; max-width: 510px;
    display: flex; align-items: center; gap: 14px;
    border: 1px solid #d9dde3; border-radius: 10px;
    padding: 15px 24px; text-decoration: none; background: #fff;
    transition: background .35s ease, border-color .35s ease;
}
.ail-pnav--next { justify-content: flex-end; text-align: right; }
.ail-pnav-label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--ail-body);
    line-height: 1.35; white-space: nowrap; transition: color .35s ease;
}
.ail-pnav-ico { flex-shrink: 0; display: flex; align-items: center; }
.ail-pnav-ico svg { width: 20px; height: 20px; display: block; }
.ail-pnav:hover {
    background: linear-gradient(90deg, #1565C0 0%, #7B2FA8 50%, #C01535 100%);
    border-color: transparent;
}
.ail-pnav:hover .ail-pnav-label { color: #fff; }
.ail-pnav:hover .ail-pnav-ico svg polyline { stroke: #fff; }

/* ============================================================
   PERFORMANCE HIGHLIGHTS FY 2025-26  (namespaced "phl-" —
   "pf-" was already used by the portfolio chart component)
   Colours from the report cutout; graphs are animated SVGs.
   ============================================================ */
.phl-page {
    background: #ffffff;
    --phl-blue:   #00729c;   /* headings */
    --phl-cyan:   #00b4d8;   /* chart titles */
    --phl-purple: #975ea7;   /* lead copy */
    --phl-body:   #1a1a1a;
    --ail-body:   #1a1a1a;   /* for reused prev/next nav */
}

/* Hero: heading + intro (left) + image (right) on a grey patch,
   same treatment as the Accelerating Infrastructure page. */
.phl-hero { background: #eef6fb; padding: 110px 0 0; }
.phl-hero-row {
    display: grid; grid-template-columns: 2fr 3fr;
    gap: 50px; align-items: stretch; min-height: 480px;
}
.phl-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.phl-hero-img { position: relative; min-height: 480px; }
.phl-hero-img img,
.phl-hero-img .ail-img-placeholder {
    position: absolute; inset: 0;
    width: 100%; height: 100%; aspect-ratio: auto;
    object-fit: cover;
}
.phl-eyebrow {
    display: block; font-family: 'Noto Sans', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--phl-body); margin: 0 0 16px;
}
.phl-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.12;
    color: var(--phl-blue); margin: 0 0 20px;
}
.phl-lead {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; font-weight: 700; line-height: 1.6;
    color: var(--phl-purple); margin: 0;
}

/* Metrics sections */
.phl-section { padding: 28px 0 0; }
.phl-kom {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--phl-blue); margin: 0 0 12px;
}
/* Two aligned columns of charts (row-major grid so a left chart and
   its right neighbour share a grid row and line up top-to-top). */
.phl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px; row-gap: 14px;
    align-items: start;
}
.phl-group-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--phl-body);
    line-height: 1.3; margin: 0;
}
.phl-group-title sup { line-height: 0; font-size: 0.62em; }
.phl-chart { width: 100%; max-width: 100%; margin: 0; }
.phl-chart-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--phl-cyan); margin: 0 0 1px;
}
.phl-chart-unit { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #888; margin: 0 0 8px; }
/* thin purple frame around each graph */
.phl-graph { border: 1px solid #975ea7; border-radius: 4px; padding: 6px 14px; }
.phl-chart svg { display: block; width: 100%; height: auto; max-width: 100%; }
.phl-foot {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px; line-height: 1.5; color: #666; margin: 18px 0 0; max-width: 884px;
}
.phl-foot sup { font-size: 9px; }

/* Animated bars — grow from the left when scrolled into view */
.phl-bar {
    transform: scaleX(0); transform-box: fill-box; transform-origin: left center;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}
.phl-chart.in-view .phl-bar { transform: scaleX(1); }

/* ============================================================
   MESSAGE FROM THE CHAIRMAN
   Colours from the report cutout; single readable column.
   ============================================================ */
.mfc-page {
    background: #ffffff;
    --mfc-blue:   #00729c;
    --mfc-cyan:   #00b4d8;
    --mfc-purple: #975ea7;
    --mfc-body:   #1a1a1a;
    --ail-body:   #1a1a1a;
}
/* Hero: title (left) + portrait (right) on grey patch */
.mfc-hero { background: #eef6fb; padding: 110px 0 0; }
.mfc-hero-row { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; align-items: stretch; min-height: 470px; }
.mfc-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.mfc-hero-img { position: relative; min-height: 470px; }
.mfc-hero-img img,
.mfc-hero-img .ail-img-placeholder {
    position: absolute; inset: 0; width: 100%; height: 100%;
    aspect-ratio: auto; object-fit: cover; object-position: top center;
}
.mfc-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--mfc-body); margin: 0 0 16px; }
.mfc-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.14; color: var(--mfc-blue); margin: 0; }
/* attributed quote inside the banner */
.mfc-hero-quote { margin: 26px 0 0; }
.mfc-hero-quote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.5vw, 20px); font-weight: 700; line-height: 1.4; color: #6f6f80; margin: 0 0 14px; }

/* Body — full width, text flows left to right */
.mfc-section { padding: 46px 0 0; }
.mfc-body { max-width: 100%; }
.mfc-body p.mfc-greeting { font-family: 'Noto Sans', sans-serif; font-size: 19px; font-weight: 700; color: var(--mfc-blue); margin: 0 0 16px; }
.mfc-body p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--mfc-body); margin: 0 0 18px; }
/* teal section sub-heading */
.mfc-body .mfc-h { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--mfc-blue); margin: 32px 0 12px; }
/* sign-off block */
.mfc-signoff { margin: 30px 0 0; font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--mfc-body); }
.mfc-signoff p { margin: 0; }
.mfc-signoff .mfc-name { font-weight: 700; margin-top: 14px; }
.mfc-signoff .mfc-company { margin-top: 14px; }

/* Pull quote (purple, gradient quote icon) */
.mfc-pullquote { margin: 36px 0; }
.mfc-qico { display: block; width: 46px; height: auto; margin: 0 0 14px; }
.mfc-pullquote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(19px, 2vw, 24px); font-weight: 700; line-height: 1.4; color: var(--mfc-purple); margin: 0; }

/* Attributed block quote (grey, purple rule) */
.mfc-blockquote { margin: 36px 0; max-width: 700px; }
.mfc-blockquote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(19px, 2vw, 24px); font-weight: 700; line-height: 1.4; color: #6f6f80; margin: 0 0 16px; }
.mfc-rule { width: 60px; height: 3px; background: var(--mfc-purple); margin: 0 0 12px; }
.mfc-attr { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 400; color: #555; margin: 0; }

/* Stat callouts */
.mfc-stats { display: flex; flex-wrap: wrap; gap: 28px 64px; margin: 30px 0; }
.mfc-stat { min-width: 220px; }
.mfc-stat-num {
    display: block; font-family: 'Noto Sans', sans-serif; font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; line-height: 1.05;
    background: linear-gradient(90deg, var(--mfc-cyan) 0%, var(--mfc-blue) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.mfc-stat-num small { font-size: .5em; font-weight: 800; }
.mfc-stat-num .rs { font-weight: 800; }
.mfc-stat-label { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #444; position: relative; padding-left: 26px; margin: 10px 0 0; }
.mfc-stat-label::before { content: ""; position: absolute; top: .7em; left: 0; width: 18px; height: 3px; background: var(--mfc-purple); }

/* Gratitude bullets */
.mfc-bullets { list-style: none; margin: 0 0 18px; padding: 0; }
.mfc-bullets li { position: relative; padding-left: 20px; font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--mfc-body); margin: 0 0 14px; }
.mfc-bullets li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; background: var(--mfc-purple); }

/* Closing */
.mfc-close { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 400; color: var(--mfc-body); line-height: 1.9; margin: 8px 0 0; }

/* ============================================================
   ADANI ENERGY SOLUTIONS - AT A GLANCE
   ============================================================ */
.aag-page {
    background: #ffffff;
    --aag-blue: #00729c; --aag-cyan: #3cb1b6; --aag-purple: #975ea7; --aag-body: #1a1a1a;
    --ail-body: #1a1a1a;
}
/* Hero (accelerating-style banner) */
.aag-hero { background: #eef6fb; padding: 110px 0 0; }
.aag-hero-row { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: stretch; min-height: 480px; }
.aag-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.aag-hero-img { position: relative; min-height: 480px; }
.aag-hero-img img, .aag-hero-img .ail-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.aag-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--aag-body); margin: 0 0 16px; }
.aag-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; line-height: 1.1; color: var(--aag-blue); margin: 0 0 22px; }
.aag-lead { font-family: 'Noto Sans', sans-serif; font-size: clamp(17px, 1.6vw, 20px); font-weight: 700; line-height: 1.45; color: var(--aag-purple); margin: 0; }

/* Intro prose */
.aag-section { padding: 46px 0 0; }
.aag-intro p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--aag-body); margin: 0 0 18px; }

/* Vision / Mission / Values — stacked, subs side by side */
.aag-vmv { margin-top: 40px; }
.aag-vmv-block { margin: 0 0 34px; }
.aag-vmv-block:last-child { margin-bottom: 0; }
.aag-vmv-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: var(--aag-purple); margin: 0 0 10px; }
.aag-vmv-subs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 48px; margin-top: 12px; align-items: start; }
.aag-sub { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #00b4d8; margin: 0 0 3px; }
.aag-vmv p:not(.aag-sub) { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--aag-body); margin: 0; }

/* Full-width figures */
.aag-figure { margin: 46px 0 8px; }
.aag-figure img { display: block; width: 100%; height: auto; }
.aag-figure .ail-img-placeholder { aspect-ratio: 24 / 8; }

/* Our Customers */
.aag-cust-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--aag-blue); margin: 0 0 6px; }
.aag-cust-intro { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: var(--aag-body); margin: 0 0 24px; }
.aag-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: stretch; }
.aag-card { display: flex; flex-direction: column; }
.aag-card-bar { height: 9px; }
.aag-card-inner { padding: 16px 14px; flex: 1; }
.aag-card h4 { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--aag-body); margin: 0 0 8px; line-height: 1.3; }
.aag-card p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.55; color: #333; margin: 0; }
.aag-card--teal .aag-card-bar { background: var(--aag-cyan); }
.aag-card--teal .aag-card-inner { background: #e7f5f5; }
.aag-card--purple .aag-card-bar { background: var(--aag-purple); }
.aag-card--purple .aag-card-inner { background: #f3ecf6; }
/* curved outer ends, boxes stick together */
.aag-card:first-child .aag-card-bar { border-top-left-radius: 10px; }
.aag-card:last-child .aag-card-bar { border-top-right-radius: 10px; }
.aag-card:first-child .aag-card-inner { border-bottom-left-radius: 10px; }
.aag-card:last-child .aag-card-inner { border-bottom-right-radius: 10px; }

/* Shareholding & Operating Structure */
.aag-org-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #00b4d8; text-align: center; margin: 0 0 30px; }
.aag-org-top { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.aag-org-owner { background: #d9edf7; padding: 16px 30px; text-align: center; min-width: 210px; }
.aag-org-owner span { display: block; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--aag-body); }
.aag-org-owner b { font-family: 'Noto Sans', sans-serif; font-size: 18px; color: var(--aag-cyan); }
.aag-org-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 10px; }
.aag-org-logo img { height: 34px; width: auto; }
.aag-org-logo small { font-family: 'Noto Sans', sans-serif; font-size: 11px; color: #666; }
.aag-org-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 26px; }
.aag-org-head { background: var(--aag-purple); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; text-align: center; padding: 12px 8px; line-height: 1.25; }
.aag-org-body { padding: 16px 2px 0; }
.aag-org-lbl { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--aag-body); margin: 16px 0 3px; line-height: 1.3; }
.aag-org-lbl:first-child { margin-top: 0; }
.aag-org-num { display: block; font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--aag-cyan); line-height: 1.1; }
.aag-org-num small { font-size: .5em; font-weight: 800; }
.aag-org-cap { font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.4; color: #555; margin: 2px 0 0; }
.aag-org-rule { height: 2px; background: var(--aag-cyan); margin: 14px 0; max-width: 150px; }
.aag-org-ul { list-style: none; margin: 6px 0 0; padding: 0; }
.aag-org-ul li { position: relative; padding-left: 14px; font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.5; color: #444; margin: 0 0 8px; }
.aag-org-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--aag-purple); }
.aag-org-note { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.55; color: #666; margin: 30px 0 0; }
.aag-org-note strong { color: var(--aag-body); }
.aag-org-diagram { margin: 4px 0 0; text-align: center; }
.aag-org-diagram img { display: inline-block; width: 100%; max-width: 840px; height: auto; }

/* ============================================================
   PORTFOLIO AND PRESENCE
   ============================================================ */
.pp-page {
    background: #ffffff;
    --pp-teal: #00729c; --pp-blue: #00b4d8; --pp-purple: #975ea7; --pp-body: #1a1a1a;
    --ail-body: #1a1a1a;
}
/* Hero banner */
.pp-hero { background: #eef6fb; padding: 110px 0 0; }
.pp-hero-row { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: stretch; min-height: 480px; }
.pp-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.pp-hero-img { position: relative; min-height: 480px; }
.pp-hero-img img, .pp-hero-img .ail-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.pp-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--pp-body); margin: 0 0 16px; }
.pp-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; line-height: 1.08; color: var(--pp-teal); margin: 0 0 22px; }
.pp-lead { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.5vw, 19px); font-weight: 700; line-height: 1.5; color: var(--pp-purple); margin: 0; }

/* Sections */
.pp-section { padding: 46px 0 0; }
.pp-h { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--pp-teal); margin: 0 0 6px; }
#ppPresence .pp-h { text-align: center; margin-bottom: 24px; }
/* below-banner intro — full width */
.pp-intro { padding: 40px 0 0; }
.pp-intro p { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.75; color: var(--pp-purple); margin: 0; }

/* Business verticals — full-width text, stats side by side */
.pp-vertical { padding: 28px 0; border-top: 1px solid #e6e6e6; }
.pp-vertical:first-of-type { border-top: none; padding-top: 18px; }
.pp-vert-head { display: flex; align-items: center; gap: 16px; }
.pp-vert-icon { width: 52px; height: auto; flex-shrink: 0; }
.pp-vert-title { font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--pp-body); margin: 0; }
.pp-vert-desc { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: #333; margin: 10px 0 22px; }
.pp-stats { display: flex; flex-wrap: wrap; gap: 24px 48px; }
.pp-stat { min-width: 150px; max-width: 290px; }
.pp-stat-num {
    display: block; font-family: 'Noto Sans', sans-serif; font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; line-height: 1.05;
    background: linear-gradient(90deg, var(--pp-blue) 0%, var(--pp-teal) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.pp-stat-num small { font-size: .5em; font-weight: 800; }
.pp-stat-label { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.45; color: #444; position: relative; padding-left: 22px; margin: 8px 0 0; }
.pp-stat-label::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 3px; background: var(--pp-purple); }
.pp-foot { font-family: 'Noto Sans', sans-serif; font-size: 12.5px; color: #666; margin: 24px 0 0; }

/* Full-width figure */
.pp-figure { margin: 44px 0 8px; }
.pp-figure img { width: 100%; height: auto; display: block; }
.pp-figure .ail-img-placeholder { aspect-ratio: 24 / 8; }

/* Pan-India presence / map */
.pp-legend { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 0 0 22px; }
.pp-legend-item { display: flex; align-items: center; gap: 8px; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #333; }
.pp-legend-pin { flex-shrink: 0; display: block; }
.pp-map { text-align: center; margin: 6px 0 0; }
.pp-map img { display: block; width: 100%; max-width: 540px; height: auto; margin: 0 auto; }
.pp-notes { font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.65; color: #666; margin: 26px 0 0; }
.pp-notes strong { color: var(--pp-body); }
.pp-notes em { font-style: italic; }

/* Assets table */
.pp-table-wrap { overflow-x: auto; margin-top: 26px; }
.pp-table { width: 100%; border-collapse: collapse; min-width: 780px; font-family: 'Noto Sans', sans-serif; font-size: 13px; }
.pp-table thead th { background: #ffffff; color: #1a1a1a; font-weight: 700; text-align: right; padding: 9px 10px; border-top: 2px solid var(--pp-purple); border-bottom: 2px solid var(--pp-purple); line-height: 1.3; vertical-align: bottom; }
.pp-table thead th:first-child, .pp-table thead th.pp-th-asset { text-align: left; }
.pp-table td { padding: 6px 10px; border-bottom: 1px solid #edeff1; color: #333; text-align: right; vertical-align: top; }
.pp-table td.pp-td-asset { text-align: left; }
.pp-table td.pp-sr { text-align: center; color: #fff; font-weight: 700; width: 30px; }
.pp-sr--op { background: var(--pp-purple); }
.pp-sr--uc { background: #00729c; }
.pp-sr--dist { background: #00aeef; }
.pp-sr--sm { background: #3cb1b6; }
.pp-sec td { background: transparent; font-weight: 700; color: #1a1a1a; text-align: left; }
.pp-spacer td { padding: 0; height: 18px; border-top: none; border-bottom: 1px solid #c8ccd0; background: #fff; }
.pp-total td { font-weight: 700; color: #1a1a1a; border-top: 1px solid #d9d9d9; }
/* Smart Meters table — line above the header; purple line only under the last row */
.pp-table--sm thead th { border-top: 1px solid #c8ccd0; border-bottom: 1px solid #d9d9d9; }
.pp-table--sm tbody tr:last-child td { border-bottom: 2px solid var(--pp-purple); }

/* ============================================================
   INVESTMENT CASE
   ============================================================ */
.ic-page {
    background: #ffffff;
    --ic-purple: #975ea7; --ic-cyan: #00b4d8; --ic-blue: #00729c; --ic-body: #1a1a1a;
    --ail-body: #1a1a1a;
}
/* Banner — standard grey-patch style (text left, image right) */
.ic-hero { background: #eef6fb; padding: 110px 0 0; }
.ic-hero-row { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: stretch; min-height: 480px; }
.ic-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.ic-hero-img { position: relative; min-height: 480px; }
.ic-hero-img img, .ic-hero-img .ail-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.ic-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ic-body); margin: 0 0 16px; }
.ic-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.12; color: var(--ic-purple); margin: 0 0 22px; }
.ic-lead { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.5vw, 18px); font-weight: 400; line-height: 1.55; color: var(--ic-body); margin: 0; }
/* Intro rest */
.ic-intro { padding: 44px 0 0; }
.ic-intro p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--ic-body); margin: 0; }

/* Full-width figure */
.ic-figure { margin: 48px 0 8px; }
.ic-figure img { display: block; width: 100%; height: auto; }
.ic-figure .ail-img-placeholder { aspect-ratio: 1296 / 527; }

/* Each case */
.ic-case { padding: 48px 0 0; }
.ic-bar { display: flex; align-items: stretch; border: 1px solid var(--ic-cyan); border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.ic-bar-tag { background: var(--ic-cyan); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; padding: 13px 24px; display: flex; align-items: center; white-space: nowrap; }
.ic-bar-title { color: var(--ic-blue); font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; padding: 13px 24px; display: flex; align-items: center; line-height: 1.25; }
.ic-summary { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--ic-body); margin: 0 0 24px; }
/* full-width text; stats float right so text wraps around them */
.ic-body { display: block; }
.ic-body::after { content: ""; display: block; clear: both; }
.ic-stats { float: right; width: 300px; margin: 2px 0 22px 48px; }
.ic-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--ic-body); margin: 22px 0 8px; line-height: 1.3; }
.ic-text > .ic-h:first-child { margin-top: 0; }
.ic-p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.6; color: #333; margin: 0 0 10px; }
.ic-ul { list-style: none; margin: 0 0 10px; padding: 0; }
.ic-ul li { position: relative; padding-left: 18px; font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.55; color: #333; margin: 0 0 10px; }
.ic-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; background: var(--ic-purple); }
/* nested sub-bullets */
.ic-ul--sub { margin: 8px 0 4px; padding-left: 4px; }
.ic-ul--sub li { font-size: 14px; padding-left: 16px; margin-bottom: 8px; }
.ic-ul--sub li::before { width: 5px; height: 5px; top: .6em; }
.ic-foot { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #666; margin: 22px 0 0; }

/* Stats (floated) */
.ic-stats-title { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ic-body); margin: 0 0 12px; }
.ic-stat-label-grp { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ic-cyan); margin: 18px 0 6px; }
.ic-stat-label strong { color: var(--ic-body); font-weight: 700; }
.ic-stat { margin: 0 0 14px; }
.ic-stat-num {
    display: block; font-family: 'Noto Sans', sans-serif; font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; line-height: 1.1;
    background: linear-gradient(90deg, var(--ic-cyan) 0%, var(--ic-blue) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.ic-stat-num small { font-size: .55em; font-weight: 800; }
.ic-stat-num .rs { font-weight: 800; }
.ic-stat-num sup { font-size: .5em; }
.ic-stat-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #444; position: relative; padding-left: 22px; margin: 4px 0 0; }
.ic-stat-label::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 3px; background: var(--ic-purple); }
.ic-stat-divider { height: 1px; background: #e2e2e2; margin: 18px 0; }

/* ============================================================
   AWARDS AND ACCOLADES
   ============================================================ */
.aw-page { background: #ffffff; --aw-teal: #00729c; --aw-body: #1a1a1a; --ail-body: #1a1a1a; }
/* Banner (grey patch, title left + image right) */
.aw-hero { background: #eef6fb; padding: 110px 0 0; }
.aw-hero-row { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: stretch; min-height: 480px; }
.aw-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.aw-hero-img { position: relative; min-height: 480px; }
.aw-hero-img img, .aw-hero-img .ail-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.aw-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.8vw, 52px); font-weight: 800; line-height: 1.06; color: #00b4d8; margin: 0; }
/* Awards grid */
.aw-section { padding: 56px 0 20px; }
.aw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 40px; align-items: stretch; }
.aw-item { border: 1px solid var(--aw-teal); border-radius: 12px; padding: 26px 26px; }
.aw-item img { display: block; width: 58px; height: auto; margin: 0 0 16px; }
.aw-item p { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--aw-body); margin: 0; }

/* ============================================================
   BUSINESS MODEL
   ============================================================ */
.bm-page { background: #ffffff; --bm-teal: #00729c; --bm-blue: #0093c7; --bm-cyan: #00b4d8; --bm-body: #1a1a1a; --ail-body: #1a1a1a; }
/* Narrow banner (no image), left-aligned — only a little grey patch so the next section peeks */
.bm-hero { background: #eef6fb; padding: 108px 0 44px; }
.bm-page .bm-eyebrow { display: block; text-align: left; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--bm-body); margin: 0 0 14px; }
.bm-page .bm-title { text-align: left; font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; line-height: 1.08; color: var(--bm-teal); margin: 0; }

/* Blue bars — solid light-blue fill (no gradient) */
.bm-page .bm-section { padding: 30px 0; background: #f5f6f8; }
.bm-page .bm-section--blue { background: #e8f4f9; }
.bm-bar { display: flex; align-items: center; background: #0093c7; color: #fff; margin: 0 0 24px; border-radius: 3px; }
.bm-bar-tag { display: flex; align-items: center; gap: 12px; padding: 13px 26px; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; white-space: nowrap; }
.bm-bar-tag::after { content: none; }
.bm-bar-title { padding: 13px 26px; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.25; }
.bm-h { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--bm-teal); margin: 30px 0 16px; }
.bm-sub { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--bm-body); margin: 0 0 18px; }
.bm-foot { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.5; color: #666; margin: 14px 0 0; }
.bm-obm > .bm-foot { margin-top: 18px; }

/* Capitals — side by side */
.bm-caps { display: grid; gap: 26px 44px; margin-top: 26px; }
.bm-caps--3 { grid-template-columns: repeat(3, 1fr); }
.bm-caps--2 { grid-template-columns: repeat(2, 1fr); }
.bm-cap { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.bm-cap-icon { width: 46px; height: 46px; border: 1px dashed #c4cad2; border-radius: 6px; background: #eef0f3; flex-shrink: 0; }
.bm-ico { width: 46px; height: 46px; object-fit: contain; display: block; flex-shrink: 0; }
.bm-foot-hl { color: var(--bm-cyan); }
.bm-cap-head { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--bm-teal); margin: 2px 0 8px; }
.bm-cap-divider { grid-column: 1 / -1; height: 1px; background: #d5d9dd; margin: 4px 0 10px; }
.bm-ul { list-style: none; margin: 0; padding: 0; }
.bm-ul li { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #333; margin: 0 0 6px; break-inside: avoid; }
.bm-ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--bm-cyan); }
/* Detail parts — grey panel, two aligned columns, white divider under each part */
.bm-details { display: grid; grid-template-columns: 1fr 1fr; column-gap: 46px; margin-top: 24px; background: #e8ecef; padding: 28px 32px; border-radius: 4px; }
.bm-part { padding: 0 0 18px; margin: 0 0 18px; border-bottom: 1px solid #ffffff; }
.bm-part:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bm-details--even .bm-part:nth-last-child(2) { border-bottom: none; }

/* Our Business & Operating Model — content sits on the section's light-blue band */
.bm-obm { background: transparent; padding: 0; }
.bm-cv-head { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; }
.bm-cv-head .bm-cap-icon, .bm-cv-head .bm-ico { margin: 0; }
.bm-cv-head .bm-ico { width: 52px; height: 52px; }
.bm-cv-head h3 { font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--bm-teal); margin: 0; }
.bm-infographic-wrap { margin: 20px 0 4px; }
.bm-infographic { display: block; width: 100%; max-width: 800px; height: auto; }
.bm-cols .bm-infographic-wrap { margin-top: 0; }
.bm-cols .bm-infographic { max-width: 380px; }
.bm-vision { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; margin: 28px 0 0; }
.bm-vision .bm-ico { width: 52px; height: 52px; }
.bm-vision h3 { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--bm-teal); margin: 2px 0 6px; }
.bm-vision p { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--bm-body); margin: 0; }

/* Business activities */
.bm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; align-items: start; }
.bm-biz { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 36px; }
.bm-biz-item .bm-cap-icon, .bm-biz-item .bm-ico { margin: 0 0 12px; }
.bm-biz-head { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--bm-cyan); margin: 0 0 6px; }
.bm-biz-desc { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #444; margin: 0 0 12px; }
.bm-num { display: block; font-family: 'Noto Sans', sans-serif; font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; color: var(--bm-cyan); line-height: 1.1; }
.bm-num small { font-size: .5em; font-weight: 800; }
.bm-num-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #333; margin: 2px 0 12px; }

/* Illustration / image placeholders */
.bm-illus { border: 1px dashed #b7c4cc; background: #f4f8fb; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #8a97a4; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; text-align: center; border-radius: 6px; }
.bm-illus small { font-size: 12px; font-weight: 400; color: #adb5bd; }

/* Key strategic priorities + enablers */
.bm-kp { list-style: none; margin: 0; padding: 0; counter-reset: kp; }
.bm-kp li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid #e2e2e2; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--bm-body); line-height: 1.35; }
.bm-kp li::before { counter-increment: kp; content: counter(kp); display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--bm-blue); color: var(--bm-blue); font-weight: 700; font-size: 16px; border-radius: 4px; }
.bm-enablers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 26px; margin-top: 12px; }
.bm-enabler { text-align: center; }
.bm-enabler .bm-cap-icon, .bm-enabler .bm-ico { width: 46px; height: 46px; margin: 0 auto 10px; }
.bm-enabler span { display: block; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.35; color: var(--bm-body); }

/* ======================================================================
   STAKEHOLDER ENGAGEMENT  (.se-)
   ====================================================================== */
.se-page { background: #ffffff; --se-purple: #975ea7; --se-teal: #3cb1b6; --se-blue: #00729c; --se-body: #1a1a1a; --ail-body: #1a1a1a; }

/* Banner — grey patch, left-aligned, no image, with intro paragraph */
.se-hero { background: #eef6fb; padding: 108px 0 48px; }
.se-eyebrow { display: block; text-align: left; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--se-body); margin: 0 0 14px; }
.se-title { text-align: left; font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; line-height: 1.08; color: var(--se-purple); margin: 0 0 22px; }
.se-intro { font-family: 'Noto Sans', sans-serif; font-size: 17px; line-height: 1.7; font-weight: 400; color: var(--se-body); margin: 0; max-width: 1040px; }

/* Content sections */
.se-section { padding: 46px 0; }
.se-section--tint { background: #f4f8fb; }
.se-h { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 27px); font-weight: 700; line-height: 1.2; margin: 0 0 14px; }
.se-h--purple { color: var(--se-purple); }
.se-h--teal { color: var(--se-teal); }
.se-h--blue { color: var(--se-blue); }
.se-h--black { color: var(--se-body); }
.se-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--se-body); margin: 0 0 8px; }

/* Infographics */
.se-figure { margin: 26px 0 0; }
.se-figure--band { background: #e8f4f9; padding: 30px 34px; border-radius: 6px; }
.se-infographic { display: block; width: 100%; height: auto; margin: 0 auto; }
.se-figure--band .se-infographic { max-width: 800px; }
.se-infographic--steps { max-width: 820px; }
.se-infographic--matrix { max-width: 680px; }

/* Read-more link */
.se-readmore { margin: 22px 0 0; }
.se-readmore a { display: inline-flex; align-items: center; gap: 10px; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--se-blue); text-decoration: none; }
.se-readmore a:hover { text-decoration: underline; }
.se-readmore-ico { display: inline-flex; width: 18px; height: 18px; color: var(--se-blue); flex-shrink: 0; }
.se-readmore-ico svg { width: 18px; height: 18px; }

/* ======================================================================
   MATERIALITY ASSESSMENT  (.ma-)  — reuses .se- banner/section/heading
   ====================================================================== */
/* Full-width image (below the text) */
.ma-fullimg { margin: 32px 0 0; }
.ma-fullphoto { display: block; width: 100%; aspect-ratio: 1296 / 527; height: auto; object-fit: cover; object-position: center; border-radius: 6px; }
.ma-imgph-full { border: 1px dashed #b7c4cc; background: #f4f8fb; aspect-ratio: 1296 / 527; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #8a97a4; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; text-align: center; border-radius: 6px; }
.ma-imgph-full small { font-size: 12px; font-weight: 400; color: #adb5bd; }
/* Sub-heading (Key Factors) — matches the Megatrends heading style */
.ma-subhead { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--se-body); margin: 36px 0 6px; }

/* Diagram sizing */
.ma-inf-double { max-width: 820px; margin: 0 auto; }
.ma-inf-approach { max-width: 600px; margin: 0 auto; }
.ma-inf-factors { max-width: 980px; margin: 0 auto; }
.ma-inf-matrix { max-width: 820px; margin: 0 auto; }

/* Megatrends box */
.ma-megatrends { border: 1px solid #00729c; border-radius: 6px; padding: 24px 30px 8px; margin-top: 30px; }
.ma-megatrends-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--se-body); margin: 0 0 16px; }
.ma-megatrends-ul { list-style: none; margin: 0; padding: 0; column-count: 3; column-gap: 40px; }
.ma-megatrends-ul li { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.5; color: #333; margin: 0 0 14px; break-inside: avoid; }
.ma-megatrends-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--se-purple); }

/* Double Materiality — title, subtitle, Impact/Risk/Opportunity cards */
.ma-center { text-align: center; }
.ma-dm-sub { text-align: center; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--se-purple); margin: 0 auto 8px; max-width: 760px; }
.ma-dm-cols { display: grid; grid-template-columns: 1fr 2fr; gap: 44px; align-items: stretch; margin-top: 34px; }
.ma-dm-col { display: flex; flex-direction: column; }
.ma-dm-h { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 1px solid currentColor; }
.ma-dm-h--impact { color: var(--se-blue); }
.ma-dm-h--fin { color: var(--se-purple); }
.ma-dm-two { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; flex: 1; align-items: stretch; }
.ma-dm-col > .ma-card { flex: 1; }
.ma-card { position: relative; border-radius: 14px; padding: 76px 24px 26px; overflow: hidden; }
.ma-card--impact { background: #e8f6fb; }
.ma-card--fin { background: #f4edf8; }
.ma-card-tab { position: absolute; top: 22px; left: 0; display: inline-block; padding: 9px 28px 9px 24px; border-radius: 0 22px 22px 0; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.ma-card-tab--impact { background: #00b4d8; }
.ma-card-tab--fin { background: var(--se-purple); }
.ma-card p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #333; margin: 0; }
/* Footnote text sits ABOVE the divider line (coloured per column) */
.ma-card-foot { display: flex; flex-direction: column; justify-content: flex-start; min-height: 62px; font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #444; margin: 18px 0 0; padding-bottom: 14px; border-bottom: 2px solid #d5d9dd; }
.ma-dm-col .ma-card-foot { border-bottom-color: #00b4d8; }
.ma-dm-col--fin .ma-card-foot { border-bottom-color: var(--se-purple); }

/* Prioritising — Environment / Social / Governance topic legend */
.ma-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; margin-top: 34px; }
.ma-legend-h { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid currentColor; }
.ma-legend-h--env { color: #3fa535; }
.ma-legend-h--soc { color: #00b4d8; }
.ma-legend-h--gov { color: #ef8b22; }
.ma-legend-ul { list-style: none; margin: 0; padding: 0; }
.ma-legend-ul li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.4; color: #333; padding: 9px 0; border-bottom: 1px solid #e2e6ea; }
.ma-tag { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 30px; padding: 0 8px; background: #fff; border: 1px solid #e2e6ea; border-bottom-width: 3px; border-radius: 3px; font-size: 14px; font-weight: 800; }
.ma-tag--env { color: #3fa535; border-bottom-color: #3fa535; }
.ma-tag--soc { color: #00b4d8; border-bottom-color: #00b4d8; }
.ma-tag--gov { color: #ef8b22; border-bottom-color: #ef8b22; }

/* ======================================================================
   RISKS AND OPPORTUNITIES  (.ro-)  — banner reuses .ic- (ic-page)
   ====================================================================== */
.ro-page { --ro-purple: #975ea7; --ro-blue: #00729c; --ro-cyan: #00b4d8; --ro-teal: #3cb1b6; --ro-body: #1a1a1a; }
.ro-section { padding: 46px 0; }
.ro-section--tint { background: #f4f6f8; }
.ro-section--blue { background: #e8f4f9; }
.ro-h { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 27px); font-weight: 700; line-height: 1.2; color: var(--ro-blue); margin: 0 0 20px; }
.ro-h--sub { margin-top: 44px; }
.ro-h--black { color: var(--ro-body); }
.ro-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--ro-body); margin: 0 0 16px; }
.ro-hl { color: var(--ro-cyan); }

/* CRO quote card */
.ro-quote { display: grid; grid-template-columns: 64px 1fr; gap: 22px; background: #eef8fb; border-radius: 10px; padding: 34px 40px; }
.ro-quote-ico { width: 56px; height: auto; }
.ro-quote-body p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--ro-body); margin: 0 0 16px; }
.ro-quote-by { border-left: 3px solid var(--ro-blue); padding-left: 12px; margin: 22px 0 6px !important; font-size: 15px !important; line-height: 1.4 !important; }
.ro-quote-src { font-size: 13px !important; color: #666 !important; margin: 0 !important; }

/* Risk governance — full-width text, ERM box below (full width) */
.ro-ermbox { background: #e8f4f9; border-radius: 8px; padding: 26px 30px; margin-top: 26px; }
.ro-ermbox-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--ro-blue); margin: 0 0 12px; }
.ro-ermbox p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; font-weight: 700; color: var(--ro-blue); margin: 0; }

/* Diagrams */
.ro-figure { margin: 24px 0 0; }
.ro-infographic { display: block; width: 100%; height: auto; max-width: 730px; margin: 0 auto; }

/* Roles and Responsibilities — light-blue cards on a light-blue band */
.ro-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
.ro-role { background: #d7ebf3; border-radius: 8px; padding: 22px 24px; }
.ro-role-h { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--ro-cyan); margin: 0 0 4px; }
.ro-role-sub { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: #6b7b86; margin: 0 0 12px; }
.ro-role-ul { list-style: none; margin: 0; padding: 0; }
.ro-role-ul li { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #333; margin: 0 0 9px; }
.ro-role-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--ro-purple); }

/* Sub-headings (black bold) */
.ro-subhead { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--ro-body); margin: 34px 0 14px; }
.ro-subhead--first { margin-top: 0; }
.ro-subhead--blue { color: var(--ro-blue); }
.ro-infographic--wide { max-width: 1000px; }
.ro-infographic--heat { max-width: 820px; }

/* Building Risk Culture — image floats right, text wraps */
.ro-float { float: right; width: 42%; max-width: 520px; margin: 4px 0 18px 42px; }
.ro-imgph-float { border: 1px dashed #b7c4cc; background: #f4f8fb; aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #8a97a4; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; text-align: center; border-radius: 6px; }
.ro-imgph-float small { font-size: 12px; font-weight: 400; color: #adb5bd; }

/* Risk Prioritisation — para left, table right, top-aligned */
.ro-prio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; align-items: start; margin-top: 16px; }
.ro-prio-row .ro-tablewrap { margin-top: 0; }
.ro-prio-row .ro-table--prio { max-width: none; }

/* CRC Terms-of-Reference box — white card, light-blue shadow on the left */
.ro-box { background: #fff; border-radius: 8px; padding: 30px 34px; margin-top: 30px; box-shadow: -10px 12px 26px rgba(0, 150, 199, .22); }
.ro-box-h { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--ro-blue); margin: 0 0 12px; }
.ro-box-lead { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.6; color: var(--ro-cyan); margin: 0 0 14px; }
.ro-box-ul { list-style: none; margin: 0 0 8px; padding: 0; }
.ro-box-ul li { position: relative; padding-left: 18px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.55; color: var(--ro-cyan); margin: 0 0 10px; }
.ro-box-ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; background: var(--ro-purple); }
.ro-readmore { margin-top: 20px !important; }
.ro-readmore a { align-items: flex-start; }
.ro-readmore strong { color: var(--ro-body); }

/* Full-width image placeholder */
.ro-fullimg { margin: 32px 0 0; }
.ro-fullimg img { display: block; width: 100%; height: auto; border-radius: 6px; }
.ro-float img { display: block; width: 100%; height: auto; border-radius: 6px; }
.ro-imgph-full { border: 1px dashed #b7c4cc; background: #f4f8fb; aspect-ratio: 1296 / 527; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #8a97a4; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; text-align: center; border-radius: 6px; }
.ro-imgph-full small { font-size: 12px; font-weight: 400; color: #adb5bd; }

/* IRM components / significance */
.ro-irm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; margin-top: 20px; }
.ro-def-ul { list-style: none; margin: 0; padding: 0; }
.ro-def-ul li { position: relative; padding-left: 18px; font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--ro-body); margin: 0 0 14px; }
.ro-def-ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--ro-purple); }
.ro-def-ul strong { color: var(--ro-body); }

/* Sub-sub-heading (Building Risk Culture items) */
.ro-subhead2 { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ro-body); margin: 22px 0 8px; }

/* Tables */
.ro-tablewrap { overflow-x: auto; margin-top: 16px; }
.ro-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; }
.ro-table th { font-size: 14px; font-weight: 700; color: var(--ro-body); text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--ro-cyan); }
.ro-table td { font-size: 14px; color: #333; padding: 12px 16px; border-bottom: 1px solid #e2e6ea; vertical-align: middle; }
/* Risk Prioritisation — full width, light-blue rules */
.ro-table--prio { border-top: 2px solid #00b4d8; }
.ro-table--prio th { border-bottom: 2px solid #00b4d8; }
.ro-table--prio tbody tr:last-child td { border-bottom: 2px solid #00b4d8; }
.ro-table--prio td:last-child, .ro-table--prio th:last-child { text-align: right; font-weight: 700; }

/* Our Top Risks — grey header bar (blue underline), light-blue rows, black dividers, white blue-font R-id */
.ro-table--top thead tr { background: #e6eaee; }
.ro-table--top th { border-bottom: 2px solid var(--ro-blue); }
.ro-table--top tbody tr { background: #e3eef6; }
.ro-table--top td { border-bottom: 1px solid #333; }
.ro-th-c, .ro-c { text-align: center; }
.ro-th-id { width: 52px; }
.ro-table--top td.ro-rid { font-weight: 800; color: var(--ro-blue); background: #fff; }
.ro-c img { height: 26px; width: auto; display: inline-block; vertical-align: middle; }

/* Legends under Our Top Risks — three columns in one line, light-blue dividers */
.ro-legends { display: flex; align-items: stretch; margin-top: 22px; }
.ro-legend { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 0 30px; }
.ro-legend:first-child { padding-left: 0; }
.ro-legend + .ro-legend { border-left: 1px solid #b9dcec; }
.ro-legend-t { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--ro-body); }
.ro-legend-items { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.ro-legend-i { display: inline-flex; align-items: center; gap: 7px; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #444; }
.ro-legend-i img { height: 18px; width: auto; }

/* Key Risks — Capitals / Material Topics / Strategic Priorities legends */
.ro-legend-label { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--ro-body); margin: 26px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #cdd6df; }
.ro-caps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.ro-cap { display: flex; align-items: center; gap: 10px; }
.ro-cap img { width: 34px; height: 34px; flex-shrink: 0; }
.ro-cap span { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--ro-blue); line-height: 1.3; }
.ro-mtopics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 30px; }
.ro-mt { display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; line-height: 1.35; }
.ro-mtag, .ro-stag { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 24px; padding: 0 6px; background: #fff; border: 1px solid #cfe0ea; border-bottom: 2px solid var(--ro-cyan); border-radius: 3px; font-family: 'Noto Sans', sans-serif; font-size: 12px; font-weight: 800; color: var(--ro-cyan); }
.ro-spriorities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 26px; }
.ro-sp { display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; line-height: 1.35; }
.ro-stag { border-bottom-color: var(--ro-purple); color: var(--ro-purple); }

/* R1-R8 risk cards */
.ro-riskcard { border: 1px solid #e2e6ea; border-radius: 8px; box-shadow: 6px 8px 0 -1px #eef1f4; margin-bottom: 34px; overflow: hidden; }
.ro-riskcard-head { display: flex; align-items: stretch; gap: 0; }
.ro-riskcard-id { display: flex; align-items: center; justify-content: center; min-width: 58px; padding: 14px 10px; background: var(--ro-cyan); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 800; }
.ro-riskcard-title { display: flex; align-items: center; padding: 14px 22px; font-family: 'Noto Sans', sans-serif; font-size: 19px; font-weight: 700; color: var(--ro-cyan); line-height: 1.25; border-bottom: 3px solid var(--ro-cyan); flex: 1; }
.ro-riskcard-body { display: grid; grid-template-columns: 1fr 250px; gap: 40px; padding: 26px 28px; }
.ro-rc-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ro-body); margin: 0 0 8px; }
.ro-rc-h + .ro-rc-ul { margin-bottom: 18px; }
.ro-rc-ul { list-style: none; margin: 0; padding: 0; }
.ro-rc-ul li { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #333; margin: 0 0 8px; }
.ro-rc-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--ro-purple); }
.ro-riskcard-side { border-left: 1px solid #e2e6ea; padding-left: 26px; }
.ro-side-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--ro-body); margin: 0 0 12px; }
.ro-side-h:not(:first-child) { margin-top: 22px; }
.ro-side-icons { display: flex; flex-wrap: wrap; gap: 12px; }
.ro-side-icons img { width: 34px; height: 34px; }
.ro-side-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Data tables (Scenario / Key Risks / Opportunities / Emerging) */
.ro-table--data { table-layout: fixed; width: 100%; }
.ro-table--data th { background: #e6eaee; font-size: 13px; border-bottom: none; vertical-align: middle; }
.ro-table--data td, .ro-table--data th { overflow-wrap: anywhere; }
.ro-table--data td { font-size: 12.5px; line-height: 1.5; vertical-align: top; border-bottom: 1px solid #dfe4e9; }
.ro-table--data .ro-td-key { background: #e3eef6; font-weight: 700; color: var(--ro-body); }
.ro-table--data .ro-td-key strong { color: var(--ro-blue); }
.ro-unbold { display: block; font-weight: 400; }
.ro-cell-ul { list-style: none; margin: 0; padding: 0; }
.ro-cell-ul li { position: relative; padding-left: 14px; margin: 0 0 6px; }
.ro-cell-ul li:last-child { margin-bottom: 0; }
.ro-cell-ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 0; background: var(--ro-purple); }
/* Wide tables — fit the container fully (columns wrap, all visible) */
.ro-table--krm th:nth-child(1), .ro-table--krm .ro-td-key { width: 12%; }
.ro-table--krm th:nth-child(2) { width: 17%; }
.ro-table--krm th:nth-child(3) { width: 11%; }
.ro-table--krm th:nth-child(4) { width: 10%; }
.ro-table--krm th:nth-child(5) { width: 24%; }
.ro-table--opp th:nth-child(1), .ro-table--opp .ro-td-key { width: 11%; }
.ro-table--opp th:nth-child(3) { width: 12%; }
.ro-table--opp th:nth-child(4) { width: 12%; }
.ro-table--emerging th:first-child, .ro-table--emerging .ro-td-key { width: 20%; }
.ro-p--note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; margin-top: 18px; }
.ro-p--note::before { content: "\002B"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1px solid var(--ro-cyan); border-radius: 50%; color: var(--ro-cyan); font-weight: 700; font-size: 13px; }

/* ======================================================================
   WHOLE-TIME DIRECTOR & CEO'S DESK  (.cd-) — ic-hero banner + mfc- body
   ====================================================================== */
.cd-title { color: var(--mfc-blue); }
.cd-hero-quote { margin: 30px 0 0; padding: 0; border: 0; }
.cd-hero-quote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(18px, 1.7vw, 23px); font-weight: 700; line-height: 1.42; color: #6f6f80; margin: 0; }
.cd-hero-rule { display: block; width: 56px; height: 3px; background: var(--mfc-purple); margin: 18px 0 12px; }
.cd-hero-attr { font-size: 15px !important; font-weight: 400 !important; color: #555 !important; }
.cd-page .mfc-signoff .mfc-company { margin-top: 0; }

/* ======================================================================
   STRATEGIC PRIORITIES  (.sp-)  — banner reuses .se- (se-page)
   ====================================================================== */
.sp-page { --sp-purple: #975ea7; --sp-blue: #00729c; --sp-cyan: #00b4d8; --sp-teal: #3cb1b6; --sp-body: #1a1a1a; }
/* Legends (Capitals / Material Topics / Risks) */
.sp-legend-label { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--sp-body); margin: 30px 0 14px; padding-bottom: 8px; border-bottom: 1px solid #cdd6df; }
.sp-caps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.sp-cap { display: flex; align-items: center; gap: 10px; }
.sp-cap img { width: 36px; height: 36px; flex-shrink: 0; }
.sp-cap span { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--sp-blue); line-height: 1.3; }
.sp-mtopics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 30px; }
.sp-risks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 26px; }
.sp-mt { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; line-height: 1.35; }
.sp-tag { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 26px; padding: 0 6px; background: #fff; border: 1px solid #cfe0ea; border-bottom: 2px solid var(--sp-blue); border-radius: 3px; font-family: 'Noto Sans', sans-serif; font-size: 12px; font-weight: 800; color: var(--sp-blue); }
.sp-band { background: #e8f4f9; }

/* Strategic Priority cards */
.sp-pcard { border: 1px solid #cfe4ee; border-radius: 8px; box-shadow: 7px 9px 0 -1px #eaf4f9; margin-bottom: 40px; overflow: hidden; }
.sp-pcard-head { display: flex; align-items: stretch; gap: 22px; padding: 18px 24px; }
.sp-pcard-badge { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--sp-teal); border-radius: 8px; padding: 8px 18px; flex-shrink: 0; }
.sp-pcard-badge-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; line-height: 1.1; color: var(--sp-teal); }
.sp-pcard-num { font-family: 'Noto Sans', sans-serif; font-size: 30px; font-weight: 800; color: var(--sp-teal); }
.sp-pcard-title { display: flex; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: clamp(18px, 1.8vw, 21px); font-weight: 700; color: var(--sp-teal); line-height: 1.25; }
.sp-pcard-body { border-top: 1px solid #dfeef4; padding: 26px 28px 0; }
.sp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.sp-ph { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--sp-body); margin: 0 0 12px; }
.sp-lead { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: #333; margin: 0 0 14px; }
.sp-sub { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--sp-cyan); margin: 16px 0 8px; }
.sp-ul { list-style: none; margin: 0 0 8px; padding: 0; }
.sp-ul li { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #333; margin: 0 0 8px; }
.sp-ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; background: var(--sp-purple); }
.sp-ul--sub { margin-left: 18px; }
.sp-ul--sub li::before { background: #9ac6da; }
.sp-foot { border-top: 1px solid #dfeef4; margin-top: 22px; padding: 24px 0 26px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sp-kpi-h, .sp-side-h { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--sp-blue); margin: 0 0 16px; }
.sp-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 24px; }
.sp-kpi-num { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--sp-blue); line-height: 1.15; }
.sp-kpi-num small { font-size: .6em; font-weight: 700; }
.sp-kpi-label { position: relative; padding-left: 22px; margin-top: 7px; font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #444; }
.sp-kpi-label::before { content: ""; position: absolute; top: .55em; left: 0; width: 14px; height: 2px; background: var(--sp-cyan); }
.sp-side-h:not(:first-child) { margin-top: 22px; }
.sp-side-icons { display: flex; flex-wrap: wrap; gap: 12px; }
.sp-side-icons img { width: 36px; height: 36px; }
.sp-side-tags { display: flex; flex-wrap: wrap; gap: 8px; }
/* Risks tags stay teal; Material Issues tags (last) stay dark blue */
.sp-side-tags:has(+ .sp-side-h) .sp-tag { color: var(--sp-teal); border-bottom-color: var(--sp-teal); }
.sp-foot-note { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.5; color: #666; margin: 16px 0 0; }
.sp-readmore { margin: 14px 0 0 !important; }

/* ============================================================
   KEY PERFORMANCE INDICATORS
   Blue title (cutout), animated bar charts + segment donuts,
   CFO closing quote. Reuses the .phl-* chart machinery.
   ============================================================ */
.kpi-page {
    background: #ffffff;
    --kpi-blue:   #00729c;   /* page title / FY25-26 labels */
    --kpi-purple: #975ea7;   /* transmission / bars */
    --kpi-teal:   #3cb1b6;   /* distribution */
    --kpi-navy:   #0e4d6b;   /* smart meter */
    --kpi-body:   #1a1a1a;
    --ail-body:   #1a1a1a;   /* reused prev/next nav labels */
}
/* Hero: Investment-Case style — text left, image right on a grey patch */
.kpi-hero { background: #eef6fb; padding: 110px 0 0; }
.kpi-hero-row { display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: stretch; min-height: 480px; }
.kpi-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 0 44px; }
.kpi-hero-img { position: relative; min-height: 480px; }
.kpi-hero-img img, .kpi-hero-img .ail-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.kpi-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--kpi-body); margin: 0 0 16px; }
.kpi-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; line-height: 1.08; color: var(--kpi-blue); margin: 0; }

/* Metric bar-chart grid — 2 columns, each cell carries its own commentary */
.kpi-section { padding: 44px 0 0; }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; row-gap: 34px; align-items: start; }
/* darker metric titles than the cyan .phl-chart-title default */
.kpi-mtitle { color: var(--kpi-body) !important; font-size: 17px !important; }
.kpi-mtitle sup { line-height: 0; font-size: 0.6em; }
.kpi-comm { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.55; color: #555; margin: 12px 0 0; }
.kpi-comm strong { color: var(--kpi-body); }

/* Notes block */
.kpi-notes { margin: 34px 0 0; }
.kpi-notes-h { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--kpi-body); margin: 0 0 6px; }
.kpi-notes p { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.55; color: #666; margin: 0 0 5px; max-width: 1040px; }
.kpi-notes p sup { font-size: 9px; }

/* ---- Segment-wise donuts (light-blue band) ---- */
.kpi-seg-section { padding: 52px 0 40px; background: #e8f4f9; margin-top: 8px; }
.kpi-seg-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #7b7b83; margin: 0 0 8px; }
.kpi-seg-row { display: grid; grid-template-columns: minmax(140px, 0.9fr) 3.4fr; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid #d5e2ea; }
.kpi-seg-row:first-of-type { border-top: 1px solid #d5e2ea; }
.kpi-seg-metric { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--kpi-body); margin: 0; }
.kpi-seg-unit { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #888; margin: 2px 0 0; }
/* client segment-split artwork (SVG) — fixed height keeps the donuts a consistent size across rows */
.kpi-seg-chart { display: flex; justify-content: center; align-items: center; }
.kpi-seg-chart img { height: 210px; width: auto; max-width: 100%; display: block; }
/* PAT artwork is exported on a taller canvas (538 vs 513) — nudge its height so the ring matches the other rows */
.kpi-seg-chart--pat img { height: 210px; }
.kpi-legend { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; margin: 26px 0 0; }
.kpi-legend span { display: inline-flex; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--kpi-body); }
.kpi-legend i { width: 13px; height: 13px; border-radius: 2px; margin-right: 9px; }
.kpi-seg-note { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.55; color: #666; margin: 18px 0 0; }
.kpi-seg-note sup { font-size: 9px; }

/* ---- CFO closing quote — full-bleed image band, full-width left-to-right quote ---- */
.kpi-cfo { position: relative; margin-top: 56px; padding: 28px 0 64px; overflow: hidden; background: #eef6fb; }
.kpi-cfo-bg { position: absolute; inset: 0; z-index: 0; }
.kpi-cfo-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.kpi-cfo-bg .ail-img-placeholder { width: 100%; height: 100%; aspect-ratio: auto; align-items: flex-end; justify-content: flex-end; padding: 0 18px 14px 0; }
.kpi-cfo .container { position: relative; z-index: 1; }
.kpi-cfo-inner { max-width: 100%; margin: 0; text-align: left; }
.kpi-cfo-ico { display: block; width: 48px; height: auto; margin: 0 0 18px; }
.kpi-cfo-quote { font-family: 'Noto Sans', sans-serif; font-size: clamp(15px, 1.3vw, 17px); font-weight: 700; line-height: 1.55; color: var(--kpi-purple); margin: 0; }
.kpi-cfo-name { display: block; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--kpi-body); margin: 24px 0 0; border-left: 3px solid var(--kpi-purple); padding-left: 14px; line-height: 1.4; }
.kpi-cfo-role { display: block; font-weight: 400; color: #555; }

/* ============================================================
   BUSINESS SEGMENT REVIEW
   KPI-style banner + sticky secondary nav + vertical sections.
   ============================================================ */
.bsr-page {
    background: #ffffff;
    --bsr-cyan:   #00b4d8;   /* vertical titles / stat numbers */
    --bsr-blue:   #00729c;
    --bsr-purple: #975ea7;   /* lead copy / active nav pill */
    --bsr-body:   #1a1a1a;
    --ail-body:   #1a1a1a;
}
html { scroll-behavior: smooth; }
/* Banner reuses .kpi-hero; vertical title is dark blue */
.bsr-page .kpi-title { color: var(--bsr-blue); }
.bsr-hero-lead { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.5vw, 18px); font-weight: 400; line-height: 1.7; color: var(--bsr-body); margin: 22px 0 0; }
/* tabbed banners + panels — only the active vertical is shown (driven by html[data-bsrtab] so the
   correct tab is chosen before first paint — no flicker on refresh) */
.bsr-banner, .bsr-panel { display: none; }
html[data-bsrtab="transmission"] .bsr-banner[data-v="transmission"],
html[data-bsrtab="transmission"] .bsr-panel[data-v="transmission"],
html[data-bsrtab="cooling-solutions"] .bsr-banner[data-v="cooling-solutions"],
html[data-bsrtab="cooling-solutions"] .bsr-panel[data-v="cooling-solutions"],
html[data-bsrtab="smart-metering"] .bsr-banner[data-v="smart-metering"],
html[data-bsrtab="smart-metering"] .bsr-panel[data-v="smart-metering"],
html[data-bsrtab="distribution"] .bsr-banner[data-v="distribution"],
html[data-bsrtab="distribution"] .bsr-panel[data-v="distribution"],
html[data-bsrtab="energy-solutions-platform"] .bsr-banner[data-v="energy-solutions-platform"],
html[data-bsrtab="energy-solutions-platform"] .bsr-panel[data-v="energy-solutions-platform"] { display: block; }

/* ---- Sticky secondary navigation ---- */
.bsr-subnav { position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid #e5e9ee; box-shadow: 0 3px 12px rgba(0,0,0,.04); transition: top .4s ease; }
.bsr-subnav-wrap { position: relative; display: flex; align-items: center; gap: 6px; }
.bsr-subnav-scroll { flex: 1 1 auto; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; display: flex; }
.bsr-subnav-scroll::-webkit-scrollbar { display: none; }
.bsr-subnav-list { display: flex; align-items: center; justify-content: center; gap: 8px; list-style: none; margin: 0 auto; padding: 12px 0; white-space: nowrap; }
.bsr-subnav-link { display: inline-block; padding: 11px 26px; border-radius: 30px; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--bsr-body); text-decoration: none; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.bsr-subnav-link:hover { color: var(--bsr-purple); }
html[data-bsrtab="transmission"] .bsr-subnav-link[data-v="transmission"],
html[data-bsrtab="cooling-solutions"] .bsr-subnav-link[data-v="cooling-solutions"],
html[data-bsrtab="smart-metering"] .bsr-subnav-link[data-v="smart-metering"],
html[data-bsrtab="distribution"] .bsr-subnav-link[data-v="distribution"],
html[data-bsrtab="energy-solutions-platform"] .bsr-subnav-link[data-v="energy-solutions-platform"] { background: var(--bsr-purple); color: #fff; }
.bsr-subnav-arrow { flex: 0 0 auto; width: 30px; height: 30px; border: none; background: #fff; color: #8a8a8a; cursor: pointer; font-size: 22px; line-height: 1; display: none; align-items: center; justify-content: center; border-radius: 50%; }
.bsr-subnav-arrow:hover { color: var(--bsr-purple); }
.bsr-subnav-arrow.is-shown { display: inline-flex; }

/* ---- Vertical sections ---- */
.bsr-section { padding: 56px 0; scroll-margin-top: 78px; }
.bsr-section + .bsr-section { border-top: 1px solid #eef1f4; }
.bsr-vtitle { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.08; color: var(--bsr-blue); margin: 0 0 26px; }
.bsr-vhero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 46px; align-items: start; }
.bsr-vcols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bsr-lead { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; margin: 0; }
.bsr-lead--purple { color: var(--bsr-purple); font-weight: 700; }
.bsr-lead--black { color: var(--bsr-body); }
.bsr-lead + .bsr-lead { margin-top: 16px; }
.bsr-vhero-img { position: relative; min-height: 100%; }
.bsr-vhero-img .ail-img-placeholder { height: 100%; aspect-ratio: 3 / 4; }
/* stat callouts */
.bsr-stats { display: flex; flex-wrap: wrap; gap: 26px 54px; margin: 30px 0 0; }
.bsr-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 30px; font-weight: 800; margin: 0; line-height: 1.1; width: fit-content;
    background: linear-gradient(90deg, #06aee5, #0a8bb9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.bsr-stat-num small { font-size: 16px; font-weight: 700; }
.bsr-stat-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.4; color: #555; margin: 6px 0 0; position: relative; padding-left: 22px; max-width: 200px; }
.bsr-stat-label::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 2px; background: var(--bsr-cyan); }
/* bullet list — purple square bullets */
.bsr-ul { list-style: none; margin: 14px 0 0; padding: 0; }
.bsr-ul li { position: relative; padding-left: 20px; font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: var(--bsr-body); margin: 0 0 8px; }
.bsr-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; background: var(--bsr-purple); }
/* two-column list for data (e.g. DISCOM names) */
.bsr-ul--cols { column-count: 2; column-gap: 44px; }
.bsr-ul--cols li { break-inside: avoid; }
/* animated bar graph title/unit */
.bsr-chart { max-width: 540px; margin: 22px 0; }
.bsr-chart-title { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--bsr-body); margin: 0; }
.bsr-chart-unit { font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #888; margin: 2px 0 8px; }
/* graph titles on this page — light blue, bold; extra space between chart rows */
.bsr-page .phl-chart-title { color: var(--bsr-cyan); font-weight: 700; }
.bsr-panel .phl-grid { row-gap: 34px; }
/* financial heading with (₹ in crore) at the right */
.bsr-fin-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 26px 0 0; max-width: 720px; }
.bsr-fin-head h3 { margin: 0; }
.bsr-fin-unit { flex: 0 0 auto; font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 400; color: #555; }
.bsr-sub-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--bsr-body); margin: 22px 0 0; }
/* gradient number variant (brand gradient) — use where the cutout shows a gradient */
.bsr-stat-num--grad, .bsr-stat-num--grad small { background: linear-gradient(90deg, #1565C0, #7B2FA8, #C01535); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
/* panel body — full width, flows left to right */
.bsr-panel .bsr-lead { max-width: none; }
.bsr-panel-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
/* attributed pull-quote — white card, blue drop-shadow on the right/bottom */
.bsr-quote { position: relative; background: #fff; max-width: none; margin: 46px 0; padding: 32px 46px 36px; box-shadow: 26px 24px 46px -10px rgba(0,116,156,.85); }
.bsr-quote-ico { position: absolute; top: -20px; left: 36px; width: 44px; height: auto; }
.bsr-quote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(15px, 1.35vw, 17px); font-weight: 400; line-height: 1.55; color: #6f6f80; margin: 8px 0 0; }
.bsr-quote p + p { margin-top: 14px; }
.bsr-quote-by { position: relative; display: block; margin: 22px 0 0; padding-left: 16px; font-family: 'Noto Sans', sans-serif; }
.bsr-quote-by::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: linear-gradient(180deg, #06aee5, #0a8bb9); }
.bsr-quote-name { font-size: 14px; font-weight: 700; color: var(--bsr-body); }
.bsr-quote-role { display: block; font-size: 13px; color: #555; }

/* ---- detailed content components ---- */
.bsr-h { font-family: 'Noto Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--bsr-blue); margin: 44px 0 14px; }
.bsr-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--bsr-body); margin: 0 0 16px; }
.bsr-subh2 { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--bsr-body); margin: 26px 0 10px; }
.bsr-cyan-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--bsr-cyan); margin: 18px 0 6px; }
.bsr-label { display: inline-block; background: var(--bsr-cyan); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .2px; padding: 8px 20px; border-radius: 4px; margin: 0 0 22px; }
.bsr-band { background: #e8f4f9; border-radius: 6px; padding: 28px 32px; margin: 26px 0; }
.bsr-band .bsr-label { margin-bottom: 20px; }
/* metric callouts (gradient number + label, count-up) */
.bsr-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 40px; align-items: start; }
.bsr-metric-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; margin: 0 0 6px; width: fit-content;
    background: linear-gradient(90deg, #06aee5, #0a8bb9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
/* three-up card grids for O&M groups and Our Edge */
.bsr-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 44px; align-items: start; }
.bsr-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 50px; align-items: start; }
/* stacked full-width blocks (O&M initiatives) */
.bsr-stack > div { margin: 0 0 22px; }
/* Our Edge — purple bordered box, topics stacked with purple dividers */
.bsr-edge-box { border: 1.5px solid var(--bsr-purple); border-radius: 8px; padding: 6px 32px; margin: 22px 0; }
.bsr-edge-item { padding: 24px 0; border-bottom: 1px solid #d8c2e2; }
.bsr-edge-item:last-child { border-bottom: none; }
.bsr-edge-item .bsr-subh2 { margin-top: 0; }
.bsr-figure { margin: 28px 0; }
.bsr-figure .ail-img-placeholder { aspect-ratio: 1296 / 527; }
.bsr-figure img { display: block; width: 100%; height: auto; border-radius: 4px; }
.bsr-case-figure img { display: block; width: 100%; height: auto; border-radius: 4px; }
.bsr-float-r img { display: block; width: 100%; height: auto; border-radius: 4px; }
/* financial table — cyan rules top/header/bottom, grey column + row dividers */
.bsr-table-wrap { overflow-x: auto; }
.bsr-table { width: 100%; max-width: 720px; border-collapse: collapse; margin: 14px 0 0; font-family: 'Noto Sans', sans-serif; font-size: 15px; min-width: 460px; }
.bsr-table th, .bsr-table td { padding: 13px 20px; color: var(--bsr-body); }
.bsr-table thead th { font-weight: 700; border-top: 2px solid var(--bsr-cyan); border-bottom: 2px solid var(--bsr-cyan); }
.bsr-table tbody td { border-bottom: 1px solid #dbe3e8; }
.bsr-table tbody tr:last-child td { border-bottom: 2px solid var(--bsr-cyan); }
.bsr-table th:not(:first-child), .bsr-table td:not(:first-child) { text-align: right; border-left: 1px solid #dbe3e8; }
.bsr-table th:first-child, .bsr-table td:first-child { padding-left: 4px; }
.bsr-note { font-family: 'Noto Sans', sans-serif; font-size: 12px; line-height: 1.5; color: var(--bsr-body); margin: 10px 0 0; }
.bsr-note + .bsr-note { margin-top: 0; }
.bsr-note sup { font-size: 9px; }
/* sub-brand heading (AEML / MUL) */
.bsr-subbrand { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--bsr-blue); margin: 50px 0 16px; }
/* awards table — purple borders, light-blue fill + dark-blue text on the first two columns */
.bsr-awtable { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 15px; margin: 16px 0 0; }
.bsr-awtable th { text-align: left; font-weight: 700; color: var(--bsr-body); padding: 12px 16px; border-top: 2px solid var(--bsr-purple); border-bottom: 2px solid var(--bsr-purple); }
.bsr-awtable td { padding: 14px 16px; border-bottom: 1px solid #e0d3ea; vertical-align: top; color: var(--bsr-body); line-height: 1.5; }
.bsr-awtable th:nth-child(1), .bsr-awtable th:nth-child(2),
.bsr-awtable td:nth-child(1), .bsr-awtable td:nth-child(2) { background: #e8f4f9; }
.bsr-awtable td:nth-child(1), .bsr-awtable td:nth-child(2) { color: var(--bsr-blue); font-weight: 700; }
.bsr-awtable tr:last-child td { border-bottom: 2px solid var(--bsr-purple); }
/* SDG goal icons */
.bsr-sdg { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 16px; }
.bsr-sdg img { width: 74px; height: 74px; display: block; }
/* inline "Source" link under a metric */
.bsr-source { display: inline-flex; align-items: center; gap: 5px; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #8a8a8a; text-decoration: none; margin-top: 6px; }
.bsr-source:hover { color: var(--bsr-cyan); }
.bsr-source svg { width: 13px; height: 13px; }
/* read-more link — normal black text, only the page ref bold */
.bsr-readmore { margin: 18px 0 0; }
.bsr-readmore a { display: inline-flex; align-items: center; gap: 8px; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--bsr-body); text-decoration: none; }
.bsr-readmore a:hover { text-decoration: underline; }
.bsr-readmore svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--bsr-cyan); }
/* right-floated image — body text wraps around it (sized to sit within the text height) */
.bsr-float-r { float: right; width: 340px; max-width: 42%; margin: 4px 0 16px 34px; }
.bsr-float-r .ail-img-placeholder { aspect-ratio: 4 / 3; }
/* case study */
.bsr-case { clear: both; border-top: 1px solid #cfe4ee; border-bottom: 1px solid #cfe4ee; padding: 30px 0; margin: 34px 0 0; }
.bsr-case-head { display: flex; gap: 22px; align-items: flex-start; margin: 0 0 20px; }
.bsr-case-tag { flex: 0 0 auto; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; line-height: 1.05; color: var(--bsr-blue); border-left: 3px solid var(--bsr-purple); padding-left: 12px; }
.bsr-case-tag em { color: var(--bsr-purple); font-style: normal; }
.bsr-case-title { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--bsr-blue); margin: 2px 0 0; }
/* single column; image floats so text wraps around it */
.bsr-case-body::after { content: ""; display: block; clear: both; }
.bsr-case-figure { float: right; width: 42%; max-width: 440px; margin: 4px 0 20px 34px; }
.bsr-case-figure .ail-img-placeholder { aspect-ratio: 3 / 2; }
/* temporary scaffold placeholder (removed as content is added) */
.bsr-todo { margin: 30px 0 0; padding: 40px; border: 1px dashed #c4cad2; border-radius: 6px; text-align: center; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #97a1ac; background: #f7f9fb; }

/* ============================================================
   OUR ESG APPROACH  (ESG Overview column)
   ============================================================ */
.esg-page {
    background: #ffffff;
    --se-purple: #975ea7;  --se-teal: #17a6d2;  --se-blue: #00729c;  --se-body: #1a1a1a;
    --bsr-purple: #975ea7;  --bsr-blue: #00729c;  --bsr-cyan: #17a6d2;  --bsr-body: #1a1a1a;
    --kpi-blue: #00729c;   --kpi-body: #1a1a1a;
    --ail-body: #1a1a1a;
    --esg-purple: #975ea7; --esg-blue: #00729c; --esg-cyan: #17a6d2; --esg-teal: #17a6d2;
}
/* section headings on this page use Noto Sans (per the cutout), not Playfair */
.esg-page .se-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; }
/* inline dark-blue bold emphasis */
.esg-db { color: var(--esg-blue); font-weight: 700; }

/* ---- Banner: heading + turtle illustration left, first-chapter image right ---- */
.esg-hero-text { justify-content: center; }
.esg-hero-turtle { display: block; width: 100%; max-width: 500px; height: auto; margin: 30px 0 4px; }

/* ---- Intro (single-column, full width) ---- */
.esg-intro { padding-top: 40px; }
.esg-vision-p { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.7; color: var(--esg-purple); margin: 0 0 18px; }
.esg-body-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: #1a1a1a; margin: 0 0 18px; }
.esg-ambition { border-left: 4px solid var(--esg-cyan); padding-left: 24px; margin: 30px 0 0; }
.esg-ambition-h { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--esg-cyan); margin: 0 0 8px; }
.esg-ambition p { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 400; line-height: 1.7; color: #1a1a1a; margin: 0; }

/* ---- Global Leadership (full-width purple callout) ---- */
.esg-gl-box { border: 1.5px solid var(--esg-purple); background: #f7f0fa; border-radius: 6px; padding: 28px 34px; }
.esg-gl-h { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--esg-purple); margin: 0 0 14px; }
.esg-gl-box p { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.7; color: var(--esg-purple); margin: 0 0 14px; }
.esg-gl-box p:last-child { margin-bottom: 0; }
.esg-gl-box a { color: var(--esg-purple); text-decoration: underline; text-underline-offset: 3px; }
.esg-gl-box a:hover { color: var(--esg-blue); }

/* ---- Message from the CSO (full-width message) ---- */
.esg-cso { position: relative; background: #ffffff; border-radius: 6px; padding: 34px 38px 30px; box-shadow: 0 14px 34px rgba(0,60,90,0.12); border: 1px solid #eef2f5; }
.esg-cso-quote { position: absolute; top: -20px; left: 34px; width: 46px; height: 46px; }
.esg-cso-quote img { width: 100%; height: 100%; object-fit: contain; }
.esg-cso-h { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--esg-blue); margin: 8px 0 14px; }
.esg-cso p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: #1a1a1a; margin: 0 0 18px; }
.esg-cso p a { color: var(--esg-blue); text-decoration: underline; text-underline-offset: 3px; }
.esg-cso-sign { border-left: 3px solid var(--esg-cyan); padding-left: 14px; }
.esg-cso-name { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.esg-cso-role { display: block; font-family: 'Noto Sans', sans-serif; font-size: 13.5px; color: #666; }

/* ---- Our ESG Framework ---- */
.esg-subh { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; }
.esg-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 0; margin: 28px 0 44px; }
.esg-logo { margin: 0; display: flex; flex-direction: column; gap: 12px; padding: 0 26px; border-left: 1px solid #d9dee2; }
.esg-logo:nth-child(5n+1) { border-left: 0; padding-left: 0; }
.esg-logo img { height: 34px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; align-self: flex-start; }
.esg-logo figcaption { font-family: 'Noto Sans', sans-serif; font-size: 12.5px; line-height: 1.4; color: #1a1a1a; }
.esg-diagram { margin: 26px 0 8px; text-align: center; }
.esg-diagram img { display: block; width: 100%; max-width: 1180px; height: auto; margin: 0 auto; }
.esg-diagram--hub img { max-width: 940px; }
.esg-readmore { margin-top: 10px !important; }
.esg-readmore a { align-items: flex-start; line-height: 1.35; }

/* ---- Robust Governance flow ---- */
.esg-flow { max-width: 940px; margin: 26px auto 0; display: flex; flex-direction: column; align-items: center; }
.esg-flow-box { width: 100%; border: 1.5px solid var(--esg-purple); border-radius: 6px; background: #ffffff; padding: 18px 26px; text-align: center; font-family: 'Noto Sans', sans-serif; font-size: 15.5px; line-height: 1.55; color: #1a1a1a; box-shadow: 3px 4px 0 rgba(151,94,167,0.12); }
.esg-flow-arrow { display: block; width: 26px; height: 26px; margin: 10px 0; }
.esg-flow-arrow svg { width: 100%; height: 100%; }
/* bottom row is one box with internal purple vertical dividers */
.esg-flow-box--merged { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; text-align: left; }
.esg-flow-cell { padding: 20px 26px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; border-left: 1.5px solid var(--esg-purple); }
.esg-flow-cell:first-child { border-left: 0; }
.esg-flow-cell p { margin: 0; font-weight: 500; }
.esg-flow-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Noto Sans', sans-serif; font-size: 13.5px; color: var(--esg-blue); text-decoration: none; }
.esg-flow-link:hover { text-decoration: underline; }
.esg-flow-plus { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border: 1px solid var(--esg-blue); border-radius: 50%; font-size: 12px; line-height: 1; color: var(--esg-blue); }

/* ---- Best-in-Class Management Systems ---- */
.esg-bicms-diagram { margin: 24px 0 26px; text-align: center; }
.esg-bicms-diagram img { display: block; width: 100%; max-width: 760px; height: auto; margin: 0 auto; }
.esg-bicms-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.esg-note-box { border: 1.5px solid var(--esg-purple); border-radius: 6px; padding: 16px 22px; text-align: center; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--esg-blue); }
.esg-bicms-foot { text-align: center; margin-top: 18px; font-size: 13px; }

/* ---- Aligning with UNSDGs ---- */
.esg-sdg-intro { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: #1a1a1a; margin: 0 0 4px; max-width: 1040px; }
.esg-pillar { position: relative; border: 1.5px solid var(--esg-purple); border-radius: 8px; padding: 40px 34px 10px; margin: 42px 0 0; }
.esg-pillar-tab { position: absolute; top: -16px; left: 26px; background: #ffffff; border: 1.5px solid var(--esg-purple); border-radius: 20px; padding: 6px 22px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.esg-page .se-section--tint .esg-pillar-tab { background: #f4f8fb; }
.esg-topic { display: grid; grid-template-columns: 300px 1fr; gap: 40px; padding: 24px 0; border-bottom: 1px solid #d3e6ef; align-items: start; }
.esg-topic:last-child { border-bottom: 0; }
.esg-sdg-icons { display: flex; flex-wrap: wrap; gap: 6px; }
.esg-sdg-icons img { width: 52px; height: 52px; display: block; }
.esg-sdg-label { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--esg-cyan); margin: 16px 0 4px; }
.esg-sdg-targets { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.65; color: #1a1a1a; margin: 0; }
.esg-sdg-targets strong { font-weight: 700; }
.esg-topic-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--esg-cyan); margin: 0 0 4px; }
.esg-topic-h + .bsr-ul { margin-top: 6px; }
.esg-topic-body .bsr-ul + .esg-topic-h { margin-top: 18px; }
.esg-sdg-note { max-width: 1040px; margin-top: 14px; font-size: 12.5px; color: #1a1a1a; }
.esg-sdg-note:first-of-type { margin-top: 46px; }

/* ---- Remuneration (single-column, full width) ---- */
.esg-remun-h { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--esg-cyan); margin: 26px 0 8px; }
.esg-remun-h--dark { color: #1a1a1a; }
.esg-remun-sub { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--esg-cyan); margin: 18px 0 6px; }
/* headline stat — full-width band callout */
.esg-stat { display: flex; align-items: center; gap: 24px; margin: 26px 0; padding: 26px 34px; background: #eef6fb; border-left: 4px solid var(--esg-cyan); border-radius: 6px; }
.esg-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 62px; font-weight: 800; line-height: 1; flex: 0 0 auto;
    background: linear-gradient(90deg, var(--esg-cyan) 0%, var(--esg-blue) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.esg-stat .esg-stat-label { max-width: 360px; margin: 0; font-size: 17px; font-weight: 700; line-height: 1.4; color: #1a1a1a; }
.esg-stat .esg-stat-label::before { content: none; }

/* ---- ESG Ratings table ---- */
.esg-ratings-wrap { overflow-x: auto; margin-top: 22px; }
.esg-ratings { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 14px; min-width: 900px; background: #fff; }
.esg-ratings thead th { background: var(--esg-blue); color: #fff; font-weight: 700; text-align: right; padding: 14px 18px; vertical-align: middle; }
.esg-ratings thead th:first-child { text-align: left; }
.esg-ratings tbody th { text-align: left; font-weight: 400; padding: 14px 18px; vertical-align: middle; border-bottom: 1px solid #dce4ea; }
.esg-ratings tbody td { text-align: right; padding: 14px 18px; vertical-align: middle; border-bottom: 1px solid #dce4ea; border-left: 1px solid #e6ecf0; color: #1a1a1a; }
.esg-ratings tbody tr:last-child th, .esg-ratings tbody tr:last-child td { border-bottom: 2px solid var(--esg-blue); }
.esg-rt-name { display: block; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.esg-rt-sub { display: block; font-weight: 400; color: #c0392b; font-size: 12.5px; }
.esg-rt-logo { display: block; max-height: 30px; max-width: 130px; width: auto; height: auto; }
.esg-ratings-foot { margin-top: 12px; font-size: 12px; }

/* ---- Performance Against ESG Goals ---- */
.esg-perf-block { position: relative; margin: 40px 0 0; }
.esg-perf-tab { display: inline-block; color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; padding: 8px 30px; border-radius: 4px 4px 0 0; }
.esg-perf-wrap { overflow-x: auto; }
.esg-perf-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 14px; min-width: 820px; }
.esg-perf-table th, .esg-perf-table td { padding: 12px 16px; vertical-align: top; line-height: 1.5; }
.esg-perf-table thead th { font-weight: 700; text-align: right; color: #1a1a1a; }
.esg-perf-table thead th:first-child { text-align: left; }
.esg-perf-table tbody td { text-align: right; color: #1a1a1a; }
.esg-perf-table tbody td:first-child { text-align: left; }
.esg-perf-sub td { font-weight: 700; text-align: left !important; }
.esg-perf-table .rs { font-weight: 400; }
/* Environmental — green */
.esg-perf--env .esg-perf-tab { background: #00a86b; }
.esg-perf--env .esg-perf-table thead th { background: #e4f2e8; border-bottom: 2px solid #00a86b; }
.esg-perf--env .esg-perf-sub td { background: #cfe9d8; }
.esg-perf--env .esg-perf-table tbody tr:not(.esg-perf-sub) td { border-bottom: 1px solid #d5e9dc; background: #edf6f0; }
.esg-perf--env .esg-perf-table tbody tr:not(.esg-perf-sub):nth-of-type(odd) td { background: #dcefe3; }
/* Social — blue */
.esg-perf--soc .esg-perf-tab { background: #087ab9; }
.esg-perf--soc .esg-perf-table thead th { background: #e4f0f8; border-bottom: 2px solid #087ab9; }
.esg-perf--soc .esg-perf-sub td { background: #c3d5ea; }
.esg-perf--soc .esg-perf-table tbody tr:not(.esg-perf-sub) td { border-bottom: 1px solid #d6e4f0; background: #ecf4fb; }
.esg-perf--soc .esg-perf-table tbody tr:not(.esg-perf-sub):nth-of-type(odd) td { background: #dbe9f6; }
/* Governance — orange/rust */
.esg-perf--gov .esg-perf-tab { background: #b45424; }
.esg-perf--gov .esg-perf-table thead th { background: #fbe6d6; border-bottom: 2px solid #b45424; }
.esg-perf--gov .esg-perf-sub td { background: #f6d3ac; }
.esg-perf--gov .esg-perf-table tbody tr:not(.esg-perf-sub) td { border-bottom: 1px solid #f0dcc9; background: #fdf1e7; }
.esg-perf--gov .esg-perf-table tbody tr:not(.esg-perf-sub):nth-of-type(odd) td { background: #f9e2ce; }

/* ---- Awards ---- */
.esg-awards-list { margin-top: 20px; }
.esg-awards-list li { margin-bottom: 12px; font-size: 16px; }
.esg-certs { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 1000px; margin: 34px auto 0; }
.esg-certs img { width: 100%; height: auto; display: block; border: 1px solid #e3e8ec; box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.esg-awards-list li strong { font-weight: 700; color: #1a1a1a; }

/* read-more variant rendered in plain black bold (per the cutout) */
.esg-readmore--black a { color: #1a1a1a; font-weight: 700; }
.esg-readmore--black .se-readmore-ico { color: #1a1a1a; }


/* ============================================================
   ENVIRONMENT  (ESG Overview column) — tabbed page
   ============================================================ */
.env-page {
    background: #ffffff;
    --env-dark:   #2c665e;
    --env-blue:   #00729c;
    --env-lblue:  #00b4d8;
    --env-purple: #975ea7;
    --env-orange: #ef8b22;
    --env-green:  #00915c;
    --env-body:   #1a1a1a;
    --se-blue: #00729c;  --se-purple: #975ea7;  --se-teal: #00b4d8;  --se-body: #1a1a1a;
    --ail-body: #1a1a1a;
}
.env-page .se-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; }

/* ---- Full-screen coloured banner ---- */
.env-hero { position: relative; background: var(--env-dark); min-height: 78vh; padding: 150px 0 70px; display: flex; align-items: center; overflow: hidden; }
.env-hero-bird { position: absolute; right: 0; bottom: 4%; width: 52%; max-width: 940px; height: auto; opacity: .9; pointer-events: none; }
.env-hero .container { position: relative; z-index: 1; }
.env-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .3px; color: #a7ccbd; margin: 0 0 22px; }
.env-title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 58px); font-weight: 700; line-height: 1.08; color: #e9f3ec; margin: 0; max-width: 15ch; }

/* ---- Secondary chapter nav (pill style) ---- */
.env-subnav { position: sticky; top: 86px; z-index: 900; background: #ffffff; border-bottom: 1px solid #e2e8e5; box-shadow: 0 6px 18px rgba(0,0,0,0.05); transition: top .4s ease; }
.env-subnav.is-headerhidden { top: 0; }
.env-subnav-row { display: flex; gap: 8px; justify-content: center; align-items: center; padding: 14px 0; flex-wrap: wrap; }
.env-subnav-link { border: 0; background: transparent; cursor: pointer; padding: 12px 26px; border-radius: 999px; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.1; color: #2a2a2a; text-align: center; transition: background .2s, color .2s; }
.env-subnav-link:hover { color: var(--env-green); }

/* ---- Tab mechanism ---- */
.env-hero[data-c], .env-panel[data-c] { display: none; }
html[data-envtab="overview"]     .env-panel[data-c="overview"],
html[data-envtab="climate"]      .env-panel[data-c="climate"],
html[data-envtab="resource"]     .env-panel[data-c="resource"],
html[data-envtab="water"]        .env-panel[data-c="water"],
html[data-envtab="biodiversity"] .env-panel[data-c="biodiversity"] { display: block; }
html[data-envtab="overview"]     .env-hero[data-c="overview"],
html[data-envtab="climate"]      .env-hero[data-c="climate"],
html[data-envtab="resource"]     .env-hero[data-c="resource"],
html[data-envtab="water"]        .env-hero[data-c="water"],
html[data-envtab="biodiversity"] .env-hero[data-c="biodiversity"] { display: flex; }
html[data-envtab="overview"]     .env-subnav-link[data-c="overview"],
html[data-envtab="climate"]      .env-subnav-link[data-c="climate"],
html[data-envtab="resource"]     .env-subnav-link[data-c="resource"],
html[data-envtab="water"]        .env-subnav-link[data-c="water"],
html[data-envtab="biodiversity"] .env-subnav-link[data-c="biodiversity"] { background: var(--env-green); color: #fff; }

/* ---- Panel body ---- */
.env-section { padding: 24px 0; }
.env-section > .container > :first-child { margin-top: 0; }
.env-lead-p { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--env-body); margin: 0 0 30px; }
.env-body-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--env-body); margin: 0 0 18px; }
.env-h { color: var(--env-blue); margin: 44px 0 20px; }
.env-h--blue { color: var(--env-blue); }
.env-h:first-child { margin-top: 0; }

/* ---- Quote ---- */
.env-quote { position: relative; margin: 0 0 40px; padding: 8px 0 0 0; border: 0; }
.env-quote-ico { display: block; width: 52px; height: auto; margin: 0 0 14px; }
.env-quote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(18px, 1.7vw, 22px); font-weight: 700; line-height: 1.5; color: var(--env-green); margin: 0; }

/* ---- Chapter at a glance ---- */
.env-glance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; margin: 0 0 8px; align-items: start; }
.env-glance-h { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; }
.env-glance-h--sp { margin-top: 30px; }
.env-tags { list-style: none; margin: 0; padding: 0; }
.env-tags li { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.4; color: #1a1a1a; margin: 0 0 14px; padding-left: 60px; min-height: 24px; display: flex; align-items: center; }
.env-code { position: absolute; left: 0; top: -1px; display: inline-flex; align-items: center; justify-content: center; min-width: 42px; padding: 3px 7px; border: 1.5px solid currentColor; border-right: 0; font-size: 13px; font-weight: 700; }
.env-code--m { color: #f37720; }
.env-code--s { color: #965ea6; }
.env-code--r { color: #3cb0b5; }
.env-sdgs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; max-width: 280px; }
.env-sdgs img { width: 100%; height: auto; display: block; }
.env-capitals { display: flex; flex-direction: column; gap: 12px; }
.env-cap { display: inline-flex; align-items: center; gap: 12px; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--env-body); }
.env-cap img { width: 28px; height: 28px; flex: 0 0 auto; }

/* ---- Key Highlights band + gradient stats ---- */
.env-band { margin: 40px 0 0; }
.env-band-label { display: inline-block; background: var(--env-green); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; padding: 9px 22px; border-radius: 4px; margin: 0 0 26px; }
.env-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; }
.env-metrics--2 { grid-template-columns: repeat(2, minmax(0, 360px)); margin-top: 8px; }
.env-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 34px; font-weight: 800; line-height: 1; margin: 0 0 8px; background: linear-gradient(180deg,#7ec94f 0%,#00753f 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.env-stat-num * { -webkit-text-fill-color: transparent; color: transparent; }
.env-stat-num small { font-size: .48em; font-weight: 800; }
.env-metric-label { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: var(--env-body); margin: 0; padding-left: 24px; }
.env-metric-label::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--env-green); }

/* ---- Environment Focus Areas (arc badges) ---- */
.env-focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; justify-items: center; }
.env-focus-card { position: relative; width: 230px; min-height: 190px; display: flex; align-items: center; justify-content: center; text-align: center; background: url("../assets/environment-badge.svg") center/contain no-repeat; padding: 30px 42px; }
.env-focus-card span { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.45; color: var(--env-body); }

/* ---- Climate risk framework: 2x2 boxes + diagram ---- */
.env-risk-row { display: grid; grid-template-columns: minmax(0, 520px) minmax(0, 440px); gap: 50px; align-items: center; justify-content: center; margin: 44px auto 0; }
.env-risk-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.env-risk-box { border: 1px solid #dfe6e2; border-radius: 10px; padding: 0 20px 18px; }
.env-risk-tag { display: inline-block; background: var(--env-green); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 7px 20px; border-radius: 0 0 8px 8px; margin: 0 0 14px 4px; }
.env-risk-ul { list-style: none; margin: 0; padding: 0; }
.env-risk-ul li { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.45; color: var(--env-body); margin: 0 0 8px; padding-left: 16px; }
.env-risk-ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; background: var(--env-green); }
.env-risk-diagram { text-align: center; }
.env-risk-diagram img { width: 100%; max-width: 400px; height: auto; }

/* ---- Approach sub-headings ---- */
.env-subh { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.env-subh--black { color: #1a1a1a; }
.env-subh--lblue { color: var(--env-lblue); }

/* ---- Green-gradient callout statement (with dash) ---- */
.env-grad-stat { position: relative; font-family: 'Noto Sans', sans-serif; font-size: clamp(19px, 1.9vw, 24px); font-weight: 700; line-height: 1.45; margin: 22px 0 38px; padding-left: 30px; background: linear-gradient(90deg,#6cc24a 0%,#009150 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.env-grad-stat::before { content: ""; position: absolute; left: 0; top: .55em; width: 18px; height: 4px; border-radius: 2px; background: #0a8f5c; -webkit-text-fill-color: initial; }

/* ---- Read-more / policy links ---- */
.env-readmore { margin-top: 6px !important; }
.env-readmore a { display: inline-flex; align-items: center; gap: 8px; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--env-green); text-decoration: none; }
.env-readmore a:hover { text-decoration: underline; }
.env-plus { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1.5px solid var(--env-green); border-radius: 50%; font-size: 13px; line-height: 1; }
.env-policy-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 16px 0 0; max-width: 900px; }
.env-policy-link { display: flex; align-items: flex-start; gap: 10px; padding: 4px 22px; border-left: 1.5px solid #bfe0cd; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--env-green); text-decoration: none; line-height: 1.35; }
.env-policy-link:first-child { border-left: 0; padding-left: 0; }
.env-policy-link:hover .env-policy-txt strong { text-decoration: underline; }
.env-policy-link .se-readmore-ico { width: 17px; height: 17px; flex: 0 0 auto; color: var(--env-green); }
.env-policy-link .se-readmore-ico svg { width: 17px; height: 17px; }
.env-policy-txt strong { display: block; color: #1a1a1a; font-size: 15px; }

/* ---- Dahanu milestone ---- */
.env-milestone { border: 1.5px solid var(--env-purple); background: #f7f0fa; border-radius: 8px; padding: 24px 28px; margin: 34px 0 0; }
.env-milestone-h { font-family: 'Noto Sans', sans-serif; font-size: 17px; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; line-height: 1.35; }
.env-milestone-sub { color: var(--env-purple); }
.env-milestone-p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--env-purple); margin: 0; }

/* stub placeholder */
.env-todo { margin: 20px 0; padding: 60px 40px; border: 1px dashed #b9d4c5; border-radius: 8px; text-align: center; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #6a8a7b; background: #f6faf7; }

/* ---- Climate: GHG graphs ---- */
.env-graph { background: #eef6fb; border-radius: 8px; padding: 26px 30px; margin: 16px 0; text-align: center; }
.env-graph img { display: block; width: 100%; max-width: 900px; height: auto; margin: 0 auto; }

/* read-more shown as two-line black bold (Read further / Policy name) */
.env-readmore--blk a { color: #1a1a1a; align-items: flex-start; line-height: 1.3; }
.env-readmore--blk .se-readmore-ico { color: var(--env-green); }
.env-readmore--blk .env-policy-txt strong { display: block; color: #1a1a1a; }

/* ---- Climate: read-more row + Insight/Strategy table ---- */
.env-readmore-row { display: flex; flex-wrap: wrap; gap: 10px 60px; margin-top: 10px; }
.env-insight { margin: 20px 0 0; }
.env-insight-head { display: grid; grid-template-columns: 260px 1fr; gap: 58px; margin: 0 0 14px; }
.env-insight-h1, .env-insight-h2 { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; }
.env-insight-row { display: grid; grid-template-columns: 260px 1fr; gap: 58px; margin: 0 0 18px; align-items: stretch; }
.env-insight-label { position: relative; background: #eef1f0; border-radius: 12px; padding: 20px 26px; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; display: flex; align-items: center; line-height: 1.35; }
.env-insight-label::after { content: ""; position: absolute; left: calc(100% - 6px); top: 50%; transform: translateY(-50%); width: 40px; height: 46px; background: var(--env-green); border-radius: 8px; clip-path: polygon(0% 0%, 52% 0%, 100% 50%, 52% 100%, 0% 100%); }
.env-insight-desc { border: 1.5px solid #cfe3da; border-radius: 14px; padding: 18px 26px; display: flex; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.55; color: #1a1a1a; }

.env-readmore--dark a { color: #1a1a1a; }

/* ---- Climate: Highlights box ---- */
.env-highlights { position: relative; border: 1px solid #dde5e1; border-radius: 8px; padding: 34px 34px 12px; margin: 48px 0 0; }
.env-highlights-tag { position: absolute; top: -1px; left: 24px; transform: translateY(-50%); background: var(--env-green); color: #fff; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 7px 22px; border-radius: 4px; }
.env-hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.env-hl-item { padding: 16px 40px 24px; border-bottom: 1px solid #d7ebe7; }
.env-hl-item:nth-child(odd) { padding-left: 0; border-right: 1px solid #d7ebe7; }
.env-hl-item:nth-child(even) { padding-right: 0; }
.env-hl-h { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--env-green); margin: 0 0 10px; line-height: 1.3; }
.env-ul { list-style: none; margin: 0; padding: 0; }
.env-ul li { position: relative; padding-left: 18px; font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.55; color: #1a1a1a; margin: 0 0 8px; }
.env-ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--env-purple); }
/* full-screen image */
.env-fullimg { margin: 30px 0 0; }
.env-fullimg .ail-img-placeholder { aspect-ratio: 1296 / 527; }

/* ---- Climate: tables ---- */
.env-table-wrap { overflow-x: auto; margin: 18px 0 0; }
.env-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 15px; min-width: 620px; }
.env-table th, .env-table td { padding: 13px 20px; vertical-align: top; color: #1a1a1a; line-height: 1.5; }
.env-table tbody td { border-bottom: 1px solid #d7ebe7; }
.env-table--value thead th { background: #0e7c6e; color: #fff; font-weight: 700; text-align: left; }
.env-table--value tbody tr:last-child td { border-bottom: 2px solid #0e7c6e; }
.env-table--progress thead th { background: #eef4f1; color: #1a1a1a; font-weight: 700; text-align: right; border-bottom: 2px solid #0e7c6e; }
.env-table--progress thead th:first-child { text-align: left; }
.env-table--progress tbody td { text-align: right; }
.env-table--progress tbody td:first-child { text-align: left; }
.env-table--progress .env-col-t { background: #e6f3ec; }
.env-table--progress thead th.env-col-t { background: #cfe9d8; }
.env-table--progress tbody tr:last-child td { border-bottom: 2px solid #0e7c6e; }

/* ---- Climate: page 11-13 components ---- */
.env-subh4 { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; margin: 22px 0 8px; }
.env-subh4--lblue { color: var(--env-lblue); }
.env-ul--wide li { font-size: 15.5px; }
.env-ul--cols { column-count: 2; column-gap: 44px; }
.env-ul--cols li { break-inside: avoid; }
.env-note { font-size: 12.5px; color: #444; margin: 8px 0 0; }
/* data table (plain header, cyan rules) */
.env-table--data thead th { text-align: left; font-weight: 700; border-top: 2px solid #0e7c6e; border-bottom: 2px solid #0e7c6e; vertical-align: bottom; }
.env-table--data th:not(:first-child), .env-table--data td:not(:first-child) { border-left: 1px solid #cfe3da; }
.env-table--data tbody td { text-align: left; border-bottom: 1px solid #cfe3da; }
.env-table--data tbody tr:last-child td { border-bottom: 2px solid #0e7c6e; }
/* two-column prose + mini stats */
.env-2col { display: grid; grid-template-columns: 1.7fr 1fr; gap: 44px; align-items: start; }
.env-ministat-col { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.env-ministat .env-stat-num { font-size: 30px; margin-bottom: 8px; line-height: 1.18; }
.env-ministat-h { font-family: 'Noto Sans', sans-serif; font-size: 22px; font-weight: 800; line-height: 1.1; margin: 0 0 8px; background: linear-gradient(180deg,#7ec94f 0%,#00753f 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
/* UNEZA callout */
.env-uneza { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; border: 1.5px solid var(--env-purple); background: #f7f0fa; border-radius: 8px; padding: 26px 32px; margin: 34px 0 0; }
.env-uneza-logo { width: 100%; max-width: 190px; height: auto; }
.env-uneza p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--env-purple); margin: 0; }
.env-uneza p strong { font-weight: 700; }

.env-fullimg img { display: block; width: 100%; height: auto; border-radius: 8px; }

/* ---- Climate: page 14-15 components ---- */
.env-subh4--black { color: #1a1a1a; }
.env-sdgs--row { display: flex; gap: 8px; max-width: none; margin: 14px 0 0; }
.env-sdgs--row img { width: 46px; height: 46px; }
.env-kpi-slb { display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: start; }
.env-compacts { width: 100%; max-width: 200px; height: auto; }
.env-compacts-row { display: flex; align-items: center; gap: 26px; margin-top: 14px; }
.env-compacts-row .env-compacts { max-width: 150px; }
.env-compacts-row .env-sdgs--row { margin: 0; }
.env-graph--sm { padding: 16px; text-align: center; }
.env-graph--sm img { max-width: 360px; margin: 0 auto; }
.env-target-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 20px 0 12px; border-top: 1px solid #cfe3da; padding-top: 18px; }
.env-target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
.env-target-grid .env-stat-num { font-size: 30px; }
.env-target-label { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #444; margin: 2px 0 0; }

.env-page .env-diagram img { max-width: 740px; }
.env-kpi-slb .env-table--data thead th:last-child { white-space: nowrap; }

/* ---- Climate: page 16 (SLB cards + collaborative steps) ---- */
.env-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.env-card { position: relative; border: 1.5px solid var(--env-lblue); border-radius: 14px; padding: 22px 24px; text-align: center; }
.env-card::before { content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: #0e7c6e; }
.env-card-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--env-lblue); margin: 0 0 10px; line-height: 1.3; }
.env-card p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #1a1a1a; margin: 0; }
.env-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 16px 0 0; background: #eef4f1; border-radius: 8px; }
.env-step { position: relative; padding: 22px 22px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; border-left: 1px solid var(--env-green); }
.env-step:first-child { border-left: 0; }
.env-step::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--env-green); z-index: 1; }
.env-step:last-child::after { display: none; }

.env-ul--cols li, .env-ul--wide li { font-size: 16px; }

.env-band-label--teal { background: #0e7c6e; }

.env-table .env-total td { font-weight: 700; border-bottom: 2px solid #cfe3da; }

.env-stat-num small, .env-stat-num small sub { -webkit-text-fill-color: #0a8f5c; color: #0a8f5c; }
.env-graph--eq img { max-width: 100%; width: 100%; margin: 0 auto; }

/* ---- Climate: bold table rows + energy-reduction arrow flow ---- */
.env-table .env-boldrow td { font-weight: 700; }
.env-arrowflow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0 0; }
.env-arrow { position: relative; background: #e6f2ea; padding: 26px 34px 26px 46px; clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%, 26px 50%); }
.env-arrowflow .env-arrow:first-child { clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%); padding-left: 30px; }
.env-arrow-num { display: block; font-family: 'Noto Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--env-green); margin: 0 0 8px; }
.env-arrow-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; line-height: 1.3; }
.env-arrow p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #1a1a1a; margin: 0 0 10px; }
.env-arrow-impact strong { color: var(--env-green); }

/* ---- Climate: page 23-24 components ---- */
.env-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.env-diagram--wide img { max-width: 520px; }
.env-ministat-col--grey { background: #eef1f0; border-radius: 8px; padding: 24px 26px; }

/* diagram: force horizontal centre; equal-column graph rows */
.env-page .env-diagram { text-align: center; }
.env-page .env-diagram img { display: block; width: 100%; height: auto; margin-left: auto; margin-right: auto; }
.env-2col--eq { grid-template-columns: 1fr 1fr; }

/* point 3: single header rule, tighter space above the table */
.env-table--data thead th { border-top: 0; padding-top: 8px; }
.env-table-wrap { margin-top: 8px; }

/* ---- round of fixes ---- */
/* 1: smaller, aligned graphs */
.env-graph--eq img { max-width: 430px; width: 100%; margin: 0 auto; }
/* 2,7,11: keep FY year on one line -> header wraps to two lines only */
.env-page .env-table--data thead th { white-space: nowrap !important; }
/* 5: remove dash on the continuation stat */
.env-metric-label--nodash { padding-left: 0; }
.env-metric-label--nodash::before { content: none; }
/* 6: tighter spacing inside the grey stat block */
.env-ministat-col--grey { gap: 12px; background: #e8ece9; }
/* 9: smaller energy-affordability diagram with breathing room */
.env-diagram--wide { margin: 22px 0 30px; }
.env-page .env-diagram--wide img { max-width: 400px; }
/* 10: induction image floated right, text wraps */
.env-floatimg { float: right; width: 42%; max-width: 430px; margin: 0 0 18px 34px; }
.env-floatimg img { display: block; width: 100%; height: auto; border-radius: 8px; }

/* alternating arrow-flow colours (02 grey) */
.env-arrowflow .env-arrow:nth-child(even) { background: #eef1f0; }

/* ============================================================
   ENVIRONMENT — Resource Stewardship chapter
   ============================================================ */
.env-page .env-diagram--wide2 img { max-width: 560px; }
.env-diagram--wide2 { margin: 0 0 30px; }
.env-cert-row { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
.env-cert { width: 100%; max-width: 300px; height: auto; border: 1px solid #e3e8ec; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.env-waste-label { display: block; font-family: 'Noto Sans', sans-serif; font-weight: 700; color: var(--env-green); margin: 0 0 6px; }
.env-waste-p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; margin: 8px 0 0; }
.env-table--waste td { vertical-align: top; }
.env-table--waste .env-ul { margin: 0; }
.env-table--waste .env-ul li { font-size: 14px; }
.env-metrics--3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Resource chapter fixes ---- */
/* 3: standalone bullets at body size */
.env-ul li { font-size: 16px; }
.env-hl-item .env-ul li, .env-table--waste .env-ul li { font-size: 14px; }
/* 4-7: waste-type labels in light green */
.env-waste-label { color: #43b649; }
/* 8: teal ribbon tab + teal-bordered box */
.env-highlights--teal { border-color: #8fd0c8; }
.env-highlights--teal .env-highlights-tag { background: linear-gradient(180deg,#eaf7f7 0%,#cfeced 100%); color: #0e6b64; border-radius: 0; padding: 11px 44px; border-bottom: 5px solid #2f9d9a; }
.env-highlights--teal .env-highlights-tag::before { content: ""; position: absolute; left: -13px; bottom: -5px; width: 0; height: 0; border-top: 13px solid #2f9d9a; border-left: 13px solid transparent; }
.env-highlights--teal .env-highlights-tag::after { content: ""; position: absolute; right: -13px; bottom: -5px; width: 0; height: 0; border-top: 13px solid #2f9d9a; border-right: 13px solid transparent; }

/* heading colour-only variant (original size) */
.env-subh4--blue { color: var(--env-blue); }
/* funnel floated right, text wraps */
.env-floatimg--funnel { width: 46%; max-width: 500px; margin: 4px 0 14px 34px; }

/* full-height first-column divider for rowspan tables */
.env-table--rowspan thead th:first-child, .env-table--rowspan td[rowspan] { border-right: 1px solid #cfe3da; }

/* ============ WATER STEWARDSHIP CHAPTER ============ */
/* Science-based assessment callout box */
.env-callout-box { border: 1px solid #e4dcef; background: #fff; border-radius: 6px; padding: 22px 26px; box-shadow: 0 12px 26px rgba(120,90,160,.10); margin-top: 26px; }
.env-callout-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; color: #1a1a1a; font-size: 16px; margin: 0 0 10px; }
.env-callout-p { color: var(--env-purple); font-size: 15px; line-height: 1.62; margin: 0; }

/* Water risk / mitigation table */
.env-table--risk { width: 100%; border-collapse: collapse; }
.env-table--risk thead th { text-align: left; font-weight: 700; background: #e9f4ee; border-top: 2px solid #0e7c6e; border-bottom: 2px solid #0e7c6e; padding: 10px 14px; font-size: 14px; color: #1a1a1a; }
.env-table--risk tbody td { vertical-align: top; padding: 16px 14px; border-bottom: 1px solid #cfe3da; font-size: 14px; }
.env-table--risk tbody td:first-child { background: #eef7f1; width: 25%; border-right: 1px solid #cfe3da; }
.env-table--risk tbody td:not(:first-child) { border-left: 1px solid #cfe3da; }
.env-table--risk .env-ul li { font-size: 14px; }
.env-riskt-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.env-riskt-ico { width: 46px; height: 46px; object-fit: contain; }
.env-riskt-name { color: #0e8a6b; font-weight: 700; font-size: 15px; }
.env-riskt-desc { margin: 0; color: #333; font-size: 14px; line-height: 1.5; }

/* CDP water-security box */
.env-cdp-box { display: flex; align-items: center; gap: 28px; background: #f5f0fa; border: 1px solid #e4dcef; border-radius: 6px; padding: 22px 28px; box-shadow: 0 12px 26px rgba(120,90,160,.08); margin-top: 22px; }
.env-cdp-logo img { width: 150px; height: auto; display: block; }
.env-cdp-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; color: #1a1a1a; font-size: 15px; margin: 0 0 6px; }
.env-cdp-h span { color: var(--env-purple); }
.env-cdp-p { color: var(--env-purple); font-size: 14px; line-height: 1.55; margin: 0; }

/* small note appended in a heading */
.env-subh4-note { font-weight: 400; font-size: 14px; color: #333; }

/* left-aligned bar-chart image */
.env-chart--bar { max-width: 540px; margin: 12px 0 0; }
.env-chart--bar img { width: 100%; height: auto; display: block; }
.env-chart-unit { font-size: 13px; color: #555; margin: 4px 0 0; }

/* sized image placeholder */
.env-imgph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: #eef2f4; border: 1px dashed #b9c6cc; border-radius: 6px; min-height: 360px; color: #7a8a90; }
.env-imgph span { font-size: 20px; font-weight: 700; }
.env-imgph small { font-size: 13px; }

/* wide multi-year water table */
.env-table--water { min-width: 1060px; }
.env-table--water thead th, .env-table--water tbody td { font-size: 12px; padding: 7px 8px; }
.env-page .env-table--water thead th { white-space: normal !important; }
.env-table--water thead th[colspan] { text-align: center; }
.env-table--water .env-grouprow td { font-weight: 700; background: #e9f4ee; }

/* numbered notes list (roman) */
.env-notes-ol { list-style: lower-roman; margin: 4px 0 0; padding-left: 22px; }
.env-notes-ol li { font-size: 12px; color: #555; line-height: 1.5; margin-bottom: 5px; }

/* float an image (or heading+chart) to the right, text wraps left */
.env-floatr { float: right; width: 46%; max-width: 520px; margin: 4px 0 16px 34px; }
.env-floatr > img { width: 100%; height: auto; display: block; }
.env-floatr .env-chart--bar { max-width: none; }
.env-clear { clear: both; }

/* full-content-width photo */
.env-fullimg { margin: 22px 0 8px; }
.env-page .env-fullimg img { display: block; width: 100%; height: auto; border-radius: 4px; }

/* callout box must clear the floated diagram so it never sits under it */
.env-callout-box { clear: both; }

/* ============ BIODIVERSITY CHAPTER ============ */
/* purple heading variant for callout boxes */
.env-callout-h--purple { color: var(--env-purple); }

/* biodiversity assessments — green box with chevron dividers */
.env-assess { background: #eef7f1; border-radius: 6px; padding: 4px 24px; margin-top: 12px; }
.env-assess-item { position: relative; padding: 15px 0; font-size: 15px; line-height: 1.55; color: #333; }
.env-assess-item:not(:last-child) { border-bottom: 1px solid #bfe0cf; }
.env-assess-item:not(:last-child)::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 11px; height: 11px; margin-left: -6px; background: #eef7f1; border-right: 1px solid #7cc4a0; border-bottom: 1px solid #7cc4a0; transform: rotate(45deg); }
.env-assess-lead { color: #00915c; font-weight: 700; }

/* species / bird cards grid */
.env-bird-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; margin-top: 22px; }
.env-bird-card { margin: 0; }
.env-bird-card img { display: block; width: 100%; height: auto; border-radius: 4px; aspect-ratio: 484 / 419; object-fit: cover; }
.env-bird-card figcaption { margin-top: 10px; font-size: 15px; line-height: 1.5; color: #1a1a1a; }
.env-bird-name { color: #00915c; font-weight: 700; }

/* two-column read-further grid */
.env-policy-links--2col { grid-template-columns: 1fr 1fr; }

/* biodiversity: mid-sized centred infographics */
.env-fullimg--mid { max-width: 900px; margin-left: auto; margin-right: auto; }
/* biodiversity: smaller species-card grid so a row of 2 + captions fits one screen */
.env-bird-grid { max-width: 760px; gap: 22px 26px; }
/* read-further 2-col: no dividers, left-aligned so row 2 lines up with row 1 above */
.env-policy-links--2col { grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 22px; max-width: 840px; }
.env-policy-links--2col .env-policy-link { border-left: 0; padding-left: 0; padding-right: 0; }
.env-policy-links--2col .se-readmore { align-self: start; }

/* species grid: larger and centred for equal left/right spacing */
.env-bird-grid { max-width: 900px; margin-left: auto; margin-right: auto; }

/* ============================================================
   SOCIAL — EMPLOYEES  (soc-)   · ESG-Overview sitemap #11
   Single scrolling page. Banner mirrors the Environment hero
   treatment (full-screen coloured hero + line-art on the right)
   but in the page's blue; NO secondary nav.
   ============================================================ */
.soc-page {
    background: #ffffff;
    --soc-blue:   #00729c;   /* dark blue — titles, section headings */
    --soc-lblue:  #00b4d8;   /* light blue / cyan — accents, sub-labels */
    --soc-purple: #975ea7;
    --soc-orange: #ef8b22;
    --soc-teal:   #3cb1b6;
    --soc-body:   #1a1a1a;
    --ail-body:   #1a1a1a;   /* prev/next nav labels */
}

/* ---- Full-screen coloured banner (Environment-style, blue) ---- */
.soc-hero { position: relative; background: var(--soc-blue); min-height: 78vh; padding: 150px 0 70px; display: flex; align-items: center; overflow: hidden; }
.soc-hero-art { position: absolute; right: -3%; bottom: 4%; width: 60%; max-width: 1080px; height: auto; opacity: .95; pointer-events: none; }
.soc-hero .container { position: relative; z-index: 1; }
.soc-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .3px; color: #a9dbeb; margin: 0 0 22px; }
.soc-title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 58px); font-weight: 700; line-height: 1.08; color: #eaf5fb; margin: 0; max-width: 16ch; }

/* ---- Sections / prose ---- */
.soc-section { padding: 46px 0; }
.soc-section--tint { background: #f4f8fb; }
.soc-section > .container > :first-child { margin-top: 0; }
.soc-lead-p { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--soc-body); margin: 0 0 26px; }
.soc-body-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--soc-body); margin: 0 0 18px; }
.soc-h { color: var(--soc-blue); font-weight: 700; font-family: 'Noto Sans', sans-serif; margin: 8px 0 24px; }   /* section heading (h2 → Noto 18px, bold) */
.soc-h--black { color: #1a1a1a; }
.soc-h:first-child { margin-top: 0; }

/* ---- Key Linkages (reuses env-glance component vocabulary) ---- */
.soc-linkages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.soc-link-h { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 18px; }
.soc-tags { list-style: none; margin: 0; padding: 0; }
.soc-tags li { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.4; color: #1a1a1a; margin: 0 0 16px; padding-left: 60px; min-height: 26px; display: flex; align-items: center; }
.soc-code { position: absolute; left: 0; top: -1px; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; padding: 4px 7px; border: 1.5px solid currentColor; border-right: 0; font-size: 13px; font-weight: 700; }
.soc-code--m { color: #ef8b22; }   /* material topics — orange */
.soc-code--s { color: #975ea7; }   /* strategic priorities — purple */
.soc-code--r { color: #3cb1b6; }   /* risks — teal */
.soc-caps { display: flex; flex-direction: column; gap: 14px; }
.soc-cap { display: inline-flex; align-items: center; gap: 12px; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--soc-body); }
.soc-cap img { width: 30px; height: 30px; flex: 0 0 auto; }
.soc-sdgs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; max-width: 300px; }
.soc-sdgs img { width: 100%; height: auto; display: block; }
.soc-link-r2 { margin-top: 6px; }   /* second-row blocks under cols 2 & 3 */

/* ---- Philosophy quote (Environment-style: icon on top, full-width text) ---- */
.soc-quote { position: relative; margin: 0; padding: 8px 0 0 0; border: 0; }
.soc-quote-ico { display: block; width: 52px; height: auto; margin: 0 0 14px; }
.soc-quote p { font-family: 'Noto Sans', sans-serif; font-size: clamp(18px, 1.7vw, 22px); font-weight: 700; line-height: 1.5; margin: 0; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---- People Vision / Mission cards (ribbon header + shadowed box) ---- */
.soc-vm { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin: 6px 0 0; align-items: stretch; }
.soc-vm-card { display: flex; flex-direction: column; }
.soc-vm-head { position: relative; background: var(--soc-lblue); height: 48px; display: flex; align-items: center; }
.soc-vm-head::before { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 0; border-style: solid; border-width: 48px 0 0 20px; border-color: transparent transparent transparent #0090b6; }
.soc-vm-chip { position: relative; z-index: 1; background: #fff; margin-left: 34px; padding: 9px 22px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; box-shadow: 0 1px 5px rgba(0,0,0,.15); }
.soc-vm-body { flex: 1; border: 1px solid #cfe7f2; border-top: 0; padding: 24px 26px; box-shadow: 9px 9px 0 rgba(0,180,216,.10); }
.soc-vm-body p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.68; color: var(--soc-body); margin: 0; }

/* ---- People Strategy pillars (two columns flanking the pillar graphic) ---- */
.soc-pillars-title { position: relative; text-align: center; margin: 44px 0 34px; }
.soc-pillars-title::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--soc-lblue); }
.soc-pillars-title span { position: relative; z-index: 1; display: inline-block; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 11px 28px; border-radius: 3px; }
.soc-pillars { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 44px; align-items: stretch; }
.soc-pillar-col { display: flex; flex-direction: column; gap: 26px; }
.soc-pillar-mid { display: flex; align-items: stretch; justify-content: center; }
.soc-pillar-mid img { height: 100%; width: auto; max-width: 110px; object-fit: contain; }
.soc-pillar-label { display: block; border: 1px solid var(--soc-lblue); color: var(--soc-lblue); font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14.5px; line-height: 1.35; padding: 10px 16px; margin: 0 0 12px; }
.soc-pillar-label--dk { color: var(--soc-blue); border-color: var(--soc-blue); }
.soc-pillar p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--soc-body); margin: 0; }

/* ---- Centred band title (blue pill + flanking cyan lines) ---- */
.soc-bandtitle { position: relative; text-align: center; margin: 40px 0 28px; }
.soc-bandtitle::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--soc-lblue); }
.soc-bandtitle span { position: relative; z-index: 1; display: inline-block; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 11px 28px; border-radius: 3px; }

/* ---- EVP: 6-column definition box ---- */
.soc-evp-sub { text-align: center; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; position: relative; margin: 0 0 20px; }
.soc-evp-sub::before, .soc-evp-sub::after { content: ""; position: absolute; top: 50%; width: 90px; height: 1px; background: var(--soc-lblue); }
.soc-evp-sub::before { left: 0; } .soc-evp-sub::after { right: 0; }
.soc-evp-box { border: 1px solid var(--soc-lblue); border-radius: 2px; }
.soc-evp-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.soc-evp-col { padding: 22px 16px; text-align: center; border-left: 1px solid #d3e9f4; }
.soc-evp-col:first-child { border-left: 0; }
.soc-evp-col h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 0 0 8px; }
.soc-evp-col p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--soc-body); margin: 0; }

/* ---- Numbered items box (What Sets Us Apart) ---- */
.soc-numbox { border: 1px solid var(--soc-lblue); border-radius: 2px; padding: 30px 34px; }
.soc-num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; }
.soc-num-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.soc-num { font-family: 'Noto Sans', sans-serif; font-size: 34px; font-weight: 300; line-height: .9; color: var(--soc-lblue); }
.soc-num-item h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 0 0 5px; }
.soc-num-item p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--soc-body); margin: 0; }

/* ---- 3-column bulleted box (EVP Aligned) ---- */
.soc-cols3 { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--soc-lblue); border-radius: 2px; }
.soc-cols3 > div { padding: 24px 22px; border-left: 1px solid #d3e9f4; }
.soc-cols3 > div:first-child { border-left: 0; }
.soc-col-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 0 0 10px; }
.soc-bul { list-style: none; margin: 8px 0 0; padding: 0; }
.soc-bul li { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--soc-body); margin: 0 0 10px; padding-left: 18px; }
.soc-bul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: var(--soc-purple); }
/* keep compact bullets inside the narrow EVP 3-column cards */
.soc-cols3 .soc-bul li { font-size: 13.5px; line-height: 1.5; margin: 0 0 9px; padding-left: 16px; }
.soc-cols3 .soc-bul li::before { top: .5em; }
.soc-cols3 p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--soc-body); margin: 0; }

/* ---- Leadership/Culture & Change framework: label-rows over tinted panel ---- */
.soc-lc { position: relative; background: #e6f2f9; padding: 40px 40px 44px; overflow: hidden; }
.soc-lc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .30; filter: blur(4px); transform: scale(1.05); pointer-events: none; }
.soc-lc-inner { position: relative; z-index: 1; }
.soc-lc-titlewrap { text-align: center; margin: 0 0 30px; }
.soc-lc-title { display: inline-block; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 13px 30px; border-radius: 4px; box-shadow: 0 8px 18px rgba(0,0,0,.16); }
.soc-lc-row { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: start; padding: 0 0 22px; border-bottom: 1px solid var(--soc-lblue); margin-bottom: 24px; }
.soc-lc-row:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.soc-lc-label { background: #fff; border: 1px solid #e4e4e4; box-shadow: 5px 6px 0 rgba(151,94,167,.10); padding: 18px 20px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.35; color: #1a1a1a; }

/* ---- Key Highlights stat band ---- */
.soc-khl { border-radius: 2px; overflow: hidden; margin: 8px 0 0; }
.soc-khl-head { background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; padding: 15px 24px; }
.soc-khl-body { background: #e6f2f9; padding: 34px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 60px; }
.soc-khl-num { display: inline-block; font-family: 'Noto Sans', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; margin: 0 0 8px; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-khl-num * { -webkit-text-fill-color: transparent; color: transparent; }
.soc-khl-label { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.45; color: var(--soc-body); margin: 0; padding-left: 24px; }
.soc-khl-label::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--soc-lblue); }
.soc-khl-delta { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--soc-lblue); margin: 8px 0 0; }
.soc-khl-delta .tri { font-size: 11px; margin-right: 5px; }

/* ---- 7-Steps wheel ---- */
.soc-wheel { text-align: center; margin: 40px 0 0; }
.soc-wheel img { display: block; width: 100%; max-width: 560px; height: auto; margin: 0 auto; }
.soc-wheel--wide { border-top: 1px solid #dcdcdc; padding-top: 34px; }
.soc-wheel--wide img { max-width: 940px; }

/* ---- Training banner (photo + topics list) ---- */
.soc-tbanner { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; align-items: stretch; overflow: hidden; border-radius: 2px; background: linear-gradient(90deg, #0b3350 0%, #0e5487 100%); min-height: 360px; }
.soc-tbanner-img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.soc-tbanner-list { list-style: none; margin: 0; padding: 34px 40px; display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.soc-tbanner-list li { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 19px; font-weight: 600; color: #fff; padding-left: 34px; }
.soc-tbanner-list li::before { content: ""; position: absolute; left: 0; top: .28em; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 11px; border-color: transparent transparent transparent #00b4d8; }

/* ---- Preparing for The Future (3-col initiatives) ---- */
.soc-subh { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 20px 0 12px; }
.soc-prep { display: block; margin: 8px 0 0; }              /* stacked, full width */
.soc-prep-cyan { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 26px 0 14px; }
.soc-init-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #6b7f8a; margin: 20px 0 6px; }
.soc-prep-col p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--soc-body); margin: 0; }

/* ---- HR Governance flow ---- */
.soc-hrgov { display: grid; grid-template-columns: 1fr 1fr auto 1.05fr; gap: 30px; align-items: start; margin: 10px 0 0; }
.soc-hrgov-label { background: #fff; border: 1px solid #e2e2e2; border-bottom: 2px solid var(--soc-lblue); box-shadow: 0 3px 8px rgba(0,0,0,.06); padding: 16px 18px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.35; color: #1a1a1a; margin: 0 0 16px; }
.soc-hrgov-arrow { align-self: center; color: var(--soc-lblue); font-size: 22px; line-height: 1; }
.soc-hrgov-out { position: relative; background: #dceff9; border: 1px solid #bfe0f0; border-radius: 2px; padding: 28px 20px 20px; text-align: center; }
.soc-hrgov-out-tab { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--soc-teal); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14px; padding: 7px 22px; border-radius: 3px; white-space: nowrap; }
.soc-hrgov-out p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--soc-body); margin: 0; }

/* ---- Strategic Workforce Planning & Talent Acquisition (2-col, underlined heads) ---- */
.soc-swp { display: block; margin: 8px 0 0; }              /* stacked, full width */
.soc-swp-h { display: block; border: 1px solid var(--soc-lblue); background: #fff; padding: 11px 16px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 24px 0 14px; }
.soc-swp-h:first-child { margin-top: 0; }
.soc-swp p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--soc-body); margin: 0 0 14px; }
.soc-swp .soc-bul li { font-size: 16px; }

/* ---- Highlighted cyan callout (dash lead) ---- */
.soc-hl-callout { position: relative; padding-left: 24px; margin: 26px 0; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-hl-callout::before { content: ""; position: absolute; left: 0; top: .5em; width: 15px; height: 3px; background: var(--soc-purple); }

/* ---- Cadre Hiring Highlights (light-blue box, 5-col) ---- */
.soc-cadre-box { background: #e6f2f9; border-radius: 2px; padding: 30px 34px; margin: 8px 0 34px; }
.soc-cadre-head { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 0 0 22px; }
.soc-cadre-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.soc-cadre-col { position: relative; padding-left: 16px; font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #6b7f8a; }
.soc-cadre-col::before { content: ""; position: absolute; left: 0; top: .45em; width: 6px; height: 6px; background: var(--soc-purple); }
.soc-cadre-col strong { color: var(--soc-blue); font-weight: 700; }

/* ---- 3-across stat row (reuses khl number styling) ---- */
.soc-stats3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; margin: 6px 0 0; }
.soc-khl-num small { font-size: .5em; font-weight: 700; }

/* ---- Fair & Inclusive Hiring (2-col boxed-heading cards) ---- */
.soc-dei { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 50px; margin: 8px 0 0; align-items: start; }
.soc-dei-h { display: block; border: 1px solid var(--soc-lblue); background: #fff; padding: 11px 16px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 0 0 14px; }
.soc-dei-item p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.6; color: var(--soc-body); margin: 0; padding-bottom: 4px; }

/* ---- Internal Talent Mobility chart ---- */
.soc-chart { max-width: 620px; margin: 8px 0 0; }
.soc-chart-title { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 0 0 14px; }
.soc-chart .phl-graph { border-color: #bfe0f0; }

/* ---- Footnotes ---- */
.soc-note { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.55; color: #555; margin: 14px 0 0; }
.soc-note strong { color: #1a1a1a; }

/* ---- ASE highlighted box ---- */
.soc-ase { border: 1px solid #d3e3ec; border-left: 4px solid var(--soc-lblue); border-radius: 2px; padding: 28px 32px; margin: 24px 0 0; }
.soc-ase-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.25; color: var(--soc-blue); margin: 0 0 16px; }
.soc-ase p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--soc-body); margin: 0 0 16px; }
.soc-ase-impact-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 20px 0 14px; }
.soc-ase-impact { display: flex; flex-wrap: wrap; gap: 40px; margin: 0 0 4px; }
/* keep the impact numbers full-size (beats the .soc-ase p rule on specificity) */
.soc-ase .soc-khl-num { font-size: 40px; }
.soc-ase .soc-khl-label { font-size: 14px; }
.soc-ase-up { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-ase-up-sub { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--soc-body); }
/* scoped margins beat the greedy `.soc-ase p` rule (higher specificity) */
.soc-ase .soc-ase-up { margin: 22px 0 0; }
.soc-ase .soc-ase-up-sub { margin: 0; }
.soc-ase .soc-ase-impact-h { margin: 20px 0 14px; }

/* ---- Image-based chart (client SVG) + legend ---- */
.soc-imgchart { margin: 6px 0 0; }
.soc-imgchart-title { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 0 0 16px; }
.soc-imgchart-title .u { font-weight: 400; font-size: 13px; color: #666; }
.soc-imgchart-row { display: grid; grid-template-columns: minmax(0, 640px) auto; gap: 34px; align-items: center; }
.soc-imgchart-row img { display: block; width: 100%; height: auto; }
.soc-legend { display: flex; flex-direction: column; gap: 14px; }
.soc-legend span { display: inline-flex; align-items: center; gap: 10px; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: #1a1a1a; }
.soc-legend i { width: 13px; height: 13px; flex: 0 0 auto; border-radius: 2px; }

/* ---- Data table (Employee Turnover) ---- */
.soc-table-wrap { overflow-x: auto; margin: 8px 0 0; }
.soc-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 14px; border-top: 3px solid var(--soc-lblue); }
.soc-table th, .soc-table td { border: 1px solid #d3e3ec; padding: 9px 10px; text-align: center; color: var(--soc-body); }
.soc-table thead th { font-weight: 700; }
.soc-table .soc-th-grp { background: #eef5f9; color: #1a1a1a; }
.soc-table .soc-th-cur { background: var(--soc-blue); color: #fff; }
.soc-table .soc-sub-cur { background: #dceff9; color: var(--soc-blue); }
.soc-table td.soc-cur { background: #eef7fc; }
.soc-table td.soc-lbl { text-align: left; font-weight: 700; }
.soc-table td.soc-metric { text-align: left; }

/* ---- Capability building cards ---- */
.soc-capcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 10px 0 0; align-items: stretch; }
.soc-capcard { background: #e6f2f9; border-radius: 14px; box-shadow: 0 7px 0 var(--soc-lblue); padding: 24px 26px 26px; }
.soc-capcard h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: #1a1a1a; margin: 0 0 10px; }
.soc-capcard p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--soc-body); margin: 0; }

/* ---- Learning & Development infographic + intro ---- */
.soc-infographic { text-align: center; margin: 6px 0 0; }
.soc-infographic img { display: block; width: 100%; max-width: 560px; height: auto; margin: 0 auto; }
.soc-ldpill-wrap { margin: 30px 0 0; }
.soc-ldpill { display: inline-block; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 12px 28px; border-radius: 3px; }
.soc-ldband { background: #dceef8; padding: 26px 30px; }
.soc-ldband p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; font-weight: 700; color: var(--soc-blue); margin: 0; }

/* ---- Strategic Capability Building matrix ---- */
.soc-cap-grid { display: grid; grid-template-columns: 190px 1.6fr 1fr 0.9fr; gap: 0 26px; }
.soc-cap-head-row { padding: 0 24px 14px; }
.soc-cap-head-row span { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; line-height: 1.3; }
.soc-cap-row { background: #f3f5f7; border-radius: 8px; padding: 24px; margin-bottom: 20px; align-items: start; }
.soc-cap-c1 img { width: 52px; height: 52px; display: block; margin: 0 0 14px; }
.soc-cap-c1 h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: #1a1a1a; margin: 0; padding-bottom: 14px; border-bottom: 2px solid var(--soc-blue); }
.soc-cap-row p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--soc-body); margin: 0 0 10px; }
.soc-cap-row p:last-child { margin-bottom: 0; }
.soc-cap-row .soc-bul { margin-top: 10px; }
.soc-cap-row .soc-bul li { font-size: 13.5px; line-height: 1.5; margin: 0 0 8px; padding-left: 16px; }
.soc-cap-row .soc-bul li::before { top: .5em; }
.soc-cap-row strong { color: #1a1a1a; font-weight: 700; }
.soc-cap-row .soc-cap-wide { grid-column: 2 / -1; }

/* ---- Future-Ready Learning Highlights box ---- */
.soc-flh { border: 1px solid #d3e3ec; border-left: 4px solid var(--soc-lblue); border-radius: 2px; padding: 28px 32px; margin: 24px 0 0; }
.soc-flh-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.25; color: var(--soc-blue); margin: 0 0 22px; }
.soc-flh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 44px; }
.soc-flh-sub { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 22px 0 10px; border-top: 1px solid #d7e6f0; padding-top: 18px; }
.soc-flh-col > .soc-flh-sub:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.soc-flh-line { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: var(--soc-body); margin: 0 0 12px; }
.soc-cy { color: var(--soc-lblue); font-weight: 700; }

/* ---- Training highlights stat grid ---- */
.soc-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 36px; margin: 8px 0 0; align-items: start; }
.soc-khl-num .rs { font-weight: 800; }

/* ---- Just-transition infographic ---- */
.soc-jt-img { text-align: center; margin: 6px 0 0; }
.soc-jt-img img { display: block; width: 100%; max-width: 820px; height: auto; margin: 0 auto; }

/* ---- DEI survey chart band ---- */
.soc-deichart { background: #e7e9f3; border-radius: 4px; padding: 30px 40px; }
.soc-deichart .phl-chart { max-width: 880px; margin: 0 auto; }

/* ---- DEI policy band ---- */
.soc-deiband .soc-dei-policy { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.7; font-weight: 700; color: #5a5a5a; margin: 0 0 20px; }
.soc-deiband .soc-subh { margin-top: 6px; }

/* ---- Reference note (⊕ link) ---- */
.soc-refnote { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #555; margin: 16px 0 0; }
.soc-refnote .oplus { color: var(--soc-lblue); font-weight: 700; margin-right: 6px; }

/* ---- Wellbeing ecosystem flow ---- */
.soc-well-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0 16px; align-items: stretch; margin: 8px 0 0; }
.soc-well-col { background: #e8f3f9; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.soc-well-h { background: #2f9fc9; color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; padding: 16px 18px; }
.soc-well-col .soc-bul { margin: 0; padding: 18px 20px 12px; }
.soc-well-col .soc-bul li { font-size: 13.5px; line-height: 1.5; margin: 0 0 12px; }
.soc-well-arrow { align-self: center; background: #9aa3ac; color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 12.5px; line-height: 1.25; text-align: center; padding: 14px 18px 14px 12px; clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%); }
.soc-well-bottom { display: flex; justify-content: center; gap: 70px; margin: 24px 0 0; }
.soc-well-pill { background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; text-align: center; padding: 16px 34px; border-radius: 8px; }
.soc-well-banner { border: 1px solid var(--soc-lblue); border-radius: 6px; text-align: center; padding: 15px; margin: 22px 0 0; color: var(--soc-lblue); font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; }
/* connector lines: columns -> pills */
.soc-well-connect { margin: 4px 4% 0; height: 24px; }
.soc-well-connect svg { display: block; width: 100%; height: 100%; }
.soc-well-bottom { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; gap: 0; margin: 0; }

/* ---- Psychological-safety icon cards ---- */
.soc-ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 44px; margin: 8px 0 0; }
.soc-ps-card { display: grid; grid-template-columns: 116px 1fr; align-items: stretch; }
.soc-ps-ico { background: #dcecf5; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 18px; }
.soc-ps-ico img { width: 60px; height: 60px; display: block; }
.soc-ps-text { border: 1px solid #d3e3ec; border-left: 0; border-bottom: 2px solid var(--soc-lblue); border-radius: 0 10px 10px 0; padding: 20px 24px; display: flex; align-items: center; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.4; color: #1a1a1a; }

/* ---- Worker Welfare Infrastructure (2x2 titled bullet grid) ---- */
.soc-wwi { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 50px; margin: 8px 0 0; align-items: stretch; }
.soc-wwi-item { display: flex; flex-direction: column; }
.soc-wwi-item .soc-bul { flex: 1; }
.soc-wwi-item { border-bottom: 2px solid var(--soc-blue); padding-bottom: 20px; }
.soc-wwi-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--soc-blue); margin: 0 0 12px; }
.soc-wwi-item .soc-bul li { font-size: 15px; }

/* ---- cyan sub-subheading ---- */
.soc-cyanh { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 20px 0 8px; }
.soc-cyanh[style*="17px"] { color: var(--soc-blue); }   /* programme/story headings — dark blue bold */

/* ---- cyan section heading (for chart/table titles) ---- */
.soc-cyan-title { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--soc-lblue); margin: 0 0 16px; }

/* ---- Engagement Survey box ---- */
.soc-esurvey { border: 1px solid #c9b6da; border-radius: 2px; padding: 28px 34px; margin: 8px 0 0; }
.soc-esurvey-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; color: var(--soc-blue); margin: 0 0 14px; }
.soc-esurvey-intro { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--soc-blue); margin: 0 0 20px; }
.soc-esurvey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 50px; }
.soc-esurvey-col > .soc-cyanh:first-child { margin-top: 0; }
.soc-esurvey .soc-bul li { color: #0e7bb0; font-size: 14px; line-height: 1.5; }

/* ---- Way Forward box ---- */
.soc-wayfwd { background: #e6f2f9; border-radius: 4px; padding: 30px 34px; display: grid; grid-template-columns: 300px 1fr; gap: 44px; margin: 8px 0 0; align-items: start; }
.soc-wayfwd-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.35; color: #1a1a1a; margin: 0; }
.soc-wayfwd-h .cy { color: var(--soc-lblue); display: block; }
.soc-wayfwd .soc-bul { margin: 0; }
.soc-wayfwd .soc-bul li { font-size: 15px; }

/* ---- Talent-Management (AI/Digitalisation) flow ---- */
.soc-tm { background: #e8f3f9; border-radius: 8px; padding: 26px 28px; margin: 6px 0 0; }
.soc-tm-title { background: linear-gradient(90deg, #1c6fa5 0%, #2f9fd0 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; text-align: center; padding: 16px 20px; border-radius: 4px; margin: 0 auto 24px; max-width: 560px; }
.soc-tm-row { display: grid; grid-template-columns: 200px 28px 1fr; gap: 0 14px; align-items: center; margin-bottom: 16px; }
.soc-tm-row:last-child { margin-bottom: 0; }
.soc-tm-label { background: #fff; border: 1px solid var(--soc-lblue); border-radius: 2px; padding: 20px 14px; text-align: center; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: #1a1a1a; }
.soc-tm-arrow { color: var(--soc-lblue); font-size: 20px; text-align: center; line-height: 1; }
.soc-tm-desc { background: #f0f4f7; border-radius: 2px; padding: 18px 22px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--soc-body); }

/* ---- Human-rights value-chain infographic ---- */
.soc-vc-img { text-align: center; margin: 6px 0 40px; }
.soc-vc-img img { display: block; width: 100%; max-width: 720px; height: auto; margin: 0 auto; }

/* ---- Read-further links ---- */
.soc-readmores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 34px; margin: 16px 0 0; }
.soc-readmore { display: flex; gap: 10px; align-items: flex-start; text-decoration: none; }
.soc-readmore .rm-ico { flex: 0 0 auto; margin-top: 2px; }
.soc-readmore .rm-label { display: block; font-family: 'Noto Sans', sans-serif; font-size: 12px; color: #8a8a8a; line-height: 1.3; }
.soc-readmore .rm-text { display: block; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14px; color: #1a1a1a; line-height: 1.3; }

/* ---- Dense data tables (workforce composition / locations / regions) ---- */
.soc-dtable { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 13px; border-top: 3px solid var(--soc-lblue); }
.soc-dtable th, .soc-dtable td { border: 1px solid #dbe6ec; padding: 7px 9px; text-align: center; color: #1a1a1a; }
.soc-dtable thead th { font-weight: 700; background: #eef5f9; }
.soc-dtable .l { text-align: left; }
.soc-dtable .r { text-align: right; }
.soc-dtable .cat td { background: #e6f3fb; color: var(--soc-blue); font-weight: 700; text-align: left; }
.soc-dtable .tot td { font-weight: 700; background: #f1f7fc; }
.soc-dtable .pct td { background: #f8fafc; color: #1a1a1a; }
.soc-dtable .pct td.r { text-align: right; }
.soc-dtable .grand td { font-weight: 700; background: #e6f3fb; }
.soc-dtable th.cur { background: var(--soc-blue); color: #fff; }
.soc-dtable td.curcell { background: #eef7fc; }
.soc-dtable .cy td { color: var(--soc-lblue); font-weight: 700; text-align: left; }
.soc-dtable .cy td:not(.l) { text-align: center; }
.soc-formula { display: inline-flex; align-items: center; gap: 8px; font-family: 'Noto Sans', sans-serif; font-size: 15px; color: var(--soc-body); margin: 0 0 4px; }
.soc-formula .frac { display: inline-flex; flex-direction: column; text-align: center; }
.soc-formula .frac .num { border-bottom: 1px solid #1a1a1a; padding: 0 6px 2px; }
.soc-formula .frac .den { padding: 2px 6px 0; }
.soc-hero-illus { margin: 6px 0 0; text-align: center; }
.soc-hero-illus img { display: block; width: 100%; max-width: 820px; height: auto; border-radius: 4px; margin: 0 auto; }

/* ---- No-bullet list variant ---- */
.soc-bul--nobullet li { padding-left: 0; }
.soc-bul--nobullet li::before { display: none; }

/* ---- Gender-column tinting: full Male & Female vertical strips (all rows) ---- */
.soc-dtable--gender tbody td:first-child,
.soc-dtable--gender tbody td:nth-child(n+10) { background-color: #fff; }                      /* label + Grand Total + Share = white */
.soc-dtable--gender tbody td:nth-child(n+2):nth-child(-n+5) { background-color: #ebe1f4; }    /* Male strip */
.soc-dtable--gender tbody td:nth-child(n+6):nth-child(-n+9) { background-color: #daeafa; }    /* Female strip */
.soc-dtable--gender tbody tr.cat td { background-color: #e6f3fb; }                            /* keep category rows */
.soc-dtable--gender .tot td, .soc-dtable--gender .pct td { font-weight: 400; }
.soc-dtable--gender .tot td strong, .soc-dtable--gender .grand td { font-weight: 700; }
.soc-dtable--gender tbody tr:last-child td { border-bottom: 2px solid var(--soc-lblue); }

/* ---- Location table: full Male & Female vertical strips ---- */
.soc-dtable--loc tbody td:first-child,
.soc-dtable--loc tbody td:nth-child(6),
.soc-dtable--loc tbody td:nth-child(7) { background-color: #fff; }                            /* label + Total = white */
.soc-dtable--loc tbody td:nth-child(2), .soc-dtable--loc tbody td:nth-child(3) { background-color: #ebe1f4; }   /* Male */
.soc-dtable--loc tbody td:nth-child(4), .soc-dtable--loc tbody td:nth-child(5) { background-color: #daeafa; }   /* Female */
.soc-dtable--loc .grand td { font-weight: 700; }
.soc-dtable--loc tbody tr:last-child td { border-bottom: 2px solid var(--soc-lblue); }

/* ---- OHS: centred vector infographics ---- */
.soc-figc { text-align: center; margin: 6px 0 0; }
.soc-figc img { display: block; height: auto; margin: 0 auto; }
.soc-figc--tall img { width: 100%; max-width: 560px; }
.soc-figc--principles img { width: 100%; max-width: 820px; }
.soc-figc--photo img { width: 100%; max-width: 720px; border-radius: 4px; }
.soc-figc--pillars img { width: 100%; max-width: 1000px; }

/* ---- OHS: tab-boxes (SMS section) ---- */
.soc-tabgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; align-items: start; margin: 8px 0 0; }
.soc-tabcol { display: flex; flex-direction: column; }
.soc-tabbox { margin: 0 0 30px; }
.soc-tabbox-head { position: relative; background: #3cb1b6; color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; padding: 14px 20px 14px 38px; }
.soc-tabbox-head::before { content: ""; position: absolute; left: 0; top: 0; border-style: solid; border-width: 22px 22px 0 0; border-color: #2b8b8f transparent transparent transparent; }
.soc-tabbox-body { border: 1px solid #e0e6e9; box-shadow: 6px 8px 14px rgba(0,0,0,.06); padding: 20px 24px; }
.soc-tabbox-body .soc-bul { margin: 0; }
.soc-tabbox-body .soc-bul li { font-size: 15px; }

/* ---- OHS: Governance Model numbered items ---- */
.soc-govnum { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; margin: 8px 0 0; border: 1px solid #dfe6e9; box-shadow: 6px 8px 14px rgba(0,0,0,.06); border-radius: 2px; padding: 26px 30px; }
.soc-govnum-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.soc-govnum-n { font-family: 'Noto Sans', sans-serif; font-size: 44px; font-weight: 800; line-height: .9; color: var(--soc-lblue); }
.soc-govnum-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 0 0 5px; }
.soc-govnum-item p { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.55; color: var(--soc-body); margin: 0; }

/* ---- OHS: Three Pillars banner ---- */
.soc-pillbanner { text-align: center; margin: 40px 0 0; }
.soc-pillbanner span { display: inline-block; background: #3cb1b6; color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.25; padding: 16px 40px; clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%); }

/* ---- divided bullet list (cyan rules between items) ---- */
.soc-bul--divided li { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #cfe7f2; }
.soc-bul--divided li:last-child { border-bottom: 0; }

/* ---- OHS: label-rows (grey/blue label + content) ---- */
.soc-lrow { display: grid; grid-template-columns: 240px 1fr; gap: 34px; align-items: start; padding: 0 0 22px; border-bottom: 1px solid #e2e8eb; margin-bottom: 22px; }
.soc-lrow:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.soc-lrow-label { padding: 18px 20px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: #1a1a1a; background: #eef4f7; }
.soc-lrow-label--blue { background: #e3f1fb; }
.soc-lrow .soc-bul { margin: 0; }
.soc-lrow .soc-bul li { font-size: 15px; }
.soc-lrow > div > p { margin: 0; }

/* ---- OHS: Embedding Quality Assurance boxes ---- */
.soc-qa { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 8px 0 0; }
.soc-qa-box { border: 1px solid #e2e8eb; padding: 18px 20px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: var(--soc-body); }
.soc-qa-box:nth-child(odd) { border-top: 3px solid #3cb1b6; }
.soc-qa-box:nth-child(even) { border-bottom: 3px solid #3cb1b6; }

/* ---- OHS: OHS Risk Competencies box ---- */
.soc-comp { border: 1px solid #cbb8db; box-shadow: 8px 10px 0 rgba(151,94,167,.08); margin: 8px 0 0; }
.soc-comp-tab { display: block; }
.soc-comp-tab span { display: inline-block; background: #1a1a1a; }
.soc-comp-body { display: grid; grid-template-columns: 0.82fr 1.18fr; }
.soc-comp-left { padding: 24px 28px; }
.soc-comp-left p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--soc-body); margin: 0; }
.soc-comp-right { background: #f6f1fb; padding: 24px 28px; }
.soc-comp-eh { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 0 0 14px; }
.soc-comp-sub { border-bottom: 1px solid #e4dcec; padding-bottom: 14px; margin-bottom: 14px; }
.soc-comp-sub:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.soc-comp-sub h5 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14.5px; color: #1a1a1a; margin: 0 0 5px; }
.soc-comp-sub p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: var(--soc-body); margin: 0; }
.soc-comp-toplbl { display: inline-block; background: #fff; border: 1px solid #cbb8db; border-bottom: 0; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; padding: 11px 24px; margin: 0 0 -1px 20px; position: relative; }

/* ---- OHS: training cards (icon header) ---- */
.soc-tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; margin: 8px 0 0; }
.soc-tcard { background: #e6f1f1; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.soc-tcard-body { flex: 1; }
.soc-tcard-head { background: #3cb1b6; color: #fff; display: flex; align-items: center; gap: 14px; padding: 16px 20px; }
.soc-tcard:nth-child(2) { background: #e7eef5; }
.soc-tcard:nth-child(2) .soc-tcard-head { background: #00729c; }
.soc-tcard-head img { width: 40px; height: 40px; flex: 0 0 auto; }
.soc-tcard-head span { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.25; }
.soc-tcard-body { padding: 16px 22px 18px; }
.soc-tcard-body .soc-bul { margin: 0; }
.soc-tcard-body .soc-bul li { font-size: 14px; }

/* ---- data table with light-blue header + white text ---- */
.soc-dtable--lbhead thead th { background: var(--soc-lblue); color: #fff; }
.soc-dtable--lbhead tbody tr:last-child td { border-bottom: 2px solid var(--soc-lblue); }

/* ---- OHS: Occupational Health Services box ---- */
.soc-ohs-tab { display: inline-block; background: #fff; color: var(--soc-blue); border: 1px solid #cbb8db; border-bottom: 0; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 12px 26px; margin-left: 6px; }
.soc-ohs-box { background: #f6f1fb; border: 1px solid #cbb8db; border-radius: 0 2px 2px 2px; padding: 26px 30px 28px; }
.soc-ohs-box .soc-subh:first-child { margin-top: 0; }

/* ---- OHS: Digitisation cards (circle icon) ---- */
.soc-digi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; margin: 52px 0 0; }
.soc-digi { position: relative; background: #eaf4f9; border: 1px solid #d3e7f0; border-radius: 12px; padding: 56px 26px 26px; }
.soc-digi-ico { position: absolute; top: -44px; left: 50%; transform: translateX(-50%); width: 88px; height: 88px; border-radius: 50%; background: #1b8fb3; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.soc-digi-ico img { width: 46px; height: 46px; }
.soc-digi .soc-digi-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 0 0 12px; }
.soc-digi p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: var(--soc-body); margin: 0 0 12px; }
.soc-digi p:last-child { margin-bottom: 0; }
.soc-digi strong { color: #1a1a1a; }

/* ---- OHS: Case study ---- */
.soc-cs-label { padding-left: 12px; border-left: 4px solid var(--soc-lblue); font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 20px; line-height: 1.05; margin: 30px 0 20px; }
.soc-cs-label .cs1 { color: var(--soc-lblue); display: block; }
.soc-cs-label .cs2 { color: var(--soc-purple); display: block; }
.soc-casestudy { border-left: 1px solid #cfe7f2; padding-left: 26px; }
.soc-casestudy .soc-h:first-child { margin-top: 0; }

/* ---- OHS: pull-quote ---- */
.soc-pquote { position: relative; border: 1px solid #e0e6e9; box-shadow: 8px 12px 22px rgba(0,0,0,.07); padding: 30px 32px 26px; margin: 8px 0 0; }
.soc-pquote-ico { display: block; width: 54px; height: auto; margin: 0 0 16px; }
.soc-pquote p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.6; color: var(--soc-body); margin: 0 0 18px; }
.soc-pquote-by { border-left: 3px solid var(--soc-lblue); padding-left: 12px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; }

/* ============================================================
   CSR (Corporate Social Responsibility) — page-specific
   ============================================================ */

/* ---- Core Tenets: bracket-icon cards ---- */
.soc-tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 8px 0 0; }
.soc-tenet { position: relative; display: flex; align-items: center; justify-content: center; min-height: 132px; }
.soc-tenet img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 214px; height: auto; pointer-events: none; }
.soc-tenet span { position: relative; z-index: 1; max-width: 150px; text-align: center; font-family: 'Noto Sans', sans-serif; font-weight: 400; font-size: 17px; line-height: 1.35; color: #1a1a1a; }
.soc-tenets--gap { margin: 36px 0 30px; }

/* ---- Vision / Mission tint boxes ---- */
.soc-vmbox { background: #daedf6; padding: 28px 32px 30px; height: 100%; }
.soc-vmbox-h { font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 26px; line-height: 1.05; color: var(--soc-blue); margin: 0 0 14px; }
.soc-vmbox p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--soc-body); margin: 0; }

/* ---- Expanding Our Community Impact box ---- */
.soc-impactbox { background: #fff; border: 1px solid #bfe0f0; box-shadow: 9px 9px 0 rgba(0,180,216,.10); padding: 30px 34px 34px; height: 100%; }
.soc-impactbox-h { font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 26px; line-height: 1.1; color: var(--soc-blue); margin: 0 0 20px; }
.soc-csrtgt-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--soc-blue); margin: 0 0 14px; }
.soc-csrtgt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 34px; margin: 0; }
.soc-csrtgt p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: var(--soc-body); margin: 0; }
.soc-csrtgt strong { color: #1a1a1a; }

/* ---- Our CSR Impact: charts + big stats ---- */
.soc-csrimpact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 50px; margin: 8px 0 0; }
.soc-bigstat-num { display: inline-block; font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 48px; line-height: 1; margin: 22px 0 0; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-bigstat-num * { -webkit-text-fill-color: transparent; color: transparent; }
.soc-bigstat-num small { font-size: 27px; font-weight: 800; }

/* CSR: right-floated figure (text wraps around) */
.soc-floatimg { float: right; width: 400px; max-width: 44%; margin: 4px 0 20px 36px; }
.soc-floatimg img { display: block; width: 100%; height: auto; border-radius: 4px; }
.soc-floatimg .img-placeholder { width: 100%; }
.soc-bigstat-label { position: relative; padding-left: 24px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.45; color: var(--soc-body); margin: 10px 0 0; }
.soc-bigstat-label::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--soc-lblue); }

/* ---- CSR: Spend & Impact focus-areas table ---- */
.soc-focustable { width: 100%; border-collapse: collapse; border-top: 3px solid var(--soc-lblue); font-family: 'Noto Sans', sans-serif; }
.soc-focustable thead th { background: var(--soc-lblue); color: #fff; text-align: left; font-size: 14px; font-weight: 700; line-height: 1.3; padding: 14px 16px; vertical-align: top; }
.soc-focustable td { padding: 18px 16px; font-size: 14px; line-height: 1.5; color: var(--soc-body); vertical-align: top; border-bottom: 1px solid #dce7ee; border-left: 1px solid #dce7ee; }
.soc-focustable thead th { border-left: 1px solid rgba(255,255,255,.35); }
.soc-focustable td:first-child, .soc-focustable thead th:first-child { border-left: 0; }
.soc-focustable .soc-ft-area { background: #eef5fa; text-align: center; width: 150px; }
.soc-focustable .soc-ft-area img { display: block; width: 58px; height: 58px; margin: 4px auto 12px; }
.soc-focustable .soc-ft-area span { display: block; font-weight: 700; font-size: 15px; line-height: 1.25; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-focustable .soc-ft-spend { font-weight: 800; font-size: 18px; white-space: nowrap; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-focustable ul { list-style: none; margin: 0; padding: 0; }
.soc-focustable li { position: relative; padding-left: 15px; margin: 0 0 7px; }
.soc-focustable li:last-child { margin-bottom: 0; }
.soc-focustable li::before { content: ""; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; background: var(--soc-purple); }
.soc-ft-sdgs { display: flex; flex-wrap: wrap; gap: 5px; }
.soc-ft-sdgs img { width: 46px; height: 46px; }

/* ---- CSR: Governance Snapshot box ---- */
.soc-snapshot { background: #e6f2f9; padding: 30px 36px 34px; margin: 8px 0 0; }
.soc-snapshot-title { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; color: #1a1a1a; margin: 0 0 24px; }
.soc-snapshot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 60px; }
.soc-snapshot-item .soc-snapshot-h { font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 22px; line-height: 1.1; margin: 0 0 10px; padding: 0; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-snapshot-item p:not(.soc-snapshot-h) { position: relative; font-family: 'Noto Sans', sans-serif; padding-left: 22px; font-size: 14.5px; line-height: 1.45; color: var(--soc-body); margin: 0; }
.soc-snapshot-item p:not(.soc-snapshot-h)::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 3px; background: var(--soc-lblue); }

/* ---- CSR: full-width infographic ---- */
.soc-figc--gov img { width: 100%; max-width: 800px; }

/* ---- blue dash bullet (instead of purple square) ---- */
.soc-bul--bluedash li::before { width: 14px; height: 3px; top: .62em; background: var(--soc-lblue); }

/* ---- CSR: Education photo banner with tab label ---- */
.soc-imgtab { position: relative; margin: 8px 0 0; }
.soc-imgtab img { display: block; width: 100%; height: 420px; object-fit: cover; object-position: top; }
.soc-imgtab-label { position: absolute; left: 0; bottom: 0; background: var(--soc-lblue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; padding: 10px 30px; }
.soc-eduintro { background: #e6f2f9; padding: 30px 36px; margin: 0; }
.soc-eduintro p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.7; color: #1a1a1a; font-weight: 400; margin: 0 0 14px; }
.soc-eduintro p:last-child { margin-bottom: 0; }

/* ---- CSR: full-width photo ---- */
.soc-fullphoto { margin: 8px 0 0; }
.soc-fullphoto img { display: block; width: 100%; height: auto; border-radius: 2px; }
.soc-fullphoto--mid img { max-width: 820px; margin: 0 auto; }
.soc-photo-r { float: right; width: 46%; max-width: 560px; margin: 4px 0 18px 34px; }
.soc-photo-r img { display: block; width: 100%; height: auto; border-radius: 2px; }

/* ---- CSR: stacked vertical bar charts (assessments) ---- */
.soc-asschart { margin: 44px 0 0; }
.soc-vchart-title { display: flex; align-items: center; gap: 14px; min-height: 44px; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; line-height: 1.25; margin: 0 0 14px; padding-left: 12px; border-left: 2px solid var(--soc-lblue); }
.soc-vchart-title img { width: 34px; height: auto; flex: 0 0 auto; }
/* legend inside the graph box (matches source: centered row, no separator) */
.phl-graph .soc-legend { margin: 10px 0 2px; }
.soc-vbar { transform: scaleY(0); transform-box: fill-box; transform-origin: center bottom; transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.phl-chart.in-view .soc-vbar { transform: scaleY(1); }
.soc-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin: 14px 0 0; }
.soc-legend span { display: inline-flex; align-items: center; gap: 6px; font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #333; }
.soc-legend i { width: 12px; height: 12px; display: inline-block; }

/* mainstreamed cards under each assessment */
.soc-asscards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 26px 0 0; }
.soc-asscard-head { position: relative; background: #7b4a9e; color: #fff; text-align: center; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; padding: 12px 14px; overflow: hidden; }
.soc-asscard-head::before { content: ""; position: absolute; left: 0; top: 0; border-style: solid; border-width: 20px 20px 0 0; border-color: #5f3880 transparent transparent transparent; }
.soc-asscard-body { background: #f1f2f4; border: 1px solid #e2e2e2; border-top: 0; padding: 18px 16px 20px; text-align: center; }
.soc-asscard-lvlh { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #666; margin: 0 0 4px; }
.soc-asscard-lvl { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; color: #1a1a1a; display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; }
.soc-asscard-lvl svg { width: 26px; height: 12px; }
.soc-asscard-ms { border-top: 1px dotted #b7b7b7; padding-top: 14px; }
.soc-asscard-ms-l { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #555; margin: 0 0 4px; }
.soc-asscard-ms-n { font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 22px; line-height: 1; color: #1a1a1a; }

/* ---- CSR: education stat grid (pg 15) ---- */
.soc-statgrid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 44px; margin: 8px 0 0; }
.soc-statitem-n { display: inline-block; font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 40px; line-height: 1; margin: 0 0 10px; background: linear-gradient(90deg, #00b4d8 0%, #00729c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.soc-statitem-n * { -webkit-text-fill-color: transparent; color: transparent; }
.soc-statitem-n small { font-size: 0.5em; font-weight: 700; margin-left: 3px; }
.soc-statitem-p { position: relative; font-family: 'Noto Sans', sans-serif; padding-left: 24px; font-size: 14px; line-height: 1.5; color: var(--soc-body); margin: 0; }
.soc-statitem-p::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--soc-lblue); }
.soc-statgrid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.soc-tintbox { background: #e6f2f9; padding: 14px 26px; margin: 6px 0 18px; }
.soc-tintbox .soc-bul { margin: 0; }
.soc-bul--cyan li { color: var(--soc-lblue); font-weight: 700; }

/* ---- CSR: Story of Change case study ---- */
.soc-story { border: 1px solid #bfe0f0; border-radius: 3px; padding: 0 0 30px; overflow: hidden; }
.soc-story-photo img { display: block; width: 100%; height: auto; }
.soc-story-inner { padding: 26px 36px 0; }
.soc-story-label { border-left: 4px solid var(--soc-lblue); padding-left: 14px; margin: 0 0 22px; }
.soc-story-label span { display: block; font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 21px; line-height: 1.1; }
.soc-story-label .l1 { color: var(--soc-blue); }
.soc-story-label .l2 { color: var(--soc-lblue); }
.soc-story-cols { column-count: 1; }
.soc-story h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; margin: 0 0 12px; }
.soc-story p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--soc-body); margin: 0 0 14px; }
.soc-story .soc-bul { margin: 0 0 14px; }
.soc-story .soc-bul li { font-size: 15px; }

/* ---- CSR: intro-box sub-headings (Community Development pillars) ---- */
.soc-eduintro h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 18px 0 4px; }
.soc-eduintro-key { font-weight: 700; color: #1a1a1a; margin: 16px 0 6px; }

/* ---- CSR: Climate Action (Resilience Tree + intro box) ---- */
.soc-climate { display: grid; grid-template-columns: 1.35fr 1fr; align-items: stretch; margin: 8px 0 0; }
.soc-climate-fig { display: flex; align-items: flex-start; justify-content: center; background: #fff; }
.soc-climate-fig img { display: block; width: 100%; height: auto; }
.soc-climate-box { position: relative; background: #dbeef7; padding: 54px 34px 34px; }
.soc-climate-tab { position: absolute; top: 0; left: 0; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 9px 26px; }
.soc-climate-box p { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.65; color: var(--soc-body); margin: 0 0 12px; }
.soc-climate-box .c-lead { font-weight: 400; }
.soc-climate-box .c-focus { font-weight: 700; margin: 18px 0 8px; }
.soc-climate-box h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 14px 0 4px; }

/* ---- CSR: split section (image left, tint box right — climate-action style) ---- */
.soc-splitsec { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; margin: 8px 0 0; }
.soc-splitsec-fig { position: relative; overflow: hidden; min-height: 360px; background: #dfeaf0; }
.soc-splitsec-fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.soc-splitsec-box { position: relative; background: #dbeef7; padding: 54px 34px 34px; }
.soc-splitsec-tab { position: absolute; top: 0; left: 0; background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 9px 26px; }
.soc-splitsec-box p { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.65; color: var(--soc-body); margin: 0 0 12px; }
.soc-splitsec-box p:last-child { margin-bottom: 0; }
.soc-splitsec-box h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 16px 0 4px; }
.soc-splitsec-key { font-weight: 700; color: #1a1a1a; margin: 16px 0 6px; }
.soc-splitsec-box .soc-bul { margin: 8px 0 0; }
.soc-splitsec-box .soc-bul li { font-size: 14.5px; }

/* client-provided assessment chart images */
.soc-assimg { margin: 40px 0 0; }
.soc-assimg img { display: block; width: 100%; max-width: 970px; height: auto; margin: 0 auto; }

/* ===================================================================
   SOCIAL — CUSTOMERS page components (built on the .soc- library)
   =================================================================== */

/* --- Key Highlights: stats-left / app-image-right --- */
.soc-khl-top { display: grid; grid-template-columns: 290px 1fr; gap: 20px 56px; align-items: start; margin: 6px 0 0; }
.soc-khl-stats { display: flex; flex-direction: column; gap: 26px; }
.soc-khl-top .soc-ldpill { align-self: flex-start; }
.soc-khl-appimg img { display: block; width: 100%; max-width: 452px; height: auto; border-radius: 4px; margin-left: auto; }

/* --- Customer Base: stat-left / table-right --- */
.soc-cbase { display: grid; grid-template-columns: 210px 1fr; gap: 44px; align-items: start; margin: 6px 0 0; }
.soc-cbase .soc-dtable td, .soc-cbase .soc-dtable th { font-size: 14px; padding: 10px 14px; }
.soc-cbase .soc-dtable td.l, .soc-cbase .soc-dtable th.l { text-align: left; }

/* --- Understanding Customer Needs: 3-col colour-header cards --- */
.soc-needs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; margin: 8px 0 0; }
.soc-need { border: 1px solid #e0e6e9; border-radius: 4px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.soc-need-ico { text-align: center; padding: 20px 16px 6px; }
.soc-need-ico img { height: 56px; width: auto; display: inline-block; }
.soc-need-h { color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.3; padding: 14px 20px; min-height: 68px; display: flex; align-items: center; }
.soc-need-b { flex: 1; }
.soc-need-b { padding: 18px 22px 24px; }
.soc-need-sub { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a1a; margin: 0 0 6px; }
.soc-need-b > .soc-need-sub:not(:first-child) { margin-top: 16px; }
.soc-need-b p { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--soc-body); margin: 0; }
.soc-need-b .soc-bul li { font-size: 14.5px; }
.soc-need--teal   .soc-need-h { background: #3cb1b6; } .soc-need--teal   .soc-need-b { background: #eaf6f6; }
.soc-need--purple .soc-need-h { background: #975ea7; } .soc-need--purple .soc-need-b { background: #f2ecf7; }

/* --- Focus Areas of Customer Service Strategy: icon-top cards --- */
.soc-csa { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 34px; margin: 10px 0 0; }
.soc-csa-item { display: flex; flex-direction: column; }
.soc-csa-ico { width: 96px; height: 96px; border-radius: 50%; background: #fff; border: 1px solid #d6e6ef; display: flex; align-items: center; justify-content: center; margin: 0 0 16px; }
.soc-csa-ico img { width: 58px; height: 58px; display: block; }
.soc-csa-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--soc-lblue); margin: 0 0 10px; }
.soc-csa-item .soc-bul { margin: 0; }
.soc-csa-item .soc-bul li { font-size: 14px; line-height: 1.55; margin: 0 0 9px; }

/* --- centred figure widths --- */
.soc-figc--tep img    { max-width: 1000px; width: 100%; }
.soc-figc--focus img  { max-width: 1120px; width: 100%; }
.soc-figc--hex img    { max-width: 560px;  width: 100%; }
.soc-figc--safety img { max-width: 880px;  width: 100%; }
.soc-figc--digi img   { max-width: 720px;  width: 100%; }

/* --- Strategic Focus Areas: reuse .soc-tenet arc brackets (csr-badge.svg), 4-up (point 4) --- */
.soc-tenets--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.soc-tenets--4 .soc-tenet span { max-width: 150px; }

/* --- Focus Areas flow dividers + arrows (point 6) --- */
.soc-csa-sec { background: #e8f4f9; }
.soc-csa--flow .soc-csa-item { position: relative; }
.soc-csa--flow .soc-csa-item:not(:nth-child(4n+1))::before { content: ""; position: absolute; left: -17px; top: 4px; bottom: 4px; width: 1px; background: var(--soc-lblue); }
.soc-csa--flow .soc-csa-item:not(:nth-child(4n+1))::after { content: "\276F"; position: absolute; left: -25px; top: 50%; transform: translateY(-50%); color: var(--soc-lblue); font-size: 15px; font-weight: 700; background: #e8f4f9; padding: 5px 1px; line-height: 1; }

/* --- Green Choices cards: dark-blue header + light-blue body (point 8) --- */
.soc-green-cards .soc-tabbox-head { background: var(--soc-blue); padding: 14px 20px; }
.soc-green-cards .soc-tabbox-head::before { display: none; }
.soc-green-cards .soc-tabbox-body { background: #eaf4fb; border-color: #cfe3ef; }

/* --- Digital Transformation: prose + stats left, image right (point 9) --- */
.soc-digi2--v2 { align-items: start; }
.soc-digi2--v2 .soc-digi-left .soc-stats3 { margin-top: 26px; }
.soc-digi2--v2 .soc-figc--digi { margin: 0; }

/* --- Customer Safety: Monitoring card in safety grid (point 13) --- */
.soc-safety-card .soc-bul { margin: 0; }
.soc-safety-card .soc-bul li { font-size: 13.5px; line-height: 1.5; margin: 0 0 8px; }
.soc-safety-card .soc-bul li strong { color: #1a1a1a; }

/* --- Multi-Pronged Strategy: 4 cyan-heading bullet columns --- */
.soc-strat4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 34px; margin: 10px 0 0; }
.soc-strat4 > div { border-bottom: 1px solid var(--soc-lblue); padding-bottom: 20px; }
.soc-strat4 .soc-csa-h { margin-top: 0; }
.soc-strat4 .soc-bul li { font-size: 15px; }

/* --- Blue-header tinted section box (Financial Support / DSM) --- */
.soc-boxsec { margin: 8px 0 0; }
.soc-boxsec-h { background: var(--soc-blue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.35; padding: 16px 26px; }
.soc-boxsec-b { background: #e9f4fa; padding: 30px 32px 34px; }
.soc-boxsec-b > .soc-boxsec-intro { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15.5px; line-height: 1.65; color: #1a1a1a; margin: 0 0 24px; }
.soc-boxsec-b > .soc-body-p { margin-bottom: 16px; }
.soc-boxsec-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; align-items: start; }
.soc-boxsec-colh { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--soc-lblue); margin: 0 0 12px; }
.soc-boxsec-cols .soc-bul li { font-size: 14px; line-height: 1.55; }
.soc-boxsec-cols .soc-bul li strong { color: #1a1a1a; }

/* --- Enabling Green Choices: teal cards + branded sidebar --- */
.soc-green { display: grid; grid-template-columns: 1.7fr 1fr; gap: 34px; align-items: start; margin: 10px 0 0; }
.soc-green-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 26px; }
.soc-green-cards .soc-tabbox { margin: 0; }
.soc-tb-p { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--soc-body); margin: 0 0 14px; }
.soc-tb-stat { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.5; color: var(--soc-body); margin: 0; }
.soc-tb-stat strong { color: #1a1a1a; font-weight: 700; }
.soc-green-side { display: flex; flex-direction: column; gap: 20px; }
.soc-green-item { border: 1px solid var(--soc-lblue); border-radius: 2px; text-align: center; padding: 18px 16px; }
.soc-green-item img { display: block; height: 34px; width: auto; margin: 0 auto 12px; }
.soc-green-item p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.45; color: var(--soc-body); margin: 0; }

/* --- Democratising Rooftop Solar (PMSGY box + photo) --- */
.soc-rooftop { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; margin: 8px 0 0; }
.soc-rooftop-box { border: 1px solid #c9b6da; box-shadow: 8px 10px 0 rgba(151,94,167,.08); border-radius: 2px; padding: 28px 30px; }
.soc-rooftop-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; color: #1a1a1a; margin: 0 0 4px; }
.soc-rooftop-sub { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-purple); margin: 0 0 16px; }
.soc-rooftop-intro { font-family: 'Noto Sans', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--soc-purple); margin: 0 0 22px; }
.soc-rooftop-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.soc-rooftop-stats .soc-khl-num { font-size: 34px; }
.soc-rooftop-img { border-radius: 2px; overflow: hidden; }
.soc-rooftop-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Digital Transformation (prose + cards image) --- */
.soc-digi2 { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; margin: 6px 0 0; }

/* --- Customer Safety: specific-measure cards --- */
.soc-safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 30px; margin: 8px 0 0; }
.soc-safety-card { border: 1px solid #d3e3ec; border-bottom: 2px solid var(--soc-lblue); border-radius: 2px; padding: 20px 22px; }
.soc-safety-card h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--soc-blue); margin: 0 0 10px; }
.soc-safety-card p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--soc-body); margin: 0; }

/* --- Read-further link (external-link icon + text) --- */
.soc-readfurther { display: inline-flex; align-items: center; gap: 10px; font-family: 'Noto Sans', sans-serif; font-size: 14px; color: var(--soc-blue); text-decoration: none; margin: 22px 0 0; }
.soc-readfurther svg { flex: 0 0 auto; }
.soc-readfurther .rf-t { display: block; }
.soc-readfurther .rf-t small { display: block; font-weight: 400; color: #666; font-size: 12.5px; }
.soc-readfurther .rf-t b { font-weight: 700; }

/* ===================================================================
   SOCIAL — CUSTOMERS pages 11-15 components
   =================================================================== */

/* --- Case-study box (School Safety Awareness Programme): L-bracket cyan rule (left+bottom) + blue title bar --- */
.soc-casebox { position: relative; border-left: 1.5px solid var(--soc-lblue); border-bottom: 1.5px solid var(--soc-lblue); border-radius: 0; padding: 6px 20px 42px 42px; margin: 8px 0 0; }
.soc-casebox-h { position: relative; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.0; text-transform: uppercase; letter-spacing: .4px; margin: 0 0 24px; padding-left: 18px; }
.soc-casebox-h::before { content: ""; position: absolute; left: 0; top: 3px; bottom: 3px; width: 5px; background: var(--soc-blue); }
.soc-casebox-h .l1 { display: block; color: var(--soc-blue); }
.soc-casebox-h .l2 { display: block; color: var(--soc-lblue); }
.soc-casebox-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 44px; align-items: start; }
.soc-casebox-cols .soc-subh:first-child { margin-top: 0; }
.soc-casebox-cols .soc-bul { margin-top: 6px; }

/* --- CASE / STUDY stacked tag --- */
.soc-casestudy-tag { position: relative; padding-left: 16px; margin: 0 0 16px; font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 22px; line-height: 1.05; }
.soc-casestudy-tag::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 5px; background: var(--soc-purple); }
.soc-casestudy-tag .c { display: block; color: var(--soc-blue); }
.soc-casestudy-tag .s { display: block; color: var(--soc-purple); }

/* --- CRM 3-col: body copy 16px like the rest --- */
.soc-crm3 .soc-bul li { font-size: 16px; line-height: 1.7; }
.soc-crm3 .soc-body-p { font-size: 16px; }

/* --- NPS table: white header (point 7) --- */
.soc-npstab thead th { background: #fff; }
.soc-npstab th.cur { background: #fff; color: var(--soc-blue); }

/* --- centred figures --- */
.soc-figc--nps img    { max-width: 1060px; width: 100%; }
.soc-figc--listen img { max-width: 1140px; width: 100%; }

/* --- NPS callout (full-width, left-to-right) + Feedback Loop below --- */
.soc-hlrow { display: block; margin: 6px 0 0; }
.soc-hlrow .soc-hl-callout { margin: 0 0 26px; font-size: clamp(17px, 1.5vw, 20px); }

/* --- Customer-First Culture: text + photo rows --- */
.soc-cf { display: flex; flex-direction: column; gap: 40px; margin: 10px 0 0; }
.soc-cfrow { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.soc-cfrow-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--soc-lblue); margin: 0 0 12px; }
.soc-cfrow-img img { width: 100%; height: auto; display: block; border-radius: 2px; }

/* --- Customer-outreach initiative boxes (Nishkarsh / Amplify / Sampark / Samwaad) --- */
.soc-initiatives { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; margin: 8px 0 0; }
.soc-initbox { background: #e8f4fb; border-radius: 16px; padding: 30px 32px 32px; height: 100%; }
.soc-initbox-logo { margin: 0 0 18px; }
.soc-initbox-logo img { height: 46px; width: auto; display: block; }
/* boxes 1 & 2 have tall-aspect logos that read small — size them up to match box 3 */
.soc-initbox:nth-child(1) .soc-initbox-logo img,
.soc-initbox:nth-child(2) .soc-initbox-logo img { height: 62px; }
.soc-initbox-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.3; color: var(--soc-blue); margin: 0 0 14px; }
.soc-initbox .soc-subh:first-of-type { margin-top: 0; }
.soc-initbox .soc-body-p { font-size: 15px; }
.soc-initbox-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; margin: 20px 0 0; }
.soc-initbox-stats .soc-khl-num { font-size: 34px; }

/* ===================================================================
   SOCIAL — CUSTOMERS pages 16-18 components
   =================================================================== */

/* --- Money Saving Tips cards --- */
.soc-tips { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 44px; margin: 10px 0 0; }
.soc-tipcard-img img { width: 100%; height: auto; display: block; border-radius: 3px; }
.soc-tipcard-head { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin: 16px 0 6px; }
.soc-tipcard-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.3; color: #1a1a1a; margin: 0; }
.soc-tipcard-p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.6; color: var(--soc-body); margin: 0; }
.soc-tipcard .soc-readfurther { margin: 0; font-size: 13px; white-space: nowrap; flex: 0 0 auto; }
.soc-tipcard .soc-readfurther .rf-t small { display: none; }

/* --- Customer-First Culture in Action (3-circle svg) --- */
.soc-figc--culture img { max-width: 1080px; width: 100%; }

/* --- Watts of Warmth full-width image + QR codes --- */
.soc-wattsimg { width: 100%; height: 500px; overflow: hidden; border-radius: 2px; }
.soc-wattsimg img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; display: block; }
.soc-qr { display: flex; gap: 26px; margin: 24px 0 0; }
.soc-qr img { width: 138px; height: 138px; display: block; }

/* --- 2-column bullet groups (Grievance / What It Delivers) --- */
.soc-gr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 44px; align-items: start; margin: 6px 0 0; }
.soc-bul--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }

/* --- ICRS 4-step process --- */
.soc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 26px; margin: 14px 0 0; align-items: stretch; }
.soc-step { display: flex; flex-direction: column; }
.soc-step-head { position: relative; background: var(--soc-purple); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .6px; padding: 13px 20px; }
.soc-step:not(:last-child) .soc-step-head::after { content: "\276F"; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); color: var(--soc-purple); font-size: 15px; font-weight: 700; }
.soc-step-body { flex: 1; background: #eaf4fb; padding: 18px 20px 22px; }
.soc-step-body .soc-bul { margin: 0; }
.soc-step-body .soc-bul li { font-size: 14px; line-height: 1.5; margin: 0 0 10px; }

/* ===================================================================
   SOCIAL — RESPONSIBLE SOURCING components (on the .soc- library)
   =================================================================== */
/* Key Pillars graphic (client SVG with baked text) + 10% stat aside */
.soc-figc--pillars img { max-width: 700px; width: 100%; }
.soc-pillars-row { display: grid; grid-template-columns: 1fr 210px; gap: 44px; align-items: start; margin: 8px 0 0; }
.soc-pillars-row .soc-figc { margin: 0; }

/* Governance icons sit directly on the band (no white circle) */
.soc-csa--plain .soc-csa-ico { background: none; border: 0; width: auto; height: auto; margin: 0 0 14px; justify-content: flex-start; }
.soc-csa--plain .soc-csa-ico img { width: auto; height: 62px; }

/* Responsible Sourcing pages 6-10 — client infographic figure sizes */
.soc-figc--sigcrit img   { max-width: 940px;  width: 100%; }
.soc-figc--screening img { max-width: 880px;  width: 100%; }
.soc-figc--riskmap img   { max-width: 1040px; width: 100%; }
.soc-figc--vendor img    { max-width: 540px;  width: 100%; }
.soc-figc--weightage img { max-width: 340px;  width: 100%; }
.soc-riskmap-stack { display: flex; flex-direction: column; gap: 16px; margin: 10px 0 0; }

/* New Vendor ESG Screening: callout + photo */
.soc-vendorrow { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin: 6px 0 0; }
.soc-vendorrow .soc-hl-callout { margin: 0; font-size: clamp(17px, 1.5vw, 20px); }

/* New Vendor Screening Criteria: ESG bullets / Techno icons / Weightage */
.soc-nvsc { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 0; align-items: stretch; margin: 8px 0 0; }
.soc-nvsc > div { padding: 0 34px; }
.soc-nvsc > div:first-child { padding-left: 0; }
.soc-nvsc > div:not(:first-child) { border-left: 1px solid var(--soc-lblue); }
.soc-nvsc-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 0 0 14px; }
.soc-nvsc .soc-bul li { font-size: 15px; }
.soc-nvsc .soc-bul li strong { color: #1a1a1a; }
.soc-techno { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 18px; margin: 4px 0 0; }
.soc-techno-item { text-align: center; }
.soc-techno-item img { height: 56px; width: auto; display: inline-block; margin: 0 0 10px; }
.soc-techno-item p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.4; color: var(--soc-body); margin: 0; }

/* Responsible Sourcing pages 11-15 */
.soc-figc--framework img { max-width: 720px; width: 100%; }
.soc-figc--maturity img  { max-width: 820px; width: 100%; }
.soc-figc--engprofile img { max-width: 860px; width: 100%; }

/* Descriptive assessment table (left-aligned) */
.soc-dtable--desc td, .soc-dtable--desc th { text-align: left; vertical-align: top; font-size: 13.5px; padding: 12px 16px; }
.soc-dtable--desc thead th { background: #eef5f9; }
.soc-dtable--desc .sub { font-weight: 700; color: #1a1a1a; }

/* Supply Chain Resilience initiatives — 3 columns of sub-sections */
.soc-scr3 { display: grid; grid-template-columns: 1fr; gap: 8px; align-items: start; margin: 8px 0 0; }
.soc-scr3 .soc-cyanh:first-child { margin-top: 0; }
.soc-scr3 .soc-bul { margin-bottom: 4px; }

/* Type-B EPC partnerships box (cyan-bordered, gradient text) */
.soc-tpbox { border: 1px solid var(--soc-lblue); border-radius: 6px; padding: 26px 30px; box-shadow: 6px 8px 0 rgba(0,180,216,.08); }
.soc-tpbox-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.3; margin: 0 0 14px; color: var(--soc-blue); }
.soc-tpbox p { font-family: 'Noto Sans', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.6; margin: 0; color: var(--soc-lblue); }
.soc-enghl-h { position: relative; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--soc-lblue); margin: 0 0 16px; padding-left: 24px; }
.soc-enghl-h::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--soc-lblue); }
.soc-enghl-p { font-family: 'Noto Sans', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.65; margin: 0 0 16px; background: linear-gradient(90deg,#00b4d8,#00729c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* KPI incentive-measurement table (icon headers, zebra rows) */
.soc-kpitable { width: 100%; border-collapse: collapse; border-top: 0; font-family: 'Noto Sans', sans-serif; }
.soc-kpitable thead th { text-align: left; vertical-align: bottom; background: none; border: 0; border-bottom: 2px solid var(--soc-lblue); color: var(--soc-lblue); font-weight: 700; font-size: 15px; padding: 0 16px 12px; }
.soc-kpi-ic { margin: 0 0 14px; }
.soc-kpi-ic img { height: 46px; width: auto; display: block; }
.soc-kpitable td { text-align: left; vertical-align: top; font-size: 13.5px; line-height: 1.5; color: #1a1a1a; padding: 14px 16px; border: 0; }
.soc-kpitable tbody tr:nth-child(odd) td { background: #eef6fb; }

/* Capacity Development numbered cards */
.soc-capdev { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; margin: 10px 0 0; }
.soc-capdev-card { background: #eaf4fb; border-radius: 12px; padding: 22px 26px 24px; height: 100%; }
.soc-capdev-head { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; }
.soc-capdev-num { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--soc-lblue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 19px; display: flex; align-items: center; justify-content: center; }
.soc-capdev-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.25; color: #1a1a1a; margin: 0; }

/* Planned Priorities numbered list */
.soc-priorities { display: flex; flex-direction: column; gap: 20px; margin: 6px 0 0; }
.soc-priority { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; border-bottom: 1px solid var(--soc-lblue); padding-bottom: 18px; }
.soc-priority-num { width: 44px; height: 44px; border-radius: 50%; background: var(--soc-lblue); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.soc-priority p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.6; color: var(--soc-body); margin: 0; }

/* On-site assessment figure */
.soc-figc--onsite img { max-width: 720px; width: 100%; }

/* Risk Mitigation Approach box */
.soc-rma { background: #eaf4fb; border-radius: 4px; padding: 28px 32px; margin: 28px 0 0; }
.soc-rma-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 44px; }
.soc-rma-grid h4 { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; color: #6b7683; margin: 0 0 10px; }
.soc-rma-grid .soc-bul li { font-size: 14px; }

/* ===================================================================
   BOARD OF DIRECTORS  (.bod-)
   =================================================================== */
.bod-page { --bod-cyan: #1fb0e6; --bod-orange: #c15a24; --bod-body: #1a1a1a; --ail-body: #1a1a1a; }
.bod-wrap { padding-top: 118px; }
.bod-maintitle { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: clamp(26px, 3vw, 32px); color: #00729c; margin: 0 0 8px; }

/* one director profile */
.bod-dir { padding: 34px 0 12px; }
.bod-dir-top { position: relative; display: grid; grid-template-columns: 250px 1fr 1fr; gap: 40px; align-items: start; padding-top: 18px; }
.bod-dir-top::before { content: ""; position: absolute; left: 290px; right: 0; top: 0; height: 1px; background: var(--bod-orange); }

/* photo + name card */
.bod-photo img { display: block; width: 100%; height: auto; border-radius: 2px; background: #eef2f5; }
.bod-namecard { position: relative; background: #fdf3ea; border-radius: 0 0 10px 10px; padding: 16px 18px 22px; box-shadow: 7px 9px 0 rgba(193,90,36,.09); }
.bod-name { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 18px; color: #1a1a1a; margin: 0 0 12px; }
.bod-age { display: inline-block; background: var(--bod-orange); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .3px; padding: 5px 14px; border-radius: 3px; }
.bod-nat { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: #1a1a1a; margin: 12px 0 0; }

/* headings + fields */
.bod-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--bod-cyan); margin: 0 0 12px; }
.bod-col > .bod-h:not(:first-child), .bod-h + .bod-h { margin-top: 22px; }
.bod-p { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--bod-body); margin: 0 0 12px; }
.bod-field { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.55; color: var(--bod-body); margin: 0 0 13px; }
.bod-field strong { color: #1a1a1a; font-weight: 700; }
.bod-col > .bod-field + .bod-h { margin-top: 22px; }

/* directorships table */
.bod-tablewrap { margin-top: 26px; overflow-x: auto; }
.bod-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; font-size: 13.5px; }
.bod-table thead th { background: linear-gradient(90deg, #a4481b 0%, #d0813f 100%); color: #fff; font-weight: 700; text-align: left; padding: 12px 14px; vertical-align: top; }
.bod-table { border-bottom: 2px solid var(--bod-orange); }
.bod-table td { padding: 11px 14px; border-bottom: 1px solid #ecdccf; color: #1a1a1a; vertical-align: top; line-height: 1.4; }
.bod-table td[rowspan] { vertical-align: middle; }
.bod-table td.l { text-align: left; }
.bod-table .cat td { background: #fbf0e6; font-weight: 700; color: #1a1a1a; }

/* regulatory disclosures */
.bod-disc { margin-top: 30px; }
.bod-disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 44px; align-items: start; margin-top: 4px; }
.bod-disc-grid .bod-field { font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.bod-disc-grid .bod-h { font-size: 15px; margin: 6px 0 12px; }
.bod-disc-grid > div > .bod-h:first-child { margin-top: 0; }

/* ============================================================
   GOVERNANCE  (namespace "gov-")  — orange-forward palette
   Hero layout follows the Social (CSR) pattern; colours from
   governance.pdf (Adani orange #f47721 / deep #b35223 / peach #feeddf)
   ============================================================ */
.gov-page {
    background: #ffffff;
    --gov-orange: #f47721;   /* signature orange — H1, tags, dashes */
    --gov-deep:   #b35223;   /* deep orange-brown — quote band */
    --gov-peach:  #feeddf;   /* hero background */
    --gov-body:   #1a1a1a;
    --ail-body:   #1a1a1a;   /* prev/next labels */
    --soc-body:   #1a1a1a;   /* reused .soc-* linkage classes */
}

/* Hero — full banner, art bottom-right (CSR layout, governance colours) */
.gov-hero { position: relative; background: var(--gov-peach); min-height: 78vh; padding: 150px 0 70px; display: flex; align-items: center; overflow: hidden; }
.gov-hero-art { position: absolute; right: -2%; bottom: 0; width: 58%; max-width: 1120px; height: auto; opacity: .95; pointer-events: none; }
.gov-hero .container { position: relative; z-index: 1; }
.gov-eyebrow { display: block; font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .3px; color: #4d4d4f; margin: 0 0 22px; }
.gov-title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1.08; color: var(--gov-orange); margin: 0; max-width: 16ch; }

/* Sections */
.gov-section { padding: 46px 0; }
.gov-section--tint { background: #fbf3ec; }
.gov-section > .container > :first-child { margin-top: 0; }
.gov-lead-p { font-family: 'Noto Sans', sans-serif; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--gov-body); margin: 0; }

/* Key Highlights */
.gov-tag { display: inline-block; background: var(--gov-orange); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 9px 22px; border-radius: 2px; margin: 0 0 34px; }
.gov-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; align-items: start; }
.gov-hl-num { display: inline-block; font-family: 'Noto Sans', sans-serif; font-size: clamp(32px, 3.2vw, 42px); font-weight: 800; line-height: 1; margin: 0 0 10px; background: linear-gradient(180deg, #f9a970 0%, #f47721 50%, #d4692a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gov-hl-num small { font-size: .48em; font-weight: 800; }
.gov-hl-desc { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.5; color: var(--gov-body); padding-left: 24px; max-width: 300px; }
.gov-hl-desc::before { content: ""; position: absolute; left: 0; top: .55em; width: 15px; height: 3px; background: var(--gov-orange); }

/* Linkages sub-headings (reuses .soc-linkages / .soc-tags / .soc-code / .soc-caps / .soc-sdgs) */
.gov-link-block + .gov-link-block { margin-top: 34px; }
.gov-link-h { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0 0 18px; }

/* Quote callout — no background, left-aligned, full width, orange (Playfair) */
.gov-quote-sec { background: none; padding: 20px 0 56px; }
.gov-quote { position: relative; max-width: none; margin: 0; }
.gov-quote-ico { display: block; width: 58px; height: auto; margin: 0 0 22px; }
.gov-quote p { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; line-height: 1.36; color: var(--gov-orange); margin: 0; }

/* Gradient text-callout highlight (matches .env-grad-stat, orange gradient) */
.gov-grad-stat { position: relative; font-family: 'Noto Sans', sans-serif; font-size: clamp(19px, 1.9vw, 24px); font-weight: 700; line-height: 1.45; margin: 0; padding-left: 30px; background: linear-gradient(90deg, #f9a970 0%, #f47721 45%, #d4692a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gov-grad-stat::before { content: ""; position: absolute; left: 0; top: .55em; width: 18px; height: 4px; border-radius: 2px; background: #f47721; -webkit-text-fill-color: initial; }

/* --- Section headings --- */
.gov-h-black { font-size: 16px !important; font-weight: 700; color: #1a1a1a; margin: 0 0 18px; }   /* h2 (Noto), black (Body-Head-02), 16px */
.gov-h-blue { font-family: 'Noto Sans', sans-serif; font-weight: 700; color: #00729c; margin: 0 0 20px; }
.gov-h-cyan { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: #00aeef; margin: 0 0 18px; }
/* subtitle (cyan) hugs its section title (blue) */
.gov-h-blue + .gov-h-cyan { margin-top: -12px; }
.gov-h-blue + .gov-tag { margin-top: 18px; }

/* --- Practices-in-Action (peach box, 3-col bullets) --- */
.gov-actions { background: var(--gov-peach); border-radius: 8px; padding: 34px 36px 16px; }
.gov-actions ul { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: 46px; }
.gov-actions li { break-inside: avoid; position: relative; padding-left: 20px; margin: 0 0 20px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #1a1a1a; }
.gov-actions li::before { content: ""; position: absolute; left: 0; top: .45em; width: 7px; height: 7px; background: #975ea7; }
.gov-actions a { color: #8e278f; font-weight: 600; }

/* --- Current vs Target table --- */
.gov-tablewrap { overflow-x: auto; margin-top: 6px; }
.gov-table { width: 100%; border-collapse: collapse; font-family: 'Noto Sans', sans-serif; border-bottom: 2px solid var(--gov-orange); }
.gov-table thead th { background: var(--gov-orange); color: #fff; font-size: 14px; font-weight: 700; text-align: left; padding: 12px 16px; white-space: nowrap; }
.gov-table td { padding: 12px 16px; font-size: 14px; line-height: 1.5; color: #1a1a1a; vertical-align: top; background: #ffffff; border-bottom: 1px solid #f3d9c5; }
.gov-table td:first-child { font-weight: 700; white-space: nowrap; background: var(--gov-peach); }

/* --- Strategic Focus Areas (bracketed items) --- */
.gov-focus { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 6px; }
.gov-focus-item { position: relative; display: flex; align-items: center; justify-content: center; min-height: 118px; }
.gov-focus-brk { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 185px; height: auto; pointer-events: none; }
.gov-focus-item p { position: relative; z-index: 1; font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.35; color: #1a1a1a; margin: 0; text-align: center; max-width: 128px; }

/* --- Governance Snapshot --- */
.gov-snap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; margin-top: 6px; }
.gov-snap-label { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--gov-orange); margin: 0 0 10px; padding-bottom: 10px; border-bottom: 1px solid #dcdcdc; }
.gov-snap-val { font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.5; color: #1a1a1a; margin: 0; }

/* --- Framework read-more + org chart --- */
.gov-readmore { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #4d4d4f; margin: 16px 0 0; }
.gov-readmore a { color: inherit; }
.gov-readmore .oplus { color: var(--gov-orange); font-weight: 700; margin-right: 6px; }
.gov-orgchart { margin-top: 30px; }
.gov-orgchart img { display: block; width: 100%; max-width: 1100px; height: auto; margin: 0 auto; }

/* --- Board composition charts (pages 5-6) --- */
.gov-charts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; align-items: start; margin-top: 6px; }
.gov-chart .gov-tag { margin-bottom: 22px; }
.gov-chart-img { display: block; width: 100%; max-width: 272px; height: auto; }
.gov-highlights--4 { grid-template-columns: repeat(4, 1fr); }
.gov-note { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #4d4d4f; margin: 16px 0 0; }
.gov-footnote { font-family: 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.5; color: #4d4d4f; margin: 22px 0 0; }
.gov-diagram { margin-top: 6px; }
.gov-diagram img { display: block; width: 100%; max-width: 620px; height: auto; margin: 0 auto; }
.gov-body-p { font-family: 'Noto Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--gov-body); margin: 0 0 18px; }
.gov-body-p:last-child { margin-bottom: 0; }

/* House rule: consistent 34px gap before ANY heading that follows flow content in the same section */
:is(.gov-body-p, .gov-footnote, .gov-readmore, .gov-grad-stat, .gov-callout, .gov-fig, .gov-bullets, .gov-photo, .gov-highlights, .gov-committees, .gov-charts) + :is(.gov-h-blue, .gov-h-black, .gov-h-cyan, .gov-subh-grey) { margin-top: 34px; }
/* ...and before a highlight callout that follows flow content */
:is(.gov-body-p, .gov-footnote, .gov-readmore, .gov-fig, .gov-bullets, .gov-highlights, .gov-committees, .gov-photo) + :is(.gov-grad-stat, .gov-callout) { margin-top: 34px; }

/* --- Two-up highlight callouts (black label + orange dash + orange gradient body) --- */
.gov-callouts { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 8px; }
.gov-callout-h { position: relative; font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; margin: 0 0 12px; padding-left: 30px; background: linear-gradient(90deg, #f9a970 0%, #f47721 45%, #d4692a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gov-callout-h::before { content: ""; position: absolute; left: 0; top: .55em; width: 18px; height: 4px; border-radius: 2px; background: var(--gov-orange); -webkit-text-fill-color: initial; }
.gov-callout-p { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.55; margin: 0; padding-left: 30px; background: linear-gradient(90deg, #f9a970 0%, #f47721 45%, #d4692a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* --- Grey subheading + bullet list --- */
.gov-subh-grey { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #6d6e71; margin: 0 0 14px; }
.gov-bullets { list-style: none; margin: 0 0 16px; padding: 0; }
.gov-bullets li { position: relative; padding-left: 20px; margin: 0 0 12px; font-family: 'Noto Sans', sans-serif; font-size: 15px; line-height: 1.6; color: #1a1a1a; }
.gov-bullets li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; background: #975ea7; }

/* --- Board Committee Composition Snapshot --- */
.gov-committees-title { text-align: center; }
.gov-committees { border: 1px solid #e4e7ea; border-radius: 4px; padding: 0 30px 34px; margin-top: 40px; }
.gov-committees-tab { display: block; width: max-content; max-width: 90%; margin: -22px auto 30px; background: linear-gradient(90deg, #f47721 0%, #d4692a 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; text-align: center; padding: 12px 44px; border-radius: 2px; }
.gov-committees-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.gov-committees-col { padding: 0 34px; }
.gov-committees-col + .gov-committees-col { border-left: 1px solid #e4e7ea; }
.gov-committees-colh { position: relative; background: var(--gov-peach); color: #1a1a1a; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; text-align: center; padding: 10px; border-radius: 2px; margin: 0 0 28px; }
.gov-committees-colh::before { content: ""; position: absolute; left: 50%; top: -17px; transform: translateX(-50%); width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-top: 13px solid #d4692a; }
.gov-committees-list { display: flex; flex-direction: column; gap: 28px; }
.gov-comm-stat { text-align: center; }
.gov-comm-num { display: inline-block; font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 800; line-height: 1; margin: 0; background: linear-gradient(180deg, #f9a970 0%, #d4692a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gov-comm-dash { display: block; width: 22px; height: 3px; background: var(--gov-orange); margin: 9px auto 10px; }
.gov-comm-lbl { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.4; color: #1a1a1a; margin: 0; }
.gov-subcomm-h { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14px; color: #1a1a1a; text-align: center; margin: 8px 0 22px; }
.gov-subcomm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gov-committees-note { font-family: 'Noto Sans', sans-serif; font-size: 13px; color: #4d4d4f; text-align: center; margin: 28px 0 0; }
.gov-committees-note b { color: var(--gov-orange); font-weight: 700; }

/* --- Full-width centred figure (baked-in-text SVGs) --- */
.gov-fig { margin: 10px 0 34px; }
.gov-fig img { display: block; width: 100%; max-width: 1100px; height: auto; margin: 0 auto; }
.gov-fig--sm img { max-width: 680px; }
.gov-fig--xs img { max-width: 500px; }

.gov-bullets--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; align-items: start; }

/* --- Full-width photo --- */
.gov-photo { margin: 34px 0 0; }
.gov-photo img { display: block; width: 100%; max-width: 1296px; height: auto; margin: 0 auto; border-radius: 4px; }

/* --- Our Policy Advocacy Approach (bordered box, 2x2 numbered quadrants) --- */
.gov-approach { border: 1px solid #e4e7ea; border-radius: 4px; padding: 0 0 6px; margin-top: 40px; }
.gov-approach-tab { display: block; width: max-content; max-width: 90%; margin: -22px auto 20px; background: var(--gov-peach); color: #1a1a1a; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; text-align: center; padding: 12px 44px; border-radius: 2px; box-shadow: 0 2px 10px rgba(180,83,35,.12); }
.gov-approach-grid { display: grid; grid-template-columns: 1fr 1fr; }
.gov-approach-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 26px 34px; }
.gov-approach-item:nth-child(1), .gov-approach-item:nth-child(3) { border-right: 1px solid #e4e7ea; }
.gov-approach-item:nth-child(1), .gov-approach-item:nth-child(2) { border-bottom: 1px solid #e4e7ea; }
.gov-approach-num { display: inline-block; font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--gov-orange); line-height: 1; padding: 3px 10px 9px 11px; border-left: 2px solid var(--gov-orange); border-bottom: 2px solid var(--gov-orange); }
.gov-approach-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #b45323; margin: 4px 0 10px; }
.gov-approach-body p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: #1a1a1a; margin: 0 0 10px; }
.gov-approach-body .gov-bullets { margin: 0; }
.gov-approach-body .gov-bullets li { font-size: 14px; line-height: 1.55; margin: 0 0 10px; }
.gov-approach-body .gov-bullets li:last-child { margin-bottom: 0; }

/* --- Policy Influence Areas (Focus Area -> Description) --- */
.gov-influence { margin-top: 8px; }
.gov-influence-head { display: grid; grid-template-columns: 1fr 44px 1.4fr; gap: 16px; margin-bottom: 16px; }
.gov-influence-head .ic { display: block; width: 40px; height: 40px; margin: 0 0 12px; }
.gov-influence-head .lbl { display: block; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a1a; padding-bottom: 12px; border-bottom: 1px solid #d9dde3; }
.gov-influence-row { display: grid; grid-template-columns: 1fr 44px 1.4fr; gap: 16px; align-items: center; margin-bottom: 14px; }
.gov-influence-fa { background: #c15a24; color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.35; padding: 18px 22px; border-radius: 6px; }
.gov-influence-arrow { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 13px solid var(--gov-orange); margin: 0 auto; }
.gov-influence-desc { background: var(--gov-peach); color: #1a1a1a; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; padding: 18px 22px; border-radius: 6px; }

/* Prominent orange chapter heading (e.g. Cybersecurity and Data Privacy) */
.gov-h-orange { font-size: 24px !important; font-family: 'Noto Sans', sans-serif; font-weight: 800; color: var(--gov-orange); margin: 0 0 4px; }
.gov-h-orange + .gov-body-p { margin-top: 16px; }

/* --- Cybersecurity governance framework diagram --- */
.gov-cyber { margin-top: 30px; }
.gov-cyber-tab { display: flex; align-items: center; justify-content: center; gap: 12px; width: max-content; max-width: 92%; margin: 0 auto; background: linear-gradient(90deg, #f47721 0%, #d4692a 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .4px; padding: 14px 40px; border-radius: 6px; position: relative; z-index: 1; }
.gov-cyber-tab img { width: 26px; height: 26px; }
.gov-cyber-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.gov-cyber-box { background: var(--gov-peach); border-radius: 8px; padding: 24px 26px; }
.gov-cyber-box--white { background: #fff; border: 1px solid #f2ded0; }
.gov-cyber-box .gov-subh-grey { margin: 0 0 12px; }
.gov-cyber-box > p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #1a1a1a; margin: 0; }
.gov-cyber-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 20px; }
.gov-cyber-3col p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; margin: 0; border-left: 1px solid #e6c9b3; padding-left: 14px; }
.gov-cyber-3col p:first-child { border-left: 0; padding-left: 0; }
.gov-cyber-down { width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-top: 16px solid #d4692a; margin: 18px auto; }
.gov-cyber-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.gov-cyber-col { display: flex; flex-direction: column; background: var(--gov-peach); border-radius: 8px; padding: 0 20px 20px; }
.gov-cyber-col .gov-cyber-box--white:last-child { flex: 1 1 auto; }
.gov-cyber-subtab { display: block; width: max-content; margin: 0 auto; transform: translateY(-14px); background: linear-gradient(90deg, #f47721 0%, #d4692a 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 14px; padding: 9px 26px; border-radius: 5px; }
.gov-cyber-col .gov-cyber-box--white { margin-bottom: 16px; }
.gov-cyber-col .gov-cyber-box--white:last-child { margin-bottom: 0; }
.gov-cyber-box .stmt { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.55; color: #1a1a1a; margin: 0; padding: 14px 0; border-top: 1px solid #ecdccf; }
.gov-cyber-box .gov-subh-grey + .stmt { border-top: 0; padding-top: 0; }

/* --- Peach-header panels (page 23) --- */
.gov-panels2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.gov-panel { background: #fff; border: 1px solid #f2ded0; border-radius: 8px; box-shadow: 6px 8px 0 rgba(193,90,36,.05); padding: 0 0 10px; }
.gov-panel-full { grid-column: 1 / -1; }
.gov-panel-h { display: block; background: #fbe4d5; color: #c15a24; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 6px; margin: 10px 10px 4px; }
.gov-panel-body { padding: 16px 24px 6px; }
.gov-panel-body > p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.6; color: #1a1a1a; margin: 0 0 14px; }
.gov-panel-body .gov-bullets li { font-size: 14px; }

/* --- Numbered cards (page 24 core implementation) --- */
.gov-numcards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 22px; }
.gov-numcard { background: var(--gov-peach); border-radius: 8px; padding: 42px 18px 22px; position: relative; }
.gov-numcard-n { position: absolute; top: -16px; left: 18px; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, #f7a24f 0%, #e0672a 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.gov-numcard p { font-family: 'Noto Sans', sans-serif; font-size: 13.5px; line-height: 1.5; color: #1a1a1a; margin: 0; }

/* --- Info cards (orange title + description + underline) --- */
.gov-band { background: var(--gov-peach); border-radius: 8px; padding: 34px 34px 10px; }
.gov-icards-box { border: 1px solid #e4e7ea; border-radius: 8px; padding: 34px; }
.gov-icards { display: grid; gap: 28px 30px; }
.gov-icards--4 { grid-template-columns: repeat(4, 1fr); }
.gov-icards--3 { grid-template-columns: repeat(3, 1fr); }
.gov-icard { padding-bottom: 18px; border-bottom: 1px solid #e9c9b4; }
.gov-icard-h { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #b45323; line-height: 1.3; margin: 0 0 10px; }
.gov-icard p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; margin: 0; }

/* --- Complaints table (page 23) --- */
.gov-ctable { width: 100%; border-collapse: collapse; border-bottom: 2px solid var(--gov-orange); margin-top: 10px; }
.gov-ctable th { background: var(--gov-orange); color: #fff; text-align: left; font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 12px 16px; }
.gov-ctable th:last-child, .gov-ctable td:last-child { text-align: center; }
.gov-ctable td { padding: 14px 16px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; border-bottom: 1px solid #f3d9c5; color: #1a1a1a; }

/* --- 2-column bullet grid --- */
.gov-bullets--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; align-items: start; }

/* --- Third-party disclosure cards (page 26) --- */
.gov-disclose { margin-top: 8px; }
.gov-disclose-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gov-disclose-card { border: 1px solid #f0d8c8; border-radius: 8px; padding: 24px 26px; text-align: center; }
.gov-disclose-card h4 { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; color: #b45323; margin: 0 0 10px; }
.gov-disclose-card p { font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; margin: 0; }
.gov-disclose-band { display: block; width: max-content; max-width: 86%; margin: 16px auto; background: linear-gradient(90deg, #f47721 0%, #d4692a 100%); color: #fff; font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 30px; border-radius: 6px; text-align: center; }

/* --- Contact list --- */
.gov-contact { list-style: none; margin: 6px 0 0; padding: 0; }
.gov-contact li { position: relative; padding-left: 20px; margin: 0 0 14px; font-family: 'Noto Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1a1a1a; }
.gov-contact li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; background: #975ea7; }
.gov-contact strong { color: #1a1a1a; }
.gov-contact a { color: var(--brand-blue); }

/* ===== Brand consistency: inner-page H2 headings use Noto Sans (homepage excluded) ===== */
body:not(.home-page) h2 { font-family: 'Noto Sans', sans-serif !important; font-size: 18px !important; }


.growth-block-sub {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px; font-weight: 700; line-height: 1.25;
    color: #111111; margin-bottom: 22px;
}
.growth-block-intro {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px; color: #444; line-height: 1.4;
    margin-bottom: 22px;
}
.growth-block-title1
{
    margin-bottom: 10px;
}