:root {
    --primary-blue: #00398E;
    --secondary-blue: #099DDF;
}

body.light .butn-arrow {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border: none;
}

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

.loader-logo {
    width: 200px;
    height: 200px;
    max-width: 50vw;
    max-height: 50vw;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: contain;
}

/* .loader-wrap centres its content in a 100vh box, but on mobile 100vh counts
   the area behind the browser address bar — so the true centre of that box
   sits below the centre of what you can actually see. svh measures the
   visible viewport instead. */
@media (max-width: 767px) {
    .loader-wrap {
        height: 100svh;
    }
}

/* Applied by scripts.js while the preloader is on screen, removed when its
   timeline completes. overflow alone doesn't stop touch scrolling, hence
   touch-action / overscroll-behavior. scrollbar-gutter keeps the scrollbar
   track reserved while locked, so the page doesn't jump sideways when the
   bar disappears and comes back. */
html.is-preloading {
    overflow: hidden;
    scrollbar-gutter: stable;
}

html.is-preloading body {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

/* Safari auto-detects phone numbers in plain text and wraps them in tel:
   links styled with its own blue. The format-detection meta in each page head
   turns that off; this keeps the colour inherited on any real tel: link. */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

.underline {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-head h6:before {
    content: none;
}

.value-box {
    padding: 30px;
    border-radius: 10px;
    background: #f7f9fc;
    transition: 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
    background: #eef4ff;
}

.value-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.value-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.fs-35 {
    font-size: 35px;
}

.features .stack-title h2 {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8vw;
}

.item i {
    color: var(--secondary-blue);
}

.footer-style1 {
    background: var(--primary-blue);
    border-top: 1px solid #eee;
}

.footer-style1 p {
    color: white !important;
    font-size: 15px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.features .item {
    text-align: center;
}

.icon {
    margin: 0 auto;
}

body.light .bg-light {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)) !important;
}

body.light .bg-light.item i {
    color: white !important;
}

.mb-25px {
    margin-bottom: 20px !important;
}

.box-info a {
    color: var(--primary-blue);
    transition: 0.3s;
}

.box-info a:hover {
    color: var(--secondary-blue);
    transform: translateY(-1px);
}

body.light .sub-bg {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    /* color: white; */
}

.box-info i {
    font-size: 30px;
    color: white;
}

.box-info p {
    color: white !important;
}

.social-media i {
    font-size: 20px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

.brand-item {
    min-width: 300px;
    padding: 20px 40px;
}

.brand-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border: 1px solid white;
    border-radius: 10px;
}


/* infinite scroll */

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.serv-style4 .item .img {
    opacity: 1 !important;
    right: -20px !important;
}


.loader-wrap svg {
    fill: var(--primary-blue);
}

.navbar .navbar-nav {
    background: none !important;
    backdrop-filter: blur(0rem);
    border-radius: 0px;
}

.navbar {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.hero-style1 {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 0 !important;
    display: flex;
    align-items: end;
}

.bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-style1 .container {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.hero-style1 h1 {
    color: white;
}

body.light .hero-style1 .circle-button svg {
    fill: white;
}

.hero-text {
    color: white !important;
}

body.light .hero-style1 .tags a {
    border-color: white;
    color: white;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 10px 14px 10px;
}

#who-we-are,
#csr {
    background: white;
}

h6.subtitle {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    font-size: 14px;
    background: #eaeaea;
    margin-bottom: 10px;
    color: black !important;
}

#our-brands {
    /* background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); */
    padding: 100px 0 !important;
}

.brands-background {
    position: relative;
    overflow: hidden;
}

.brands-bg {
    position: absolute;
    inset: -200px 0;
    background-image: url('../image/brands-background.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.brands-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 47, 123, 0.7);
    z-index: 1;
}

.brands-track {
    position: relative;
    z-index: 2;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-content .date {
    font-size: 13px;
    opacity: 0.6;
}

.gov-section {
    padding: 100px 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gov-bg {
    position: absolute;
    inset: 0;
    background-image: url('../image/brands-background.webp');
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
}

.gov-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.butn-arrow {
    transition: transform 0.3s ease;
}

.butn-arrow:hover {
    color: black !important;
    background: white !important;
    border: 0.5px solid black !important;
}

.gov-section .butn-arrow:hover {
    border: none !important;
}

.butn-arrow:hover .arrow-icon {
    background: var(--primary-blue) !important;
}

.butn-arrow:hover .arrow-icon svg {
    filter: brightness(0) invert(1);
}

.navbar .navbar-nav .nav-link {
    font-size: 13px !important;
}

/* Navbar dropdown */
.navbar .nav-link.dropdown-toggle::after {
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    vertical-align: 12px;
    opacity: 0.75;
}

/* Mobile only — flipped while the dropdown is open (class set by scripts.js) */
@media (max-width: 991px) {
    .navbar .nav-link.dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar .nav-link.dropdown-toggle.is-open::after {
        transform: rotate(180deg);
    }
}

.nav-dropdown {
    background: var(--primary-blue);
    border: none;
    border-radius: 10px;
    padding: 8px 0;
    /* box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22); */
    min-width: 210px;
    margin-top: 10px;
}

.navbar .dropdown-menu {
    top: 50px;
    visibility: hidden;
    padding: 10px 5px;
    color: #fff;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* border: 1px solid rgba(60, 80, 180, 0.25); */
    border-radius: 10px;
    min-width: 255px;
    transform: translateY(20px);
    transition: all 0.4s;
    border: none;
}

.nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    white-space: nowrap;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.navbar .nav-item.dropdown:hover>.nav-dropdown {
    display: block;
}

.panel-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 10px;
    color: #fff;
    max-width: 260px;
}

.team-card {
    text-align: center;
    transition: all 0.4s ease;
}

.team-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

.team-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-info h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.team-info span {
    font-size: 14px;
    color: #777;
}

.panel-box h6 {
    margin-bottom: 5px;
    font-size: 18px;
}

.panel-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.main-title {
    text-transform: capitalize;
}

.serv-style2 .item .fit-img img {
    opacity: 0.7;
}

.blog-style2 h5 {
    font-size: 25px;
}

.blog-style2 .info {
    color: var(--primary-blue);
}

.gov-overlay-content {
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    padding: 40px;
}

.intro-style3 .box-bgimg1:after {
    background-image: url(../image/favicon.png);
    top: 10%;
    left: 45%;
    width: 80%;
    height: 80%;
    opacity: 0.3;
    transform: translateX(-45%);
}

/* AI video thumbnail trigger */
.ai-video-trigger {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 170px;
    max-width: 42%;
    aspect-ratio: 16 / 10;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0, 10, 30, 0.25);
    box-shadow: 0 10px 30px rgba(0, 10, 30, 0.35);
    z-index: 4;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ai-video-trigger:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-blue);
    box-shadow: 0 16px 38px rgba(9, 157, 223, 0.4);
}

.ai-video-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ai-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding-left: 3px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ai-video-trigger:hover .ai-video-play {
    background: var(--secondary-blue);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 575px) {
    .ai-video-trigger {
        width: 130px;
        top: 16px;
        right: 16px;
    }

    .ai-video-play {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

/* AI video modal */
.ai-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 30, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ai-video-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.ai-video-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    transform: translateY(24px);
    transition: transform 0.35s ease;
}

.ai-video-overlay.is-open .ai-video-box {
    transform: translateY(0);
}

.ai-video-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 10, 30, 0.6);
    aspect-ratio: 16 / 9;
}

.ai-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ai-video-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary-blue);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(0, 10, 30, 0.35);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ai-video-close:hover {
    background: var(--secondary-blue);
    color: #fff;
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .ai-video-close {
        top: -14px;
        right: 4px;
    }
}

body.light .bg-light.main-colorbg {
    background: #eaeaea !important;
    color: black !important;
}

#capital-partners-values {
    background: linear-gradient(135deg, #f3faff, #d6efff);
}

#capital-partners-values .sub-bg {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: white;
}

#capital-partners-values .sub-bg .box {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-bottom: 20px;
}

#capital-partners-values .sub-bg p {
    font-size: 15px;
}

/* Mobile only — the card is full width here, so sit the icon beside the
   heading and copy rather than stacked above them. Desktop keeps the column. */
@media (max-width: 767px) {
    #capital-partners-values .sub-bg {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 24px 22px;
    }

    /* Icon keeps its 70px square */
    #capital-partners-values .sub-bg .box {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    /* Title and copy stretch across the remaining width, so the text
       wraps onto fewer lines and sits level with the icon */
    #capital-partners-values .sub-bg>div:not(.box) {
        flex: 1;
        min-width: 0;
    }

    #capital-partners-values .sub-bg h5 {
        font-size: 18px;
    }

    #capital-partners-values .sub-bg p {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* #about .butn-arrow {
    display: none;
} */

.team-intro .item {
    min-height: 220px;
}

.text-white {
    color: white !important;
}

.butn-bord-sm:before {
    content: none;
}

.modal-content {
    border-radius: 10px;
}

.no-border-btn.butn-arrow:hover {
    border: none !important;
}


/* ============================================================
   LEADERSHIP PAGE — FULL PROFILE
============================================================ */

.ld-profile {
    padding: 100px 0;
    background: #fff;
}

.ld-profile-content::after {
    content: '';
    display: table;
    clear: both;
}

.ld-profile-clearfix {
    clear: both;
}

.ld-profile-img-float {
    float: right;
    width: 42%;
    margin: 0 0 40px 60px;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 30px 80px rgba(0, 57, 142, 0.14); */
}

.ld-profile-img-float img {
    width: 100%;
    height: auto;
    display: block;
}

.ld-bio-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.ld-bio-name {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.05;
    margin-bottom: 10px;
}

.ld-bio-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-bottom: 4px;
}

.ld-bio-tagline {
    font-size: 14px;
    color: #888;
    margin: 8px 0 28px;
    letter-spacing: 0.02em;
}

.ld-bio-stats {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    overflow: hidden;
}

.ld-bio-stat {
    flex: 1;
    min-width: 120px;
    padding: 18px 20px;
    border-right: 1px solid #eaeef5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ld-bio-stat:last-child {
    border-right: none;
}

.ld-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.ld-stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ld-bio-body {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 18px;
}

.ld-bio-quote {
    border-left: 4px solid var(--secondary-blue);
    padding: 22px 28px;
    background: #f4f8ff;
    border-radius: 0 10px 10px 0;
    margin: 32px 0;
}

.ld-bio-quote p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Advisory Network + Board (combined section) */
.ld-network {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3faff, #d6efff);
}

.ld-network-intro {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.ld-network-body {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin: 0;
}

/* Expertise marquee separator */
.ld-exp-marquee {
    overflow: hidden;
    padding: 40px 0 80px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ld-exp-track {
    display: flex;
    width: max-content;
    gap: 14px;
}

.ld-exp-ltr {
    animation: ldScrollLeft 20s linear infinite;
}

.ld-exp-rtl {
    animation: ldScrollRight 20s linear infinite;
}

.ld-exp-marquee:hover .ld-exp-track {
    animation-play-state: paused;
}

.ld-exp-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 12px 18px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 320px;
}

.ld-exp-card:hover {
    /* border-color: var(--secondary-blue); */
    /* box-shadow: 0 6px 20px rgba(0, 57, 142, 0.1); */
}

.ld-exp-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.ld-exp-card span {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

@keyframes ldScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes ldScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.ld-section-intro {
    max-width: 620px;
    margin: 0 auto;
    color: #666;
}

.ld-expertise-item {
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.ld-expertise-item:hover {
    border-color: var(--secondary-blue);
    /* box-shadow: 0 12px 36px rgba(0, 57, 142, 0.1); */
    transform: translateY(-4px);
}

.ld-expertise-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 14px;
}

.ld-expertise-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.ld-expertise-closing {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* Board Slider */
.ld-board-section {
    padding: 100px 0;
    background: #fff;
}

.ld-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1.5px solid #dde4f0;
    background: #fff;
    color: var(--primary-blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ld-nav-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.ld-board-card {
    border-radius: 10px;
    overflow: hidden;
}

.ld-board-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ld-board-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ld-board-card:hover .ld-board-img img {
    transform: scale(1.04);
}

.ld-board-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 15, 50, 0.82) 0%, rgba(0, 15, 50, 0.1) 50%, transparent 100%);
    transition: opacity 0.35s ease;
}

.ld-board-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.ld-board-name {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.ld-board-title {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    margin: 0;
}

/* Blue gradient hover overlay */
.ld-board-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 57, 142, 0.92) 0%, rgba(9, 157, 223, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 10px;
}

.ld-board-card:hover .ld-board-hover {
    opacity: 1;
}

.ld-board-card:hover .ld-board-info,
.ld-board-card:hover .ld-board-overlay {
    opacity: 0;
}

/* Arrow button centered inside overlay */
.ld-board-open {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary-blue);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25); */
    transform: scale(0.8);
    transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.ld-board-card:hover .ld-board-open {
    transform: scale(1);
}

.ld-board-open:hover {
    background: var(--secondary-blue);
    color: #fff;
}

/* Member modal */
.ld-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 30, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ld-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.ld-modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 840px;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.35s ease;
}

.ld-modal-overlay.is-open .ld-modal-box {
    transform: translateY(0);
}

.ld-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #dde4f0;
    background: #fff;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ld-modal-close:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.ld-modal-inner {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.ld-modal-img {
    width: 38%;
    flex-shrink: 0;
    overflow: hidden;
}

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

.ld-modal-info {
    flex: 1;
    padding: 44px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ld-modal-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 6px;
    line-height: 1.2;
}

.ld-modal-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 24px;
}

.ld-modal-divider {
    width: 36px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
    margin-bottom: 24px;
}

.ld-modal-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ld-modal-bullets li {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}

.ld-modal-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-blue);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .ld-modal-inner {
        flex-direction: column;
    }

    .ld-modal-img {
        width: 100%;
        height: 220px;
    }

    .ld-modal-info {
        padding: 28px 24px;
    }
}

/* Future Leaders */
.ld-future {
    padding: 100px 0;
    background: #ffffff;
}

.ld-future-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
}

.ld-future-quote {
    font-size: 15px;
    color: var(--primary-blue);
    line-height: 1.85;
    border-left: 3px solid var(--secondary-blue);
    padding: 16px 20px;
    background: #fff;
    border-radius: 0 10px 10px 0;
    margin: 0;
    /* box-shadow: 0 4px 20px rgba(0, 57, 142, 0.06); */
}

.ld-pillar-list {
    display: flex;
    flex-direction: column;
}

.ld-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e4eaf4;
    transition: background 0.2s ease;
}

.ld-pillar-item:last-child {
    border-bottom: none;
}

.ld-pillar-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-blue);
    letter-spacing: 2px;
    min-width: 24px;
    padding-top: 16px;
    opacity: 0.6;
}

.ld-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    flex-shrink: 0;
}

.ld-pillar-body {
    flex: 1;
}

.ld-pillar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.ld-pillar-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .ld-profile-img-float {
        float: none;
        width: 100%;
        margin: 0 0 36px 0;
    }

    .ld-bio-stat {
        flex: 1 0 calc(50% - 1px);
    }

    .ld-bio-stat:nth-child(odd) {
        border-right: 1px solid #eaeef5;
    }

    .ld-bio-stat:nth-child(1),
    .ld-bio-stat:nth-child(2) {
        border-bottom: 1px solid #eaeef5;
    }

    .ld-bio-stat:last-child {
        border-right: none;
    }
}

/* ============================================================
   LEADERSHIP — FEATURED PROFILE (index.html card)
============================================================ */
.leader-roles {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.leader-name {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.1;
}

.leader-tagline {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

/* ============================================================
   FORM FEEDBACK — contact + compliance submissions
   ============================================================ */

.form-alert {
    display: none;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.form-alert.is-visible {
    display: flex;
}

.form-alert i {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.5;
}

.form-alert-success {
    background: #e9f7ef;
    border-color: #a8ddbd;
    color: #0f6b3f;
}

.form-alert-error {
    background: #fdecee;
    border-color: #f3b7bd;
    color: #a32330;
}

.butn-arrow.is-busy,
.butn-arrow:disabled {
    opacity: 0.6;
    pointer-events: none;
}

.leader-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* Featured leader: name/title sit above the photo, bio runs parallel to it */
.leader-featured {
    display: grid;
    gap: 30px;
}

.leader-featured .leader-name {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .leader-featured {
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        row-gap: 30px;
        align-items: start;
    }

    .leader-featured .leader-name {
        grid-column: 1;
        grid-row: 1;
    }

    .leader-featured .leader-media {
        grid-column: 1;
        grid-row: 2;
    }

    /* Same grid row as the photo, so its top edge lines up with the photo's */
    .leader-featured .leader-copy {
        grid-column: 2;
        grid-row: 2;
    }
}

.leader-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 30px 80px rgba(0, 57, 142, 0.15); */
}

.leader-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    object-position: center -70px;
}

/* Mobile: the column is narrow enough that cover scales the photo to exactly
   the 520px height, so there is no vertical overflow to absorb the -70px
   nudge — it just crops his head and leaves a gap at the bottom. */
@media (max-width: 767px) {
    .leader-img-wrap img {
        object-position: center top;
    }
}

/* ============================================================
   SUSTAINABILITY PREVIEW SECTION
   ============================================================ */

.sust-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
}

.sust-img-full {
    /* height: 100%; */
    min-height: unset;
}

.sust-intro-center {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.sust-img-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(160deg, rgba(0, 57, 142, 0.65), rgba(9, 157, 223, 0.45)); */
}

.sust-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.sust-img-badge i {
    font-size: 16px;
    color: #fff;
}

.sust-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    max-width: 560px;
}

.sust-card {
    background: linear-gradient(135deg, #f3faff, #d6efff);
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 20px 18px;
    transition: all 0.3s ease;
    height: 100%;
}

.sust-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 12px 32px rgba(0, 57, 142, 0.1); */
    background: #fff;
    border-color: var(--secondary-blue);
}

.sust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    margin-bottom: 12px;
}

.sust-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.sust-card-desc {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   CSR — FULL PAGE
   ============================================================ */

.csr-intro {
    background: #fff;
}

.csr-body {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
}

/* Entity cards */
.csr-entities {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.csr-entity {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #f7f9fc;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.csr-entity:hover {
    background: #fff;
    /* box-shadow: 0 8px 30px rgba(0, 57, 142, 0.08); */
    transform: translateX(5px);
    border-color: var(--secondary-blue);
}

.csr-entity-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.csr-entity-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 4px;
}

.csr-entity-desc {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Impact numbers band */
.csr-impact-band {
    background: #fff;
    padding: 0;
    overflow: hidden;
    /* border-top: 1px solid #eaeef5; */
    /* border-bottom: 1px solid #eaeef5; */
}

.csr-impact-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.csr-impact-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 14px;
    animation: ldScrollLeft 30s linear infinite;
}

.csr-impact-band:hover .csr-impact-track {
    animation-play-state: paused;
}

.csr-impact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 16px 22px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 250px;
}

.csr-impact-card:hover {
    /* border-color: var(--secondary-blue); */
    /* box-shadow: 0 6px 20px rgba(0, 57, 142, 0.1); */
}

.csr-ic-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #fff;
}

.csr-ic-body {
    display: flex;
    flex-direction: column;
}

.csr-impact-num {
    font-size: 22px;
    font-weight: 600;
    color: black;
    line-height: 1;
    letter-spacing: -0.5px;
}

.csr-ic-desc {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-top: 5px;
    white-space: nowrap;
}

/* Pillar sections */
/* CSR Pillars — tabbed */
.csr-pillars {
    padding: 100px 0;
    background: white;
}

.csr-pillars-head {
    margin-bottom: 60px;
}

.csr-tab-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: start;
}

.csr-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 100px;
}

.csr-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.csr-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.csr-tab-btn:hover {
    border-color: rgba(9, 157, 223, 0.4);
    /* box-shadow: 0 4px 14px rgba(0, 57, 142, 0.08); */
}

.csr-tab-btn.active {
    border-color: rgba(0, 57, 142, 0.25);
    background: #eef4ff;
}

.csr-tab-btn.active::before {
    transform: scaleY(1);
}

.csr-tab-num {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 0.5px;
    min-width: 18px;
}

.csr-tab-btn.active .csr-tab-num {
    color: var(--secondary-blue);
}

.csr-tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #eaeef5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.csr-tab-btn.active .csr-tab-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.csr-tab-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    flex: 1;
    line-height: 1.3;
}

.csr-tab-btn.active .csr-tab-label {
    color: var(--primary-blue);
}

/* Tab panels */
.csr-tab-panel {
    display: none;
}

.csr-tab-panel.active {
    display: block;
    animation: csrFadeIn 0.3s ease;
}

@keyframes csrFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.csr-panel-head {
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.csr-panel-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.csr-panel-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.csr-panel-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Initiative tiles grid — auto-fit: 5 cards → 5 cols, 4 → 4 cols */
.csr-init-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.csr-init-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 24px 16px 20px;
    transition: all 0.25s ease;
}

.csr-init-card:hover {
    /* box-shadow: 0 6px 24px rgba(0, 57, 142, 0.1); */
    transform: translateY(-3px);
    border-color: rgba(9, 157, 223, 0.5);
}

.csr-init-card:hover i {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.csr-init-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 57, 142, 0.07), rgba(9, 157, 223, 0.07));
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.csr-init-card span {
    font-size: 12.5px;
    color: #444;
    font-weight: 500;
    line-height: 1.65;
}

.csr-init-card span strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Closing callout */
.csr-closing {
    background: linear-gradient(135deg, #f3faff, #d6efff);
    padding: 100px 0;
    /* border-top: 1px solid #eaeef5; */
    position: relative;
    overflow: hidden;
}

.csr-closing .butn-arrow {
    margin: 0 auto;
}

/* .csr-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 0 0 4px 4px;
} */

.csr-closing-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.csr-closing-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.csr-closing-text {
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 600;
    line-height: 1.75;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 60%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 991px) {
    .csr-tab-wrap {
        grid-template-columns: 1fr;
    }

    .csr-tab-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: static;
        gap: 8px;
    }

    .csr-tab-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 10px;
        gap: 6px;
    }

    .csr-tab-num {
        display: none;
    }

    .csr-tab-label {
        font-size: 11px;
        text-align: center;
    }

    .csr-panel-head {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .csr-tab-nav {
        grid-template-columns: repeat(2, 1fr);
    }

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

    #smooth-content .align-items-center {
        align-items: left !important;
    }

    .hero-buttons {
        margin-top: 55px !important;
    }

    .fs-14 {
        font-size: 12px !important;
    }

    .hero-style1 .circle-button {
        display: none;
    }

    .hero-content {
        margin-top: 65px;
    }
}

/* ============================================================
   SUSTAINABILITY — FULL PAGE
   ============================================================ */

.sust-overview {
    background: #fff;
}

.sust-body-text {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
}

.sust-focus-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 18px;
}

.sust-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sust-focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f9fc;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

/* .sust-focus-item:hover {
    background: #fff;
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
} */

.sust-focus-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

/* Pillar sections */
.sust-pillar {
    background: #fff;
}

.sust-pillar-shaded {
    background: #f7f9fc;
}

/* Pillar feature card */
.sust-pcard {
    position: relative;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eaeef5;
    /* box-shadow: 0 20px 60px rgba(0, 57, 142, 0.07); */
    overflow: hidden;
    height: 100%;
}

.sust-pillar-shaded .sust-pcard {
    background: #fff;
}

.sust-pcard-num {
    position: absolute;
    top: -16px;
    right: 20px;
    font-size: 96px;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.sust-pcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 22px;
}

.sust-pcard-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 16px;
}

.sust-pcard-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sust-pcard-note {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    border-top: 1px solid #eaeef5;
    padding-top: 14px;
    margin: 0;
}

/* Checklist */
.sust-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sust-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #eaeef5;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.sust-checklist li:first-child {
    border-top: 1px solid #eaeef5;
    padding-top: 22px;
}

.sust-checklist li i {
    font-size: 22px;
    color: var(--secondary-blue);
    flex-shrink: 0;
}

/* Closing callout */
.sust-closing {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0165c7 100%);
    padding: 100px 0;
}

.sust-closing-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.sust-closing-icon {
    font-size: 52px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 28px;
}

.sust-closing-text {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 600;
    color: #fff;
    line-height: 1.55;
    margin: 0;
}

.sust-closing .butn-arrow {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

.sust-closing .butn-arrow:hover {
    background: #fff !important;
    color: var(--primary-blue) !important;
    border-color: #fff !important;
}

.sust-closing .butn-arrow:hover .arrow-icon {
    background: var(--primary-blue) !important;
}

/* ============================================================
   WHO WE ARE — PAGE HERO
============================================================ */
.wwa-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.wwa-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../image/brands-background.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.wwa-hero:hover .wwa-hero-bg {
    transform: scale(1.1);
}

.wwa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 57, 142, 0.82) 0%,
            rgba(9, 157, 223, 0.62) 100%);
}

.wwa-hero-inner {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.wwa-breadcrumb {
    margin-bottom: 22px;
}

.wwa-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.wwa-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.wwa-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.wwa-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.wwa-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    float: none;
    color: rgba(255, 255, 255, 0.4);
    content: "/";
    padding: 0 8px;
}

.wwa-hero-title {
    color: #fff;
    font-size: clamp(46px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}


/* ============================================================
   WHO WE ARE — FOREWORD SECTION
============================================================ */
.wwa-foreword {
    padding: 100px 0;
    background: #fff;
}

.wwa-foreword-columns {
    margin-bottom: 50px;
}

.wwa-foreword-text {}

.wwa-foreword-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.85;
}


.wwa-feature-card {
    /* background: #f7f9fc; */
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.35s ease;
    height: 100%;
}

.wwa-feature-card:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 16px 40px rgba(0, 57, 142, 0.1); */
    background: #eef4ff;
    border-color: #c5d9f7;
}

.wwa-feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
}

.wwa-feature-body {
    flex: 1;
}

.wwa-feature-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: black;
}

.wwa-feature-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* WHO WE ARE — FEATURES MARQUEE */
.wwa-features-marquee {
    overflow: hidden;
    padding: 80px 0 0px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.wwa-features-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: wwaScrollFeatures 30s linear infinite;
}

.wwa-features-marquee:hover .wwa-features-track {
    animation-play-state: paused;
}

.wwa-features-track .wwa-feature-card {
    width: 300px;
    flex-shrink: 0;
    height: auto;
}

@keyframes wwaScrollFeatures {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ============================================================
   WHO WE ARE — COMPACT VISION & MISSION BOXES
============================================================ */
.wwa-vm-box {
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wwa-vm-box:hover {
    transform: translateY(-5px);
}

.wwa-vm-box-vision {
    background: linear-gradient(135deg, #f3faff, #d6efff);
    border: 1px solid #daeaff;

    /* box-shadow: 0 15px 40px rgba(0, 57, 142, 0.25); */
}

.wwa-vm-box-vision:hover {
    /* box-shadow: 0 25px 60px rgba(0, 57, 142, 0.4); */
}

.wwa-vm-box-mission {
    background: linear-gradient(135deg, #f3faff, #d6efff);
    border: 1px solid #daeaff;
    /* box-shadow: 0 15px 40px rgba(0, 57, 142, 0.06); */
}

.wwa-vm-box-mission:hover {
    /* box-shadow: 0 25px 60px rgba(0, 57, 142, 0.14); */
}

.wwa-vm-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wwa-vm-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wwa-vm-box-vision .wwa-vm-box-icon {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.wwa-vm-box-mission .wwa-vm-box-icon {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.wwa-vm-box-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.wwa-vm-box-vision .wwa-vm-box-label {
    color: var(--secondary-blue);
}

.wwa-vm-box-mission .wwa-vm-box-label {
    color: var(--secondary-blue);
}

.wwa-vm-box-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
}

.wwa-vm-box-vision .wwa-vm-box-title {
    color: black;
}

.wwa-vm-box-mission .wwa-vm-box-title {
    color: black;
}

.wwa-vm-box-text {
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.wwa-vm-box-vision .wwa-vm-box-text {
    color: #555;
}

.wwa-vm-box-mission .wwa-vm-box-text {
    color: #555;
}


/* ============================================================
   WHO WE ARE — VISION & MISSION SECTION (standalone — kept for reference)
============================================================ */
.wwa-vm-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3faff 0%, #d6efff 100%);
}

.vm-card {
    border-radius: 10px;
    padding: 52px 46px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.vm-card:hover::after {
    transform: scale(1.6);
}

.vm-card:hover {
    transform: translateY(-8px);
}

.vm-vision {
    background: #fff;
    border: 1px solid #daeaff;
    /* box-shadow: 0 20px 60px rgba(0, 57, 142, 0.3); */
}

.vm-vision:hover {
    /* box-shadow: 0 32px 80px rgba(0, 57, 142, 0.45); */
}

.vm-mission {
    background: #fff;
    border: 1px solid #daeaff;
    /* box-shadow: 0 20px 60px rgba(0, 57, 142, 0.07); */
}

.vm-mission:hover {
    /* box-shadow: 0 32px 80px rgba(0, 57, 142, 0.16); */
}

.vm-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 32px;
}

.vm-vision .vm-card-icon {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.vm-mission .vm-card-icon {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.vm-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vm-vision .vm-card-label {
    color: var(--secondary-blue);
}

.vm-mission .vm-card-label {
    color: var(--secondary-blue);
}

.vm-card-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.1;
}

.vm-vision .vm-card-title {
    color: var(--primary-blue);
}

.vm-mission .vm-card-title {
    color: var(--primary-blue);
}

.vm-card-text {
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
}

.vm-vision .vm-card-text {
    color: #555;
}

.vm-mission .vm-card-text {
    color: #555;
}


/* ============================================================
   WHO WE ARE — RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .wwa-hero {
        min-height: 360px;
        padding: 100px 0 50px;
    }

    .vm-card {
        padding: 40px 32px;
    }

    .vm-card-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .vm-card {
        padding: 36px 28px;
    }
}


/* ============================================================
   SUBSIDIARIES SLIDER (index.html #about section)
============================================================ */
.sub-slider-wrap {
    position: relative;
}

.sub-swiper {
    border-radius: 10px;
    overflow: hidden;
}

.sub-swiper .swiper-wrapper {
    align-items: stretch;
}

.sub-slide {
    display: flex;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 8px 48px rgba(0, 57, 142, 0.1); */
    background: #fff;
    border: 1px solid rgba(0, 57, 142, 0.1);
}

.sub-slide-logo {
    width: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8eef7 0%, #d4e3f5 100%);
    overflow: hidden;
}

.sub-slide-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sub-logo-initial {
    font-size: 96px;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.12;
    line-height: 1;
    font-family: 'Funnel Display', sans-serif;
    letter-spacing: -4px;
}

.sub-slide-body {
    flex: 1;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: linear-gradient(135deg, #f3faff, #d6efff); */
    background: white;
}

.sub-slide-name {
    font-size: 25px;
    font-weight: 700;
    color: black;
    margin-bottom: 6px;
    line-height: 1.2;
}

.sub-slide-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-blue);
    font-weight: 700;
    margin-bottom: 18px;
}

.sub-slide-desc {
    font-size: 13px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 28px;
    max-width: 520px;
}

/* butn-arrow on white card — force dark variant so it's visible */
/* .sub-slide-body .butn-arrow {
    background: #111012;
    color: #fff;
    border: none;
} */

/* .sub-slide-body .butn-arrow .arrow-icon {
    background: #ededed;
} */

/* .sub-slide-body .butn-arrow .arrow-icon svg {
    stroke: #111012;
} */

/* .sub-slide-body .butn-arrow:hover {
    background: var(--primary-blue) !important;
    color: #fff;
} */

/* .sub-slide-body .butn-arrow:hover .arrow-icon {
    background: var(--secondary-blue);
} */

/* .sub-slide-body .butn-arrow:hover .arrow-icon svg {
    stroke: #fff;
} */

.sub-slide-badge {
    display: inline-block;
    background: #eef2fa;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    align-self: flex-start;
}

/* Nav arrows — floating outside the swiper on left/right */
.sub-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.sub-swiper-prev {
    border-radius: 0 8px 8px 0;
    border-left: none !important;
}

.sub-swiper-next {
    border-right: none !important;
    border-radius: 8px 0 0 8px;
}

.sub-swiper-prev,
.sub-swiper-next {
    pointer-events: all;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dce6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    font-size: 14px;
    color: var(--primary-blue);
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.sub-swiper-prev:hover,
.sub-swiper-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

/* Pagination dots */
.sub-swiper-pag {
    text-align: center;
    margin-top: 28px;
}

.sub-swiper-pag .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bfcfe8;
    opacity: 1;
    margin: 0 5px;
    border-radius: 10px;
    transition: width 0.3s, border-radius 0.3s;
}

.sub-swiper-pag .swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 26px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .sub-slide-body {
        padding: 36px 32px;
    }

    .sub-slide-name {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .sub-slide {
        flex-direction: column;
        min-height: unset;
    }

    .sub-slide-logo {
        width: 100%;
        height: 220px;
    }

    .sub-slide-body {
        padding: 32px 24px;
    }

    .sub-swiper-prev,
    .sub-swiper-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ============================================================
   GROUP STATS MARQUEE BANNER (index.html, below subsidiaries)
============================================================ */
.sub-stat-banner {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #eaeef5;
    border-bottom: 1px solid #eaeef5;
}

.sub-stat-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.sub-stat-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 14px;
    animation: ldScrollLeft 40s linear infinite;
    margin-top: 60px;
}

.sub-stat-banner:hover .sub-stat-track {
    animation-play-state: paused;
}

.sub-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 14px 20px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sub-stat-item:hover {
    border-color: var(--secondary-blue);
    /* box-shadow: 0 6px 20px rgba(0, 57, 142, 0.1); */
}

.sub-si-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #fff;
}

.sub-si-body {
    display: flex;
    flex-direction: column;
}

.sub-si-stat {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.sub-si-label {
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin-top: 4px;
    white-space: nowrap;
}

/* ============================================================
   SUBSIDIARY DETAIL PAGE (subsidiary.html)
============================================================ */
/* Overview */
.sub-page-overview {
    padding: 100px 0;
}

.sub-logo-panel {
    border-radius: 10px;
    overflow: hidden;
    background: #edf2fb;
    height: 100%;
    min-height: 340px;
}

.sub-logo-panel img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sub-logo-panel .sub-logo-initial {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.1;
    line-height: 1;
    font-family: 'Funnel Display', sans-serif;
}

.sub-ov-nologo {
    max-width: 780px;
}

.sub-ov-nologo-body .sub-page-intro {
    max-width: 680px;
}

.sub-page-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

.sub-page-intro:last-child {
    margin-bottom: 0;
}

.sub-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.sub-stat {
    background: #f5f8fd;
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
}

.sub-stat-icon {
    font-size: 22px;
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 8px;
}

.sub-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.sub-stat-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    line-height: 1.3;
}

/* Formats (Tawfeer retail formats) */
.sub-page-formats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3faff, #d6efff);
}

.sub-format-card {
    background: #fff;
    border-radius: 10px;
    padding: 36px 28px 32px;
    height: 100%;
    /* box-shadow: 0 4px 22px rgba(0, 57, 142, 0.07); */
    border-top: 3px solid var(--secondary-blue);
    display: flex;
    flex-direction: column;
}

.sub-format-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.sub-format-desc {
    font-size: 14px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef1f8;
    flex-shrink: 0;
}

.sub-format-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sub-format-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
    padding: 6px 0;
    line-height: 1.5;
}

.sub-format-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-blue);
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ── FORMAT CARDS (3-column, CSR-box inspired) ──────── */
.sub-fmt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sub-fmt-card {
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 0px 28px 36px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sub-fmt-card:hover {
    /* box-shadow: 0 12px 40px rgba(0, 57, 142, 0.1); */
    transform: translateY(-3px);
}

.sub-fmt-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sub-fmt-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.sub-fmt-top-img {
    justify-content: center;
}

.sub-fmt-img {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub-fmt-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sub-fmt-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
    padding-top: 6px;
}

.sub-fmt-desc {
    font-size: 14px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeef5;
    flex-shrink: 0;
    text-align: center;
}

.sub-fmt-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sub-fmt-bullets li {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
    padding: 5px 0;
    line-height: 1.5;
    text-align: center;
}

.sub-fmt-bullets li i {
    color: var(--primary-blue);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── METRICS / STATS MARQUEE BAND ─────────────────── */
.sub-metrics-band {
    overflow: hidden;
    padding: 0px 0 100px;
    background: #fff;
    /* border-top: 1px solid #eaeef5; */
    /* border-bottom: 1px solid #eaeef5; */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.sub-metrics-marquee {
    overflow: hidden;
}

.sub-metrics-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: ldScrollLeft 60s linear infinite;
}

.sub-metrics-band:hover .sub-metrics-track {
    animation-play-state: paused;
}

.sub-mc-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 12px 18px;
    width: 270px;
    flex-shrink: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sub-mc-card:hover {
    border-color: var(--secondary-blue);
    /* box-shadow: 0 6px 20px rgba(0, 57, 142, 0.1); */
}

.sub-mc-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}

.sub-mc-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.sub-mc-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-top: 3px;
}

/* Key success points */
.sub-page-kp {
    padding: 80px 0;
    background: #f7f9fc;
}

.sub-kp-row {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.sub-kp-box {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid #eaeef5;
    border-radius: 10px;
    padding: 28px 14px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.sub-kp-box:hover {
    /* box-shadow: 0 8px 28px rgba(0, 57, 142, 0.1); */
    transform: translateY(-2px);
}

.sub-kp-box-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.sub-kp-box-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

/* Franchise / Partnership */
.sub-page-franchise {
    padding: 100px 0 100px;
    background: #fff;
    border-top: 1px solid #eaeef5;
}

.sub-franchise-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.25;
}

.sub-franchise-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
    margin: 0;
}

.sub-franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sub-franchise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f8fd;
    border: 1px solid #e8eef8;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sub-franchise-item:hover {
    background: #eef3fb;
    border-color: rgba(0, 57, 142, 0.18);
}

.sub-franchise-item i {
    color: var(--primary-blue);
    font-size: 17px;
    flex-shrink: 0;
}

/* Closing CTA */
.sub-page-closing {
    padding: 100px 0;
    background: linear-gradient(135deg, #001a46 0%, #00398E 55%, #0062c8 100%);
}

.sub-page-closing-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sub-closing-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.sub-closing-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sub-closing-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 36px;
}

/* Coming Soon placeholder */
.sub-page-placeholder {
    padding: 120px 0;
    background: #f5f8fd;
}

.sub-placeholder-inner {
    max-width: 500px;
    margin: 0 auto;
}

.sub-placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.sub-placeholder-icon i {
    font-size: 36px;
    color: #fff;
}

.sub-placeholder-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.sub-placeholder-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

/* Responsive — subsidiary page */
@media (max-width: 991px) {

    .sub-page-overview,
    .sub-page-formats,
    .sub-page-kp,
    .sub-page-franchise,
    .sub-page-placeholder {
        padding: 60px 0;
    }

    .sub-metrics-band {
        padding: 32px 0;
    }

    .sub-franchise-grid {
        grid-template-columns: 1fr;
    }

    .sub-logo-panel {
        min-height: 260px;
    }

    .sub-kp-row {
        flex-wrap: wrap;
    }

    .sub-kp-box {
        flex: 0 0 calc(33.333% - 8px);
    }

    .sub-fmt-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .sub-logo-panel {
        min-height: 220px;
    }

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

    .sub-kp-box {
        flex: 0 0 calc(50% - 6px);
    }

}

/* ── HORIZONTAL FORMAT ACCORDION ─────────────────── */
.sub-fhd {
    margin-bottom: 36px;
}

.sub-fa-accord {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 6px 36px rgba(0, 57, 142, 0.07); */
    border: 1px solid #eaeef5;
}

.sub-fa-tabs {
    display: flex;
    border-bottom: 1px solid #eaeef5;
    overflow-x: auto;
    scrollbar-width: none;
}

.sub-fa-tabs::-webkit-scrollbar {
    display: none;
}

.sub-fa-tab {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 16px 18px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease;
    position: relative;
}

.sub-fa-tab:not(:last-child) {
    border-right: 1px solid #eaeef5;
}

.sub-fa-tab:hover:not(.active) {
    background: #f7fafd;
}

.sub-fa-tab-num {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c0c8d8;
}

.sub-fa-tab-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #888;
    text-align: center;
    line-height: 1.3;
}

.sub-fa-tab.active {
    background: linear-gradient(180deg, rgba(0, 57, 142, 0.04) 0%, transparent 100%);
    border-bottom-color: var(--primary-blue);
}

.sub-fa-tab.active .sub-fa-tab-num {
    color: var(--secondary-blue);
}

.sub-fa-tab.active .sub-fa-tab-name {
    color: var(--primary-blue);
}

.sub-fa-content {
    padding: 44px 48px;
}

.sub-fa-panel {
    display: none;
    animation: faFadeIn 0.28s ease;
}

.sub-fa-panel.active {
    display: block;
}

@keyframes faFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub-fa-desc {
    font-size: 15.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eaeef5;
    max-width: 680px;
}

.sub-fa-ksp-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    margin-bottom: 18px;
}

.sub-fa-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.sub-fa-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: #444;
    line-height: 1.55;
    padding: 10px 14px;
    background: #f7fafd;
    border-radius: 10px;
    border: 1px solid #edf1f9;
}

.sub-fa-bullets li i {
    color: var(--secondary-blue);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .sub-fa-content {
        padding: 32px 28px;
    }
}

@media (max-width: 575px) {
    .sub-fa-tab {
        min-width: 110px;
        padding: 16px 10px 14px;
    }

    .sub-fa-content {
        padding: 24px 20px;
    }

    .sub-fa-bullets {
        grid-template-columns: 1fr;
    }
}

/* ── ADDITIONAL HIGHLIGHTS — reuses .sub-metrics-band marquee ── */

/* ── MARQUEE DRAG INTERACTION ──────────────────────────────────── */
.ld-exp-marquee,
.csr-impact-marquee,
.wwa-features-marquee,
.sub-metrics-marquee {
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.ld-exp-marquee.marquee-dragging,
.csr-impact-marquee.marquee-dragging,
.wwa-features-marquee.marquee-dragging,
.sub-metrics-marquee.marquee-dragging {
    cursor: grabbing;
}

/* While dragging, disable the hover-pause rule so we stay in control */
.ld-exp-marquee.marquee-dragging .ld-exp-track,
.csr-impact-marquee.marquee-dragging .csr-impact-track,
.wwa-features-marquee.marquee-dragging .wwa-features-track,
.sub-metrics-marquee.marquee-dragging .sub-metrics-track {
    animation-play-state: running !important;
}


/* ============================================================
   SUSTAINABILITY — STACKING SCROLL CARDS (01–04)
============================================================ */
.sust-pillars-stack {
    background: #e8eef7;
    padding: 48px 0;
    position: relative;
}

.sust-stack-track {
    position: relative;
    overflow: hidden;
}

.sust-stack-card {
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 12px 56px rgba(0, 57, 142, 0.11); */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    transform-origin: top center;
    will-change: transform, opacity;
    position: relative;
}

/* top accent bar — colour cycles per card */
.sust-stack-card:nth-child(1)::before,
.sust-stack-card:nth-child(2)::before,
.sust-stack-card:nth-child(3)::before,
.sust-stack-card:nth-child(4)::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
}

.sust-stack-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.sust-stack-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.sust-stack-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.sust-stack-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

/* header label row (number + icon) */
.sust-sc-label {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 36px 48px 0;
}

.sust-sc-num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-blue);
    opacity: 0.08;
    letter-spacing: -4px;
    font-family: 'Inter', sans-serif;
}

.sust-sc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sust-sc-icon i {
    font-size: 24px;
    color: #fff;
}

/* card body */
.sust-stack-card .container {
    padding-top: 28px;
    padding-bottom: 52px;
}

.sust-sc-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 18px;
}

.sust-sc-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.sust-sc-note {
    font-size: 15px;
    line-height: 1.75;
    color: #777;
    margin: 0;
    border-left: 3px solid var(--secondary-blue);
    padding-left: 14px;
}

/* responsive */
@media (max-width: 991px) {
    .sust-sc-label {
        padding: 28px 28px 0;
    }

    .sust-stack-card .container {
        padding-top: 24px;
        padding-bottom: 36px;
    }

    .sust-sc-num {
        font-size: 54px;
    }

    .sust-sc-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .sust-pillars-stack {
        padding: 32px 0;
    }

    .sust-stack-card {
        border-radius: 10px;
    }

    .sust-sc-label {
        padding: 22px 20px 0;
    }

    .sust-stack-card .container {
        padding-top: 20px;
        padding-bottom: 28px;
    }
}

#csr p {
    max-width: 720px;
}

#csr-pillars p {
    max-width: 720px;
}

/* ══════════════════════════════════════════════════════
   SUSTAINABILITY — 2×2 HOVER CARD GRID
══════════════════════════════════════════════════════ */
.sust-pillars-grid {
    background: linear-gradient(135deg, #f3faff, #d6efff);
    padding: 100px 0;
}

.sust-gc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; */
}

.sust-grid-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 8px 40px rgba(0, 57, 142, 0.07); */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sust-grid-card:hover {
    /* box-shadow: 0 20px 60px rgba(0, 57, 142, 0.15); */
    transform: translateY(-3px);
}

/* .sust-grid-card::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
} */

/* Front face */
.sust-gc-front {
    padding: 32px 36px 36px;
}

.sust-gc-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.sust-gc-num {
    font-size: 62px;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.07;
    line-height: 1;
    letter-spacing: -3px;
    flex-shrink: 0;
}

.sust-gc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sust-gc-icon i {
    font-size: 21px;
    color: #fff;
}

.sust-gc-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
    margin-bottom: 12px;
}

.sust-gc-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sust-gc-note {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    border-left: 3px solid var(--primary-blue);
    padding-left: 12px;
    margin: 0 0 22px;
}

.sust-gc-hint {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.75;
}

.sust-gc-hint i {
    font-size: 13px;
    animation: sust-nudge 1.6s ease-in-out infinite;
}

@keyframes sust-nudge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* Overlay — full card, slides up on hover */
.sust-gc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, var(--primary-blue) 0%, #004cb5 55%, var(--secondary-blue) 100%);
    padding: 36px;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sust-grid-card:hover .sust-gc-overlay {
    transform: translateY(0);
}

.sust-gc-ov-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sust-gc-ov-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sust-gc-ov-icon i {
    font-size: 18px;
    color: #fff;
}

.sust-gc-ov-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    line-height: 1.3;
    margin: 0;
}

.sust-gc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sust-gc-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13.5px;
    line-height: 1.55;
}

.sust-gc-list li i {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mobile — single column, overlay always visible below front */
@media (max-width: 767px) {
    .sust-gc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 16px;
    }

    .sust-gc-front {
        padding: 24px 24px 20px;
    }

    .sust-gc-overlay {
        position: static;
        transform: none !important;
        padding: 24px;
        border-radius: 0;
    }

    .sust-gc-ov-head {
        display: none;
    }

    .sust-gc-hint {
        display: none;
    }

    .sust-gc-note {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .sust-pillars-grid {
        padding: 48px 0 56px;
    }
}

.sub-page-overview h6.subtitle {
    max-width: 90px;
}

.butn-bord-sm {
    border-radius: 10px;
}

#about .butn-arrow .arrow-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;

}

#sustainability p {
    max-width: 720px;
}


/* ================================================================
   MOBILE RESPONSIVENESS — COMPREHENSIVE OVERRIDES
   Breakpoints used: 991px | 767px | 575px | 480px
   Organized page-by-page, section-by-section
================================================================ */

/* ── GLOBAL / ALL PAGES ─────────────────────────────────────── */
@media (max-width: 767px) {

    /* Tighten large spacing utility classes */
    .mb-50px {
        margin-bottom: 28px !important;
    }

    .mt-50px {
        margin-top: 28px !important;
    }

    /* Fluid hero headline on all pages */
    .hero-style1 h1,
    .wwa-hero-title {
        font-size: clamp(28px, 9vw, 46px) !important;
        line-height: 1.2;
    }
}

/* ── INDEX.HTML — MAIN HERO ──────────────────────────────────── */
@media (max-width: 767px) {
    .hero-style1 {
        height: auto;
        min-height: 100svh;
        /* avoids mobile address-bar overlap */
    }

    .hero-style1 .container {
        padding-top: 120px;
        padding-bottom: 60px;
        margin-bottom: 0;
    }

    .hero-text {
        font-size: 15px !important;
    }

    /* Button row: shrink gap so both buttons fit side-by-side */
    .hero-style1 .d-flex.gap-4 {
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .hero-style1 .container {
        padding-top: 96px;
        padding-bottom: 48px;
    }

    /* Stack buttons vertically on very small phones */
    .hero-style1 .d-flex.gap-4 {
        flex-direction: column !important;
        align-items: center;
    }
}

/* ── INDEX.HTML — SUBSIDIARIES SWIPER ───────────────────────── */
/* The 70px padding creates space for the floating nav arrows.
   Reduce it progressively so it doesn't eat into the card. */
@media (max-width: 991px) {
    .sub-slider-wrap {
        padding: 0 52px;
    }
}

@media (max-width: 767px) {
    .sub-slider-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .sub-slider-wrap {
        padding: 0 28px;
    }

    .sub-swiper-prev,
    .sub-swiper-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .sub-slide-name {
        font-size: 19px;
    }

    .sub-slide-tagline {
        font-size: 10px;
    }

    .sub-slide-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sub-slider-wrap {
        padding: 0 18px;
    }
}

/* ── INDEX.HTML — SUBSIDIARY CARDS ON MOBILE ────────────────── */
/* The card is a fixed-height 50/50 split, which leaves the text column
   around 170px wide on a phone. Stack it and let the card grow instead. */
@media (max-width: 767px) {

    /* Swiper stretches every slide to the tallest one; make the slide a
       flex parent so the card fills it and all cards end up identical. */
    .sub-swiper .swiper-slide {
        display: flex;
        height: auto;
    }

    .sub-slide {
        flex: 1;
        flex-direction: column;
        height: auto;
        min-height: 430px;
    }

    .sub-slide-logo {
        width: 100%;
        height: 175px;
    }

    .sub-slide-body {
        justify-content: flex-start;
        padding: 24px 22px 28px;
    }

    .sub-slide-desc {
        max-width: none;
        margin-bottom: 20px;
    }

    /* Descriptions differ in length, so pin the CTA to the bottom —
       otherwise it sits at a different height on every card. */
    .sub-slide-body .butn-arrow {
        margin-top: auto;
    }
}

@media (max-width: 575px) {
    .sub-slide {
        min-height: 400px;
    }

    .sub-slide-logo {
        height: 150px;
    }

    .sub-slide-body {
        padding: 20px 18px 24px;
    }
}

/* ── INDEX.HTML — ABOUT SECTION HEADING ───────────────────────
   Sizing now comes from the unified section-title system at the
   bottom of this file. */

/* The heading and its paragraph stack on mobile — 15px between them is tight */
@media (max-width: 991px) {
    #about .sec-head .md-mb15 {
        margin-bottom: 26px;
    }
}

/* ── INDEX.HTML — CSR CARDS ON MOBILE ───────────────────────── */
/* Each card is 520px tall with 60px/40px padding and a 32px heading. Stacked
   full width on a phone that reads as three near-empty boxes, and the padding
   eats most of the narrow column. */
@media (max-width: 767px) {
    #csr .mb-80px {
        margin-bottom: 40px !important;
    }

    #csr .item {
        min-height: 360px;
        padding: 36px 26px;
        border-radius: 20px;
    }

    #csr .item h4 {
        font-size: 24px;
        margin-bottom: 16px !important;
    }

    /* Decorative image sits bottom-right behind the text — pull it in so it
       stays proportional to the shorter card */
    #csr .item .img {
        height: 42%;
        bottom: -20px;
    }
}

/* ── ALL INNER PAGE HEROES (.wwa-hero) ───────────────────────── */
@media (max-width: 767px) {
    .wwa-hero {
        min-height: 280px;
        padding: 90px 0 44px;
    }

    .wwa-hero-title {
        font-size: clamp(26px, 8vw, 40px) !important;
    }
}

@media (max-width: 480px) {
    .wwa-hero {
        min-height: 240px;
        padding: 76px 0 36px;
    }
}

/* ── WHO WE ARE — FEATURES MARQUEE ──────────────────────────── */
@media (max-width: 991px) {
    .wwa-features-track .wwa-feature-card {
        width: 270px;
    }

    .wwa-features-marquee {
        padding: 56px 0 0;
    }
}

@media (max-width: 575px) {
    .wwa-features-track .wwa-feature-card {
        width: 230px;
    }

    .wwa-feature-title {
        font-size: 14px;
    }

    .wwa-feature-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .wwa-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ── WHO WE ARE — VISION & MISSION BOXES ────────────────────── */
@media (max-width: 575px) {
    .wwa-vm-box {
        padding: 28px 22px;
    }

    .wwa-vm-box-title {
        font-size: clamp(22px, 6vw, 30px);
    }
}

/* ── LEADERSHIP — EXPERTISE MARQUEE ─────────────────────────── */
/* The card is white-space: nowrap, so a fixed width can't hold the longer
   labels ("International Procurement") and they spill past the border. In a
   marquee the cards needn't match — size each to its content, with a floor. */
@media (max-width: 991px) {
    .ld-exp-card {
        width: auto;
        min-width: 250px;
    }

    .ld-exp-marquee {
        padding: 28px 0 56px;
    }
}

@media (max-width: 767px) {
    .ld-exp-card {
        min-width: 220px;
        padding: 10px 14px;
    }

    .ld-exp-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .ld-exp-card span {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .ld-exp-card {
        min-width: 200px;
    }
}

/* ── LEADERSHIP — BOARD CARDS ON TOUCH ──────────────────────── */
/* The blue overlay and its open button are revealed on :hover, which never
   fires on a touch screen — leaving an invisible tap target and no visible
   way to open a profile. Surface the button permanently instead. */
@media (max-width: 991px) {
    .ld-board-hover {
        inset: 14px 14px auto auto;
        background: none;
        border-radius: 0;
        opacity: 1;
    }

    .ld-board-open {
        width: 44px;
        height: 44px;
        font-size: 17px;
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 15, 50, 0.28);
    }

    /* The card gets wider relative to its height as slides-per-view drops, so
       cover scales these 853x1280 portraits by width and the surplus height
       is trimmed off both ends — taking the top of the head with it. Anchor
       to the top so the crop comes off the bottom instead. */
    .ld-board-img img {
        height: 400px;
        object-position: center top;
    }

    .ld-board-name {
        font-size: 19px;
    }
}

/* ── LEADERSHIP — BIO STATS: single-column on small phones ──── */
@media (max-width: 575px) {
    .ld-bio-stat {
        flex: 1 0 100% !important;
    }
}

/* ── LEADERSHIP — MODAL ─────────────────────────────────────── */
@media (max-width: 480px) {
    .ld-modal-img {
        height: 180px;
    }

    .ld-modal-info {
        padding: 22px 18px;
    }

    .ld-modal-name {
        font-size: 20px;
    }
}

/* ── CSR — IMPACT BAND MARQUEE ───────────────────────────────── */
@media (max-width: 767px) {

    /* The card is white-space: nowrap, so a fixed width can't contain the
       longer labels ("Individuals Supported") and they spill past the
       border. In a marquee the cards needn't be uniform — let each size to
       its own content, with a floor so the short ones don't look cramped. */
    .csr-impact-card {
        width: auto;
        min-width: 190px;
        padding: 12px 16px;
        gap: 12px;
    }

    .csr-ic-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .csr-impact-num {
        font-size: 18px;
    }

    .csr-ic-desc {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .csr-impact-card {
        min-width: 170px;
    }
}

/* ── CSR — INTRO / BODY TEXT ────────────────────────────────── */
@media (max-width: 767px) {
    .csr-body {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ── CSR — ENTITY CARDS ─────────────────────────────────────── */
@media (max-width: 575px) {
    .csr-entity-card {
        padding: 16px;
        gap: 12px;
    }

    .csr-entity-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        flex-shrink: 0;
    }
}

/* ── SUSTAINABILITY — OVERVIEW SECTION ───────────────────────── */
@media (max-width: 767px) {
    .sust-body-text {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ── SUSTAINABILITY — SDG FOCUS GRID (3-col → 2-col → 1-col) ── */
@media (max-width: 767px) {
    .sust-focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .sust-focus-grid {
        grid-template-columns: 1fr;
    }

    .sust-focus-item {
        padding: 12px 14px;
    }

    .sust-focus-text {
        font-size: 13px;
    }
}

/* ── SUSTAINABILITY — PILLAR FEATURE CARDS ───────────────────── */
@media (max-width: 767px) {
    .sust-pcard {
        padding: 28px 24px;
    }

    .sust-pcard-title {
        font-size: 18px;
    }

    .sust-pcard-icon {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 575px) {
    .sust-pcard {
        padding: 22px 18px;
    }

    .sust-pcard-title {
        font-size: 16px;
    }

    .sust-pcard-num {
        font-size: 52px;
    }
}

/* ── SUSTAINABILITY — PILLARS GRID SECTION ───────────────────── */
@media (max-width: 767px) {
    .sust-pillars-grid {
        padding: 56px 0;
    }
}

/* ── SUSTAINABILITY — STACKING CARD TEXT ────────────────────── */
@media (max-width: 480px) {
    .sust-sc-title {
        font-size: 18px;
    }

    .sust-sc-text {
        font-size: 14px;
    }

    .sust-sc-note {
        font-size: 13px;
    }
}

/* ── SUBSIDIARY PAGE — OVERVIEW SECTION ─────────────────────── */
@media (max-width: 575px) {
    .sub-page-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    .sub-logo-panel {
        border-radius: 10px;
    }
}

/* ── SUBSIDIARY PAGE — METRICS / HIGHLIGHTS MARQUEE ─────────── */
@media (max-width: 767px) {
    .sub-mc-card {
        width: 220px;
        padding: 10px 14px;
        gap: 10px;
    }

    .sub-mc-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .sub-mc-value {
        font-size: 17px;
    }

    .sub-mc-label {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .sub-mc-card {
        width: 195px;
    }
}

/* ── SUBSIDIARY PAGE — KEY POINTS: 2-col → 1-col ────────────── */
@media (max-width: 480px) {
    .sub-kp-box {
        flex: 0 0 100% !important;
    }

    .sub-kp-box-text {
        font-size: 13px;
    }
}

/* ── SUBSIDIARY PAGE — FORMAT CARDS ─────────────────────────── */
@media (max-width: 575px) {
    .sub-fmt-card {
        padding: 24px 20px;
    }

    .sub-fmt-name {
        font-size: 17px;
    }
}

/* ── SUBSIDIARY PAGE — FRANCHISE SECTION ────────────────────── */
@media (max-width: 575px) {
    .sub-franchise-desc {
        font-size: 14px;
    }

    .sub-franchise-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ── SUBSIDIARY PAGE — CLOSING CTA ──────────────────────────── */
@media (max-width: 575px) {
    .sub-page-closing {
        padding: 60px 0;
    }

    /* .sub-closing-title sizing comes from the unified section-title system */

    .sub-closing-text {
        font-size: 14px;
    }
}

/* ── SUBSIDIARY PAGE — STATS GRID ───────────────────────────── */
@media (max-width: 480px) {
    .sub-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .sub-stat-value {
        font-size: 18px;
    }

    .sub-stat-label {
        font-size: 11px;
    }
}

/* ── BRANDS / INDEX MARQUEE ──────────────────────────────────── */
@media (max-width: 575px) {
    .brands-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    }
}

/* ── GENERAL SECTION PADDING REDUCTION ON MOBILE ────────────── */
@media (max-width: 767px) {

    .sub-page-overview,
    .sub-page-formats,
    .sub-page-kp,
    .sub-page-franchise,
    .sub-page-closing {
        padding: 56px 0;
    }

    .csr-impact-band {
        padding: 0;
    }

    .sust-overview {
        padding: 56px 0 !important;
    }

    .wwa-features-marquee {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {

    .sub-page-overview,
    .sub-page-formats,
    .sub-page-kp,
    .sub-page-franchise {
        padding: 44px 0;
    }

    .sub-page-closing {
        padding: 48px 0;
    }

    .sust-pillars-grid {
        padding: 44px 0 52px;
    }

    .sust-pillars-stack {
        padding: 28px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INDEX — MOBILE FIX BATCH 2
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL FONT-SIZE TRIM (~1px) ON MOBILE ───────────────── */
@media (max-width: 767px) {
    p {
        font-size: 15px;
    }

    .fs-18 {
        font-size: 17px !important;
    }

    .fs-16 {
        font-size: 15px !important;
    }

    .fs-14 {
        font-size: 13px !important;
    }
}

/* ── 2. TITLE ALIGNMENT: ALL LEFT ON MOBILE ──────────────────── */
@media (max-width: 767px) {

    /* Contact section header */
    #contact .text-align-center {
        text-align: left !important;
    }

    #contact .mb-50px p {
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Governance & Careers overlay text */
    #governance .gov-overlay-content .container,
    #careers .gov-overlay-content .container {
        text-align: left !important;
    }

    #governance .gov-overlay-content .butn-arrow,
    #careers .gov-overlay-content .butn-arrow {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ── 3. GOVERNANCE & CAREERS: AUTO-HEIGHT ON MOBILE ──────────── */
@media (max-width: 767px) {

    #governance .o-hidden,
    #careers .o-hidden {
        height: auto !important;
    }

    /* Pin bg-img to fill the auto-height container */
    #governance .bg-img,
    #careers .bg-img {
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
    }

    /* Switch overlay to relative so container wraps its content */
    #governance .gov-overlay-content,
    #careers .gov-overlay-content {
        position: relative !important;
        padding: 72px 24px !important;
    }

    /* Heading size/spacing comes from the unified section-title system */

    /* Paragraph inside overlay */
    #governance .gov-overlay-content p,
    #careers .gov-overlay-content p {
        font-size: 15px !important;
        max-width: none !important;
        margin: 0 0 24px !important;
    }
}

@media (max-width: 480px) {

    #governance .gov-overlay-content,
    #careers .gov-overlay-content {
        padding: 56px 16px !important;
    }
}

/* ── 3b. AI CTA: AUTO-HEIGHT ON MOBILE ──────────────────────── */
/* .ai-cta is locked to h-500px with o-hidden. Once the copy wraps on a phone
   the stacked play button falls past 500px and gets clipped. Same treatment
   as governance/careers above. */
@media (max-width: 767px) {
    #ai .ai-cta {
        height: auto !important;
    }

    /* Pin bg-img to fill the now auto-height container */
    #ai .bg-img {
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
    }

    /* Relative so the container wraps its content instead of overflowing */
    #ai .gov-overlay-content {
        position: relative !important;
        height: auto !important;
        padding: 64px 24px !important;
    }
}

@media (max-width: 480px) {
    #ai .gov-overlay-content {
        padding: 52px 16px !important;
    }
}

/* ── 3c. CONSISTENT SECTION SPACING ON MOBILE ───────────────── */
/* section defaults to 100px top/bottom, which is desktop rhythm and leaves
   uneven gaps on a phone once individual sections override it. One value for
   all of them; sections carrying pt-0 / pb-0 keep their deliberate zero
   joins, since those utilities are !important. */
@media (max-width: 767px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ── 4. SUSTAINABILITY SECTION: PROPER SPACING ───────────────── */
@media (max-width: 991px) {
    #sustainability {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #sustainability .col-lg-4.d-flex {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {

    /* Padding intentionally omitted — inherits the shared 60px above */

    #sustainability .row.align-items-center.mb-30px {
        margin-bottom: 24px !important;
    }

    #sustainability .col-lg-5 {
        margin-bottom: 20px;
    }

    #sustainability .sust-img-wrap {
        height: 220px;
    }
}

/* Hide the sustainability image on mobile. Targets the whole column — hiding
   just .sust-img-wrap would leave the empty bootstrap column behind, and its
   g-5 gutter would still add a 48px gap above the cards. */
@media (max-width: 767px) {
    #sustainability .row.align-items-stretch>.col-lg-5 {
        display: none;
    }
}

/* ── 5. CONTACT SECTION: PROPER SPACING ──────────────────────── */
/* Child combinators matter here: the form's Name/Email fields are also
   .col-lg-6 siblings, so a loose descendant selector gives the Email field
   this margin on top of its own mb-30px and doubles the gap. */
@media (max-width: 991px) {
    #contact .container>.row>.col-lg-6~.col-lg-6 {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    #contact .mb-50px {
        margin-bottom: 32px !important;
    }

    #contact .container>.row>.col-lg-6~.col-lg-6 {
        margin-top: 32px;
    }

    #contact .box-info {
        padding: 20px !important;
    }

    /* 30px of side padding on a full-width field pushes the placeholder
       a long way in */
    #contact .form2 input,
    #contact .form2 textarea {
        padding: 16px 18px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   COMPLIANCE PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── MAIN (unified text + form) ─────────────────────────────── */
.comp-main {
    padding: 100px 0;
}

.comp-body {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

/* Stacked text items (left column) */
.comp-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 12px;
    border: 1px solid #e8edf5;
}

.comp-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.comp-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.comp-item-text {
    font-size: 13px;
    color: #666;
    line-height: 1.72;
    margin: 0;
}

/* Form card (right column) */

.comp-dd-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 52px 48px;
    border: 1px solid #e4eaf3;
    /* box-shadow: 0 8px 36px rgba(0, 57, 142, 0.07); */
}

.comp-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comp-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.comp-label span {
    color: #e74c3c;
}

.comp-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde5f0;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    background: #fafcff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.comp-input:focus {
    border-color: var(--secondary-blue);
    background: #fff;
    /* box-shadow: 0 0 0 3px rgba(9, 157, 223, 0.12); */
}

.comp-textarea {
    resize: vertical;
    min-height: 120px;
}

.comp-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 36px 24px;
    border: 1px solid #c5d6ed;
    border-radius: 12px;
    background: #f3faff;
    cursor: pointer;
    transition: 0.25s;
    text-align: center;
    user-select: none;
}

/* .comp-upload:hover,
.comp-upload-drag {
    border-color: var(--secondary-blue);
    background: #e8f5ff;
} */

.comp-upload-icon {
    font-size: 38px;
    color: var(--secondary-blue);
    pointer-events: none;
}

.comp-upload-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    pointer-events: none;
}

.comp-upload-hint {
    font-size: 12px;
    color: #a0aec0;
    pointer-events: none;
}

.comp-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.comp-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #d6efff;
}

.comp-file-item i {
    font-size: 18px;
    color: var(--secondary-blue);
    flex-shrink: 0;
}

.comp-file-name {
    flex: 1;
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comp-file-size {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}

button.butn-arrow,
button.comp-submit-btn {
    border: none;
    cursor: pointer;
    display: inline-flex;
    /* .contact button in style.css forces a 30px pill — keep the .butn-arrow shape */
    border-radius: 10px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .comp-main {
        padding: 72px 0;
    }

    .comp-dd-form-wrap {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .comp-main {
        padding: 56px 0;
    }

    .comp-dd-form-wrap {
        padding: 24px 18px;
    }

    /* Form fields go single-column on small screens */
    .comp-main .col-6 {
        width: 100%;
    }
}

/* ===== AI Video Thumbnail + Play Button ===== */
.ai-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    line-height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.ai-video-thumb.h-400px {
    height: 400px;
}

.ai-video-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ai-video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    transition: background 0.25s ease;
    pointer-events: none;
}

.ai-video-thumb:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.ai-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-blue);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 9999;
}

.ai-video-play i {
    margin-left: 3px;
}

.ai-video-thumb:hover .ai-video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

/* ===== AI Video Modal ===== */
.ai-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ai-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.ai-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ai-video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.ai-video-modal.is-open .ai-video-modal__dialog {
    transform: scale(1);
}

.ai-video-modal__frame {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    background: #000;
    line-height: 0;
}

.ai-video-modal__frame video {
    width: 100%;
    height: auto;
    display: block;
}

.ai-video-modal__close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.ai-video-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 575px) {
    .ai-video-modal__close {
        top: 0;
        right: 0;
        transform: translate(40%, -40%);
    }
}


/* ============================================================
   AI HOME CTA — full-screen video (Careers style)
============================================================ */
#ai .ai-cta .gov-overlay-content {
    background: linear-gradient(135deg,
            rgba(0, 57, 142, 0.78) 0%,
            rgba(9, 157, 223, 0.55) 100%);
}

.ai-cta-play {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    font-size: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ai-cta-play i {
    margin-left: 5px;
    position: relative;
    z-index: 2;
}

.ai-cta-play:hover {
    transform: scale(1.08);
    background: var(--secondary-blue);
    color: #fff;
}

.ai-cta-play-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    animation: aiCtaPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes aiCtaPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

@media (max-width: 575px) {
    .ai-cta-play {
        width: 72px;
        height: 72px;
        font-size: 22px;
    }
}


/* ============================================================
   AI PAGE — IT DEPARTMENT COMPACT CARDS
============================================================ */
.ai-it-card {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ai-it-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(0, 40, 90, 0.08);
    border-color: transparent;
}

.ai-it-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    margin-bottom: 16px;
}

.ai-it-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b2940;
    margin-bottom: 10px;
}

.ai-it-card-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6a717a;
    margin: 0;
}

.ai-it-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.ai-it-chips span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(9, 157, 223, 0.08);
    border: 1px solid rgba(9, 157, 223, 0.18);
    padding: 5px 11px;
    border-radius: 50px;
}


/* ============================================================
   AI PAGE — ACCORDION (Commercial impact / foundation / oversight)
============================================================ */
.ai-acc {
    width: 100%;
}

.ai-acc-item {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-acc-item.active {
    border-color: rgba(9, 157, 223, 0.35);
    box-shadow: 0 14px 36px rgba(0, 40, 90, 0.07);
}

.ai-acc-head {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ai-acc-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 57, 142, 0.08), rgba(9, 157, 223, 0.08));
    transition: all 0.3s ease;
}

.ai-acc-item.active .ai-acc-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
}

.ai-acc-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #1b2940;
}

.ai-acc-arrow {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #f1f5fa;
    color: var(--primary-blue);
    transition: background 0.3s ease, color 0.3s ease;
}

/* CSS-drawn plus / minus: horizontal bar always shown, vertical bar hidden when open */
.ai-acc-arrow::before,
.ai-acc-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.ai-acc-arrow::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.ai-acc-arrow::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.ai-acc-item.active .ai-acc-arrow {
    background: var(--secondary-blue);
    color: #fff;
}

.ai-acc-item.active .ai-acc-arrow::after {
    opacity: 0;
}

.ai-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ai-acc-item.active .ai-acc-body {
    max-height: 460px;
}

.ai-acc-body-inner {
    padding: 0 26px 24px 88px;
}

.ai-acc-body-inner p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #5b6168;
    margin: 0;
}


/* ============================================================
   AI PAGE — IT SOLUTIONS FEATURE GRID (no marquee)
============================================================ */
/* Subtitle inside an outcome box + solutions list */
.ai-ob-sub {
    font-size: 14.5px;
    color: #6a717a;
    margin: 0 0 6px;
}

/* Intelligent solutions — bulleted list */
.ai-sol-list {
    list-style: disc;
    margin: 12px 0 0;
    padding-left: 20px;
}

.ai-sol-list li {
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6a717a;
}

.ai-sol-list li::marker {
    color: var(--secondary-blue);
}

.ai-sol-name {
    color: #3a4250;
    /* font-weight: 600; */
}

.ai-sol-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.ai-sol-card {
    position: relative;
    grid-column: span 2;
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 14px;
    padding: 28px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* center the last row (cards 04 & 05) */
/* .ai-sol-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.ai-sol-card:nth-child(5) {
    grid-column: 4 / span 2;
} */

/* 
.ai-sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(0, 40, 90, 0.08);
    border-color: transparent;
} */

.ai-sol-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #dbe3ec;
}

.ai-sol-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    margin-bottom: 18px;
}

.ai-sol-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b2940;
    margin-bottom: 9px;
}

.ai-sol-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #6a717a;
    margin: 0;
}


/* ============================================================
   AI PAGE — OUTCOME FLOW (Decisions / Connected / Impact — no boxes)
============================================================ */
.ai-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ai-flow-item {
    position: relative;
    text-align: center;
    padding: 24px 30px;
}

.ai-flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: #e2e8f1;
}

.ai-flow-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 57, 142, 0.07), rgba(9, 157, 223, 0.1));
}

.ai-flow-title {
    font-size: 17px;
    font-weight: 700;
    color: #1b2940;
    margin-bottom: 10px;
}

.ai-flow-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6a717a;
    margin: 0;
}


/* ============================================================
   AI PAGE — BIGGER PICTURE BANNER
============================================================ */
.ai-bigpic {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 64px 56px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.ai-bigpic-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-bigpic h3 {
    color: #fff;
    font-size: clamp(24px, 3vw, 33px);
    font-weight: 700;
    margin: 0 0 16px;
}

.ai-bigpic p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
    max-width: 840px;
    margin: 0 auto;
}

/* ============================================================
   AI PAGE — IT OUTCOMES (left list) + BIGGER PICTURE BOX (right)
============================================================ */
/* Vertical timeline — stacked, full-width text */
.ai-tl {
    position: relative;
}

.ai-tl-item {
    position: relative;
    padding-left: 72px;
    padding-bottom: 36px;
}

.ai-tl-item:last-child {
    padding-bottom: 0;
}

.ai-tl-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 58px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(var(--secondary-blue), #e3e9f1);
}

.ai-tl-node {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    box-shadow: 0 8px 20px rgba(9, 157, 223, 0.25);
}

.ai-tl-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b2940;
    margin: 6px 0 9px;
}

.ai-tl-text {
    font-size: 14.5px;
    line-height: 1.78;
    color: #6a717a;
    margin: 0;
}

/* Outcome boxes (Decisions / Connected / Real impact) */
.ai-ob {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 16px;
    padding: 32px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* .ai-ob:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 40, 90, 0.09);
    border-color: transparent;
} */

.ai-ob-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    margin-bottom: 20px;
}

.ai-ob-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b2940;
    margin-bottom: 12px;
}

.ai-ob-text {
    font-size: 14px;
    line-height: 1.78;
    color: #6a717a;
    margin: 0;
}

.ai-bp-box {
    border-radius: 20px;
    padding: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    text-align: center;
}

.ai-bp-box-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-bp-box h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 16px;
}

.ai-bp-box p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 17.5px;
    font-weight: 500;
    line-height: 1.75;
    max-width: 900px;
    margin: 0 auto;
}

.ai-bp-box p+p {
    margin-top: 14px;
}


@media (max-width: 991px) {

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

    .ai-sol-card,
    .ai-sol-card:nth-child(4),
    .ai-sol-card:nth-child(5) {
        grid-column: auto;
    }
}

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

    .ai-flow-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .ai-sol-grid {
        grid-template-columns: 1fr;
    }

    .ai-bigbox {
        padding: 28px 22px;
    }

    .ai-acc-body-inner {
        padding: 0 22px 22px;
    }

    .ai-bigpic {
        padding: 44px 26px;
    }

    .ai-bp-box {
        padding: 34px 26px;
    }
}

/* ============================================================
   MOBILE — HEADER LOGO, HAMBURGER & HERO
   ============================================================ */

/* Applies wherever the hamburger is shown (navbar-expand-lg) */
@media (max-width: 991px) {

    /* style.css caps the logo at 80px on mobile — give it more presence */
    .navbar .logo {
        max-width: 130px !important;
    }

    .navbar .logo img {
        width: 100%;
    }

    /* Bootstrap draws a 1px border on the toggler and a ring on focus */
    .navbar-toggler {
        padding: 4px 0 4px 12px;
        border: none !important;
        font-size: 30px;
        line-height: 1;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none;
        box-shadow: none !important;
    }

    .navbar .icon-bar i {
        font-size: 30px;
    }
}

/* Centre the hero content on phones, horizontally and vertically */
@media (max-width: 767px) {
    .hero-style1 {
        align-items: center;
    }

    .hero-style1 .container {
        padding-top: 100px;
        padding-bottom: 80px;
        margin-bottom: 0;
    }

    .hero-style1 .hero-content {
        justify-content: center;
        text-align: center;
    }

    .hero-style1 .hero-content h1,
    .hero-style1 .hero-text {
        text-align: center;
    }

    .hero-style1 .hero-buttons {
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   UNIFIED SECTION TITLES
   ----------------------------------------------------------------------
   Single source of truth for every section heading across the site.
   Markup contract:  <h6 class="subtitle text-uppercase">Eyebrow</h6>
                     <h2 class="main-title">Title text</h2>
   Do NOT add fs-* / mt-* / mb-* utilities or <br> inside a .main-title —
   sizing, spacing and line wrapping are handled entirely here so every
   section reads identically on desktop and mobile.
   ══════════════════════════════════════════════════════════════════════ */

:root {
    /* fluid size: 26px @ 375px → 36px @ 1600px+ */
    --section-title-size: clamp(26px, 1.2vw + 18px, 36px);
    --section-title-weight: 500;
    --section-title-line: 1.25;
    /* em-based so the wrap point is the same character count at every breakpoint */
    --section-title-max: 17em;
    --section-title-gap-top: 20px;
    /* eyebrow → title */
    --section-title-gap-bottom: 20px;
    /* title → body copy */
}

/* Eyebrow above the title: one uniform gap everywhere */
h6.subtitle {
    margin-bottom: 0 !important;
}

h2.main-title,
h4.main-title,
.sub-closing-title,
.sub-placeholder-title {
    font-size: var(--section-title-size) !important;
    font-weight: var(--section-title-weight) !important;
    line-height: var(--section-title-line);
    letter-spacing: normal;
    text-transform: capitalize;
    max-width: var(--section-title-max);
    margin-top: var(--section-title-gap-top) !important;
    margin-bottom: var(--section-title-gap-bottom) !important;
    text-wrap: balance;
}

/* Centred section heads keep their optical centre */
.text-center h2.main-title,
.text-center h4.main-title,
.text-align-center h2.main-title,
.text-align-center h4.main-title,
.justify-content-center.text-center h2.main-title,
.sub-closing-title,
.sub-placeholder-title {
    margin-left: auto;
    margin-right: auto;
}

/* Body copy directly after a title: neutralise any legacy mt-* utility */
h2.main-title + p,
h4.main-title + p {
    margin-top: 0 !important;
}

/* Secondary line under a name-style title (e.g. "Rami Bitar" / role) */
h2.main-title + .main-title-role,
.main-title-role {
    display: block;
    font-size: clamp(16px, 0.5vw + 14px, 20px);
    font-weight: 500;
    line-height: 1.4;
    /* negative top pulls the role up so name + role read as one 8px-spaced unit */
    margin: -12px 0 20px !important;
    opacity: 0.75;
}

h2.main-title + .main-title-role:last-child {
    margin-bottom: 0 !important;
}

/* Hero headlines wrap on their own max-width instead of a hard <br> */
.hero-style1 h1 {
    max-width: 13em;
}

@media (max-width: 991px) {

    h2.main-title,
    h4.main-title,
    .sub-closing-title,
    .sub-placeholder-title {
        max-width: 100%;
    }

    .hero-style1 h1 {
        max-width: 100%;
    }
}
