/*
 * Inter is enqueued in PHP (thoughtstorm-google-fonts).
 * Do not use @import here: it blocks the browser from parsing the rest of this file
 * until fonts.googleapis.com responds, which breaks layout below the header.
 */

@font-face {
    font-family: 'aptos';
    src: url('../webfonts/aptos-regular.ttf');
    font-weight: 400;
}

:root {
    --primary-font: "Inter", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #86166E;
    --secondary-color: #231D8A;
    --text-color: #1C1C1C;
    --white-smoke: #F7F6F4;
}

/*
 * Hash / in-page links: offset for fixed header so section titles are not hidden.
 */
html {
    scroll-padding-top: 96px;
}

@media (min-width: 992px) {
    html {
        scroll-padding-top: 112px;
    }
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

/*
 * Focus: keep mouse clicks clean, always show a visible ring for keyboard (WCAG 2.4.7).
 */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

.thoughtstorm-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.thoughtstorm-skip-link:focus,
.thoughtstorm-skip-link:focus-visible {
    left: 16px;
    top: 16px;
    position: fixed;
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline-offset: 2px;
}

.footer a:focus-visible,
.footer button:focus-visible {
    outline-offset: 4px;
}

.accordion__title:focus-visible {
    outline-offset: 3px;
    border-radius: 4px;
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible,
.swiper-pagination-bullet:focus-visible {
    outline-offset: 4px;
    border-radius: 4px;
}

.thoughtstorm-search-modal__submit:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* Footer Services submenu titles — keyboard focus (tabindex on expandable h3 only). */
.footer__item-link h3:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* Override global <a> 0.3s transition inside mega panels — instant hover/focus on service links etc. */
.header__mega-menu a,
.offcanvas-body .accordion__body--content .mega-menu__item--content a {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

img {
    max-width: 100%;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    background: var(--white-smoke);
    color: var(--black);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: linear-gradient(0deg, #231D8A -1.04%, #86166E 98.96%);
    text-align: center;
    font-size: 16px;
    color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: linear-gradient(0deg, #231D8A -1.04%, #86166E 98.96%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 20px;
    padding-right: 20px;
}

.button {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 14px 27px;
    border-radius: 34px;
    background: linear-gradient(0deg, #0A1C5B -1.04%, #86106E 98.96%);
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 9;
    overflow: hidden;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
}

.button i {
    font-size: 22px;
    margin-left: 10px;
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    background: #0a1c5b;
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 50%;
    background: #0a1c5b;
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.button:hover:after,
.button:hover:before {
    width: 50%;
}

.button:hover {
    color: var(--white);
}

/*=== Header start ===*/

.header {
    position: relative;
    transition: transform 0.4s ease, background-color 0.3s ease;
    -webkit-transition: transform 0.4s ease, background-color 0.3s ease;
    -moz-transition: transform 0.4s ease, background-color 0.3s ease;
    -ms-transition: transform 0.4s ease, background-color 0.3s ease;
    -o-transition: transform 0.4s ease, background-color 0.3s ease;
}

.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    -webkit-transition: transform 0.4s ease;
}

.header--hidden {
    transform: translateY(-100%);
}

.header .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.header__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    max-width: 100%;
}

.header__menu {
    display: flex;
    align-items: center;
}

.header__nav .header__menu-item {
    padding: 24px 0;
    margin: 0 8px;
}

.header__nav .header__menu-item > a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: normal;
    display: inline-flex;
    align-items: center;
    padding: 14px 27px;
    border-radius: 34px;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
}

.header__nav .header__menu-item > a i {
    margin-left: 12px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.header__nav .header__menu-item--has-mega.is-mega-active > a {
    color: var(--white);
    background-color: var(--text-color);
}

.header__nav .header__menu-item--has-mega.is-mega-active > a i {
    transform: rotate(-180deg) translateY(-3px);
    -webkit-transform: rotate(-180deg) translateY(-3px);
    -moz-transform: rotate(-180deg) translateY(-3px);
    -ms-transform: rotate(-180deg) translateY(-3px);
    -o-transform: rotate(-180deg) translateY(-3px);
}

.header__mega-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 9999;
    background-color: var(--bg-white);
    opacity: 1;
    visibility: hidden;
    transition: none;
}

.header__menu-item--has-mega.is-mega-active .header__mega-menu {
    opacity: 1;
    visibility: visible;
}

.header__mega-menu--medium {
    max-width: 1170px;
    left: calc(50% - 585px);
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.mega-menu__title {
    padding: 40px 40px 6px 60px;
}

.mega-menu__title h2 {
    font-size: 14px;
    font-weight: 400;
    color: #18181B;
    line-height: 150%;
}

.mega-menu__row {
    padding: 0 40px 30px;
    border-bottom: 1px solid #EAEAF0;
    display: flex;
}

.mega-menu__column--large {
    width: calc(100% - 300px);
    padding-right: 74px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 6px;
}

.mega-menu__box {
    padding: 16px 20px;
    border-radius: 12px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.mega-menu__box:hover {
    background-color: #F6F6F6;
}

.mega-menu__box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    line-height: 130%;
    margin-bottom: 4px;
}

.mega-menu__box p {
    font-family: 'aptos';
    font-size: 12px;
    font-weight: 400;
    color: #4F4F4F;
    line-height: 150%;
}

.mega-menu__column--small {
    width: 300px;
}

.mega-menu__column--small img {
    max-width: 100%;
    display: block;
    margin-bottom: 17px;
}

.mega-menu__column--small h3 {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    line-height: 130%;
    margin-bottom: 16px;
}

.mega-menu__column--small a {
    font-size: 16px;
    font-weight: 500;
    color: #392DCA;
    display: inline-flex;
    align-items: center;
}

.mega-menu__column--small a i {
    margin-left: 8px;
}

.mega-menu__column--small a:hover {
    color: #020202;
    text-decoration: underline;
}

.mega-menu__bottom {
    padding: 10px 16px;
    max-width: 385px;
    margin: 16px auto 25px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #E8E8E8;
    background: #FFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.mega-menu__bottom img {
    max-width: 100%;
}

.mega-menu__bottom p {
    font-size: 14px;
    font-weight: 400;
    color: #020202;
    padding-left: 8px;
}

.mega-menu__wrapper {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #EAEAF0;
}

.header__mega-menu--large .mega-menu__left {
    width: calc(100% - 344px);
    padding: 40px;
}

.header__mega-menu--large .mega-menu__title {
    padding: 0 0 22px;
}

.mega-menu__item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
}

.mega-menu__item--content h4 {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    line-height: 130%;
    margin-bottom: 24px;
}

.mega-menu__item--content ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #3F3F46;
    line-height: 150%;
    display: inline-block;
    margin-bottom: 15px;
}

.mega-menu__item--content ul li:last-of-type a {
    margin-bottom: 0;
}

.mega-menu__item--content ul.mega-menu__sublist {
    margin: 4px 0 10px;
    padding: 2px 0 2px 12px;
    border-left: 1px solid rgba(217, 217, 217, 0.9);
}

.mega-menu__item--content ul.mega-menu__sublist li a {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 160%;
}

.mega-menu__item--content ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.header__mega-menu--large .mega-menu__right {
    width: 344px;
    padding: 40px;
    background: #F4F6F8;
}

.mega-menu__right--content img {
    width: 100%;
    display: block;
    margin-bottom: 22px;
}

.mega-menu__right--content h2 {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    line-height: 130%;
    margin-bottom: 14px;
}

.mega-menu__right--content p {
    font-size: 16px;
    font-weight: 400;
    color: #18181B;
    line-height: 150%;
    margin-bottom: 16px;
}

.mega-menu__right--content a {
    font-size: 16px;
    font-weight: 500;
    color: #392DCA;
    display: inline-flex;
    align-items: center;
}

.mega-menu__right--content a i {
    margin-left: 8px;
}

.mega-menu__right--content a:hover {
    color: #020202;
    text-decoration: underline;
}

.header__mega-menu__industries {
    padding: 40px;
    border-bottom: 1px solid #EAEAF0;
}

.header__mega-menu__industries .mega-menu__item {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.header__mega-menu__industries .mega-menu__title {
    padding: 0 0 10px;
}

.header__mega-menu__industries .mega-menu__item--content {
    background-image: url(../images/serve-08.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 18px;
    min-height: 220px;
    display: flex;
    align-items: end;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.header__mega-menu__industries .mega-menu__item--content h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    line-height: 130%;
    margin: 0;
}

.header__mega-menu__industries .mega-menu__item--content h4 a {
    color: var(--white);
}

.header__mega-menu__industries .mega-menu__item--content h4 a:hover {
    text-decoration: underline;
}

.header__mega-menu--small {
    max-width: 792px;
    left: auto;
    right: 10%;
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.header__mega-menu--small .mega-menu__column {
    padding: 40px;
    border-bottom: 1px solid #EAEAF0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
}

.header__mega-menu--small .mega-menu__box.mega-menu__box--has-tile-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 140px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__right img {
    cursor: pointer;
}

.header__right ul li {
    position: relative;
}

.header__right ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 160%;
}

.header__right ul li a i {
    margin-left: 10px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.header__right ul li a:hover {
    color: var(--primary-color);
}

.header__right ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    z-index: 99;
}

.header__right ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.header__right ul li:hover a i {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

/* Primary nav + mega menus: keep link color on :visited (suppress browser default blue/purple). */
.header__nav .header__menu-item > a:visited {
    color: var(--text-color);
}

.header__nav .header__menu-item--has-mega.is-mega-active > a:visited {
    color: var(--white);
}

.header__mega-menu .mega-menu__box a:visited {
    color: #020202;
}

.header__mega-menu .mega-menu__column--small a:visited {
    color: #392DCA;
}

.header__mega-menu .mega-menu__item--content ul li a:visited {
    color: #3F3F46;
}

.header__mega-menu .mega-menu__right--content a:visited {
    color: #392DCA;
}

.header__mega-menu__industries .mega-menu__item--content h4 a:visited {
    color: var(--white);
}

.header__right ul li a:visited {
    color: var(--text-color);
}

.header__right ul li ul li a:visited {
    color: var(--text-color);
}

.header__right ul li a:hover:visited,
.header__right ul li a:visited:hover {
    color: var(--primary-color);
}

.header__mega-menu .mega-menu__column--small a:hover:visited,
.header__mega-menu .mega-menu__column--small a:visited:hover {
    color: #020202;
}

.header__mega-menu .mega-menu__item--content ul li a:hover:visited,
.header__mega-menu .mega-menu__item--content ul li a:visited:hover {
    color: var(--primary-color);
}

.header__mega-menu .mega-menu__right--content a:hover:visited,
.header__mega-menu .mega-menu__right--content a:visited:hover {
    color: #020202;
}

.header .button:visited {
    color: var(--white);
}

.header__hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}

.header__hamburger img {
    max-width: 100%;
}

.header__hamburger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 6px;
}

/*=== Offcanvas / Mobile Menu ===*/

/* Above fixed .chat (z-index 99999) and Bootstrap defaults so the drawer is fully usable. */
.offcanvas {
    width: 100%;
    border: none;
    background: var(--bg-white);
    z-index: 100100;
}

.offcanvas-backdrop {
    z-index: 100099;
}

.offcanvas-body {
    padding: 0 0 env(safe-area-inset-bottom, 0);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.offcanvas-body__top {
    flex-shrink: 0;
}

.offcanvas-body__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.offcanvas-body__footer {
    flex-shrink: 0;
}

.offcanvas-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 14px;
}

.offcanvas-logo img {
    max-width: 200px;
}

.offcanvas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}

.offcanvas-close:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 6px;
}

.offcanvas-body .accordion__item {
    background-color: transparent;
    border: none;
}

.offcanvas-body .accordion__title {
    padding: 17.5px 24px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid #000;
    cursor: pointer;
}

.offcanvas-body .accordion__title i:nth-of-type(2) {
    display: none;
}

.offcanvas-body .accordion__item--leaf .offcanvas-nav__top-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17.5px 24px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 130%;
    text-decoration: none;
    border-bottom: 0.5px solid #000;
}

.offcanvas-body .accordion__item--leaf .offcanvas-nav__top-link:hover,
.offcanvas-body .accordion__item--leaf .offcanvas-nav__top-link:focus-visible {
    color: var(--black);
    text-decoration: none;
}

.offcanvas-body .accordion__title.active i:nth-of-type(1) {
    display: none;
}

.offcanvas-body .accordion__title.active i:nth-of-type(2) {
    display: block;
}

/* Remove the dark hairline between the open title row and the gradient panel (matches static HTML flow). */
.offcanvas-body .accordion__title.active {
    border-bottom-color: transparent;
}

.offcanvas-body .accordion__body {
    display: none;
    background: linear-gradient(16deg, #332AC2 3.14%, #231D8A 25.66%, #86166E 109.43%);
    padding: 0 24px 16px;
}

.offcanvas-body .accordion__body .accordion__title {
    color: var(--white);
    font-size: 18px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    padding: 14px 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}

.offcanvas-body .accordion__body .accordion__body {
    background: transparent;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    padding-bottom: 10px;
}

.offcanvas-body .accordion__body > .accordion__body--link {
    padding-top: 16px;
    padding-bottom: 8px;
}

.offcanvas-body .accordion__body--link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-body .accordion__body--link ul li {
    margin: 0;
    padding: 0;
}

.offcanvas-body .accordion__body--link ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.45;
    display: block;
    padding: 8px 0;
    margin-bottom: 4px;
}

.offcanvas-body .offcanvas-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-body .offcanvas-nav__list > li {
    margin: 0;
    padding: 0;
}

.offcanvas-body .offcanvas-nav__list--nested {
    margin: 0;
    padding: 0 0 4px 10px;
}

.offcanvas-body .offcanvas-nav__list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0 8px 12px;
}

.offcanvas-body .offcanvas-nav__list .sub-menu a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    display: block;
    padding: 6px 0;
}

.offcanvas-body .accordion__body--link ul li a:hover {
    text-decoration: underline;
}

.accordion__body--link ul li a:visited {
    color: var(--white);
}

.accordion__body--content .mega-menu__column--small a:visited {
    color: var(--white);
}

.accordion__body .header__mega-menu__industries .mega-menu__item--content h4 a:visited {
    color: var(--white);
}

.accordion__body--content .mega-menu__box a:visited {
    color: var(--white);
}

.accordion__body--button div:nth-of-type(2) a:visited {
    color: var(--text-color);
}

.accordion__body--content {
    padding-bottom: 1px;
}

.accordion__body--content .mega-menu__title {
    padding: 20px 0;
}
.accordion__body .mega-menu__title h2 {
    color: var(--white);
}

.accordion__body--content .mega-menu__row {
    padding: 0;
    border-color: rgba(255, 255, 255, 0.50);
    flex-wrap: wrap;
}

.accordion__body--content .mega-menu__column--large {
    width: 100%;
    padding-right: 0;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 6px;
    margin-bottom: 10px;
}

.accordion__body--content .mega-menu__box h3,
.accordion__body--content .mega-menu__box p {
    color: var(--white);
}

.accordion__body--content .mega-menu__box--active h3 {
    color: #020202;
}

.accordion__body--content .mega-menu__box--active p {
    color: #4F4F4F;
}

.accordion__body--content .mega-menu__column--small {
    width: 100%;
    margin-bottom: 24px;
}

.accordion__body--content .mega-menu__column--small h3,
.accordion__body--content .mega-menu__column--small a {
    color: var(--white);
}

.accordion__body .header__mega-menu__industries {
    padding: 24px 0;
}

.accordion__body .header__mega-menu__industries .mega-menu__item {
    grid-template-columns: repeat(2, 1fr);
}

.accordion__body .header__mega-menu__industries .mega-menu__item--content {
    min-height: 180px;
}

.accordion__body .header__mega-menu__industries .mega-menu__item--content h4 {
    font-size: 16px;
}

.offcanvas-body .mt-auto {
    margin-top: auto;
    padding-bottom: 12px;
}

.offcanvas-body .accordion__body--button {
    padding: 50px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    background-image: url(../images/trust-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.offcanvas-body .accordion__body--button > div {
    display: flex;
    align-items: center;
}

.accordion__body--button {
    padding: 50px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(../images/trust-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.accordion__body--button div:nth-of-type(2) a {
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background: rgba(255, 255, 255, 0.80);
}

.accordion__body--button div:nth-of-type(2) a:hover {
    color: var(--white);
    border-color: #0a1c5b;
}

/*=== chat start ===*/

.chat {
    width: 113px;
    display: flex;
    flex-direction: column;
    padding: 14px 0 17px;
    border-radius: 14px;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 99999;
}

button.chat {
    margin: 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

button.chat:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* TEESA Copilot widget — iframe panel */
.ts-chat-widget__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 22, 0.45);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ts-chat-widget.is-open .ts-chat-widget__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ts-chat-widget__panel {
    position: fixed;
    right: 16px;
    bottom: calc(90px + 140px);
    width: min(400px, calc(100vw - 32px));
    height: min(560px, calc(100vh - 220px));
    max-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    z-index: 100000;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.ts-chat-widget.is-open .ts-chat-widget__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.ts-chat-widget__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(10, 12, 22, 0.08);
    background: linear-gradient(90deg, rgba(35, 29, 138, 0.06) 0%, rgba(134, 22, 110, 0.06) 100%);
}

.ts-chat-widget__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.25;
}

.ts-chat-widget__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.ts-chat-widget__close:hover {
    background: rgba(10, 12, 22, 0.06);
}

.ts-chat-widget__close:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.ts-chat-widget__frame-wrap {
    flex: 1 1 auto;
    min-height: 0;
    background: #f8f8fa;
}

.ts-chat-widget__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

html.ts-chat-widget-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .ts-chat-widget__backdrop,
    .ts-chat-widget__panel {
        transition: none;
    }

    .ts-chat-widget.is-open .ts-chat-widget__panel {
        transform: none;
    }

    .ts-chat-widget__panel {
        transform: none;
    }
}

.chat span {
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    background: linear-gradient(90deg, #231D8A 6.78%, #86166E 58.05%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 7px;
}

.chat img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*=== innovation start ===*/

.main-content {
    overflow: hidden;
}

.innovation {
    padding: 100px 0 120px;
    position: relative;
    z-index: 9;
    background-color: #f9f9f7;
}

.innovation__title {
    text-align: center;
    margin-bottom: 60px;
}

.innovation__title h1,
.innovation__title h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
}

.innovation__title p {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
}

.innovation__item {
    background-image: url(../images/innovation-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.innovation__content {
    padding: 40px 80px;
    border-radius: 10px;
    border: 1px solid rgba(248, 248, 248, 0.20);
    background: rgba(12, 12, 12, 0.50);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 1048px;
    margin: 0 auto 262px;
    text-align: center;
}

.innovation__content h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    line-height: 130%;
    margin-bottom:  25px;
}

.innovation__content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
    margin-bottom: 25px;
}

.innovation__logo {
    position: relative;
    overflow: hidden;
    padding: 25px 60px;
    height: 90px;
    border-radius: 10px;
    border: 1px solid rgba(248, 248, 248, 0.20);
    background: rgba(11, 11, 11, 0.30);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 1048px;
    margin: 0 auto 30px;
}

.brand__slider {
    position: relative;
    height: 100%;
}

.brand__group {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.brand__group.active {
    opacity: 1;
    pointer-events: auto;
}

.brand__group a {
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
}

.brand__group a img {
    max-width: 100%;
}

.brand__group.active a {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.brand__group.active a:nth-child(1) { transition-delay: 0s; }
.brand__group.active a:nth-child(2) { transition-delay: 0.1s; }
.brand__group.active a:nth-child(3) { transition-delay: 0.2s; }
.brand__group.active a:nth-child(4) { transition-delay: 0.3s; }
.brand__group.active a:nth-child(5) { transition-delay: 0.4s; }
.brand__group.active a:nth-child(6) { transition-delay: 0.5s; }
.brand__group.active a:nth-child(7) { transition-delay: 0.6s; }
.brand__group.active a:nth-child(8) { transition-delay: 0.7s; }

.innovation__slider {
    padding-left: 55px;
}

.innovation__card {
    padding: 35px 35px 20px;
    border-radius: 10px;
    border: 1px solid rgba(248, 248, 248, 0.15);
    background: rgba(11, 11, 11, 0.30);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.innovation__card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
    min-height: 164px;
    margin-bottom: 24px;
}

.innovation__card h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
    display: flex;
    align-items: center;
}

.innovation__card h6 img {
    max-width: 100%;
    margin-right: 12px;
}

.innovation__slider .swiper-pagination-progressbar {
    position: relative;
    margin-top: 26px;
    background-color: var(--primary-color);
}

.innovation__slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--bg-white);
}

.innovation__shadow {
    position: absolute;
    width: 100%;
    top: -5%;
    left: 0;
    text-align: center;
    z-index: -1;
}

.innovation__shadow img {
    max-width: 100%;
    animation: rotateShadow 80s linear infinite;
    transform-origin: center center;
    -webkit-animation: rotateShadow 80s linear infinite;
}

@keyframes rotateShadow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.brand__marquee {
    overflow: hidden;
    position: relative;
    padding: 27px 24px;
    margin: 0 auto 24px;
    border-radius: 10px;
    border: 1px solid rgba(248, 248, 248, 0.20);
    background: rgba(11, 11, 11, 0.30);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.brand__marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 12s linear infinite;
    -webkit-animation: marqueeScroll 12s linear infinite;
}

.brand__marquee-track a img {
    height: 28px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*=== impact-area start ===*/

.impact {
    padding: 64px 0 106px;
    background-color: var(--bg-white);
    background-image: url(../images/impact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
}

.impact::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/impact-mobile-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: none;
}

/*=== impact secondary start ===*/

.impact--secondary {
    padding: 64px 0 136px;
    background-color: #f9f9f7;
    background-image: none;
}

.impact--secondary::after {
    width: 0;
    height: 0;
}

.impact-area .serve-title-right {
    width: 700px;
}

.impact__slider .swiper-slide {
    padding: 16px;
    height: auto !important;
    display: flex;
    box-sizing: border-box;
}

.impact__slider .swiper-slide > .impact__item {
    flex: 1 1 auto;
    width: 100%;
    min-height: 520px;
}

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

.impact__item {
    padding: 36px 39px 24px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    background: linear-gradient(220deg, #86106E 10.88%, #18145C 62.93%, #332AC2 112.21%), #FFF;
}

/* .impact__item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/trust-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
} */

.impact__item-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: filter 0.6s ease, transform 0.6s ease, opacity 0.6s ease;
}

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

/* Photography behind headlines: image stacks above the purple gradient; darken it so white type stays legible. */
.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) {
    isolation: isolate;
}

.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) .impact__item-image {
    z-index: 0;
}

.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) .impact__item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(6, 8, 14, 0.28) 0%, rgba(6, 8, 14, 0.14) 45%, rgba(6, 8, 14, 0.48) 100%);
    pointer-events: none;
}

.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) > h3,
.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) > h2,
.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) > .impact__item-content,
.impact__item.impact__item--has-bg-image:not(.impact__item--industry-latest) > .impact__item-button {
    position: relative;
    z-index: 1;
}

.impact__item:hover .impact__item-image {
    filter: blur(6px);
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.impact__item h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
    margin-bottom: 12px;
}

.impact__item h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    line-height: 130%;
    margin-top: 0;
    margin-bottom: 14px;
}

.impact__item--color h3,
.impact__item--color h2,
.impact__item--title-black h3,
.impact__item--title-black h2 {
    color: var(--text-color);
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

.impact__item--title-white h3,
.impact__item--title-white h2 {
    color: var(--white);
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

.impact__item:hover h3,
.impact__item:hover h2 {
    color: var(--white) !important;
}

.impact__item-content {
    transform: translateX(calc(100% + 39px));
    -webkit-transform: translateX(calc(100% + 39px));
    -moz-transform: translateX(calc(100% + 39px));
    -ms-transform: translateX(calc(100% + 39px));
    -o-transform: translateX(calc(100% + 39px));
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    color: rgba(255, 255, 255, 0.96);
}

.impact__item-content :is(p, li, span, div, strong, em, td, th) {
    color: inherit;
}

.impact__item-content p {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    line-height: 150%;
    margin: 30px 0;
}

.impact__item-content p:first-child {
    margin-top: 0;
}

.impact__item-content > :last-child {
    margin-bottom: 0;
}

.impact__item-button {
    margin-top: auto;
    text-align: right;
    transform: translateY(calc(100% + 21px));
    -webkit-transform: translateY(calc(100% + 30px));
    -moz-transform: translateY(calc(100% + 30px));
    -ms-transform: translateY(calc(100% + 30px));
    -o-transform: translateY(calc(100% + 30px));
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
}

.impact__item:hover .impact__item-content,
.impact__item:hover .impact__item-button {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}

.impact__item:focus-within .impact__item-content,
.impact__item:focus-within .impact__item-button {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}

.impact__item:focus-within .impact__item-image {
    filter: blur(6px);
    transform: scale(1.5);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

.impact__item:focus-within h3,
.impact__item:focus-within h2 {
    color: var(--white) !important;
}

.impact--slide-body-visible .impact__item-content,
.impact--slide-body-visible .impact__item-button {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}

.impact--slide-body-visible .impact__item-image {
    filter: none;
    transform: none;
    opacity: 0.58;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.impact--slide-body-visible .impact__item:hover .impact__item-image,
.impact--slide-body-visible .impact__item:focus-within .impact__item-image {
    filter: none;
    transform: none;
    opacity: 0.52;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.impact--slide-body-visible .impact__item--color .impact__item-content p,
.impact--slide-body-visible .impact__item--title-black .impact__item-content p {
    color: rgba(255, 255, 255, 0.95);
}

.impact--slide-body-visible .impact__item--color h3,
.impact--slide-body-visible .impact__item--color h2,
.impact--slide-body-visible .impact__item--title-black h3,
.impact--slide-body-visible .impact__item--title-black h2 {
    color: var(--white);
}

/* Devices without hover (touch): keep excerpt + CTA visible; dim art so type stays readable. */
@media (hover: none) {
    .impact__item .impact__item-content,
    .impact__item .impact__item-button {
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }

    .impact__item .impact__item-image {
        filter: none;
        transform: none;
        opacity: 0.55;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
}

/*=== serve-area start ===*/

.serve-area {
    padding: 236px 0 269px;
}

.serve__title {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 73px;
}

.serve__title-left {
    width: 474px;
    padding: 11px 14px;
}

.serve__title-left h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 130%;
}

.serve__title-right {
    width: 750px;
}

.serve__title-right h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serve-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.serve-item-left {
    width: 455px;
}

.serve-item-left ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    padding-right: 25px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-bottom: 10px;
}

.serve-item-left ul li:last-of-type a {
    margin-bottom: 0;
}

.serve-item-left ul li a div:nth-of-type(1) {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(0deg, #0A1C5B -1.04%, #86106E 98.96%);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.serve-item-left ul li a div:nth-of-type(2) {
    width: calc(100% - 56px);
    padding-left: 19px;
}

.serve-item-left ul li a div h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
}

.serve-item-left ul li.ui-state-active a {
    background: linear-gradient(106deg, #392DCA 6.1%, #231D8A 14.28%, #86166E 111.28%), #FFF;
}

.serve-item-left ul li.ui-state-active a div:nth-of-type(1) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.serve-item-left ul li.ui-state-active a h2 {
    color: var(--white);
}

.serve-item-right {
    width: calc(100% - 455px);
    padding-left: 19px;
}

.serve-item-right-inner {
    background-image: url(../images/serve-08.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 22px 19px;
    padding-top: 602px;
    border-radius: 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.serve-item-right-inner-second {
    padding: 39px 42px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.flex-left {
    width: 70%;

}

.flex-right {
    width: 30%;
}
/*
.serve-item-right-inner-second div:nth-of-type(1) {
    width: 710px;
}
*/
.serve-item-right-inner-second p {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
}

.serve-item-right-inner-second p strong {
    display: block;
}

.serve-area .accordion__item {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    margin-bottom: 16px;
}

.serve-area .accordion__title {
    padding: 26px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.serve-area .accordion__title.active {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(106deg, #392DCA 6.1%, #231D8A 14.28%, #86166E 111.28%), #FFF;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}

.serve-area .accordion__title div:nth-of-type(1) {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(0deg, #0A1C5B -1.04%, #86106E 98.96%);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.serve-area .accordion__title div:nth-of-type(2) {
    width: calc(100% - 56px);
    padding-left: 19px;
}

.serve-area .accordion__title.active div:nth-of-type(1) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.serve-area .accordion__title h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
}

.serve-area .accordion__title.active h2 {
    color: var(--white);
}

.serve-area .accordion__body {
    padding: 20px 24px 40px;
    border-radius: 0 0 20px 20px;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    display: none;
}

.serve-area .accordion__body img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.serve-area .accordion__body p {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
    margin-bottom: 20px;
}

/*=== partner-area start ===*/

.partner-area {
    background-image: url(../images/partner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 144px 0 95px;
}

.partner-item h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    line-height: 130%;
    text-shadow: 0 4px 7.5px rgba(0, 0, 0, 0.55);
    text-align: center;
    margin-bottom: 60px;
}

.partner-item .innovation__logo {
    border-radius: 20px;
    border: 1px solid rgba(248, 248, 248, 0.30);
    background: rgba(40, 56, 27, 0.30);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 98px;
    min-height: 142px;
}

.partner-item ul li a img {
    max-width: 100%;
}

.partner-item-button {
    text-align: center;
}

.partner-item-button a.button {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
}

.partner-item-button a.button:hover {
    border-color: transparent;
}

.partner-item .brand__marquee {
    padding: 15px 24px;
    margin-bottom: 60px;
}

.partner-item .brand__marquee-track a img {
    max-width: 60px;
}

/*=== insights-area start ===*/

.insights-area {
    padding: 171px 0 78px;
}

.impact__slider {
    padding-left: calc((100% - 1564px) / 2);
    position: relative;
    z-index: 99;
}

.insights-item {
    padding: 60px 50px;
    border-bottom: 1px solid #000;
    min-height: 285px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

/* Equal-height slides in Latest Insights carousels (homepage + single post). */
.insights-area .mySwiper.swiper .swiper-wrapper {
    align-items: stretch;
}

.insights-area .mySwiper .swiper-slide {
    height: auto !important;
    display: flex;
    box-sizing: border-box;
}

.insights-area .mySwiper .swiper-slide > .insights-item {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    box-sizing: border-box;
}

.insights-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
    margin-bottom: 19px;
}

.insights-item h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
}

.insights-item h2 i {
    color: var(--primary-color);
    margin-left: 8px;
}

.insights-item:hover {
    background: linear-gradient(220deg, #86106E 10.88%, #18145C 62.93%, #332AC2 112.21%), #FFF;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    border-bottom: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.insights-item:hover h3,
.insights-item:hover h2,
.insights-item:hover h2 i {
    color: var(--white);
}

.impact__slider-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1564px;
    padding-right: 20px;
    padding-left: 16px;
}

.impact__slider-pagination-left {
    margin-top: 14px;
}

.impact__slider-pagination-left a {
    color: var(--text-color);
    background: transparent;
    border: 1px solid var(--text-color);
}

.impact__slider-pagination-left a:hover {
    border-color: transparent;
}

.impact__slider-pagination-right {
    display: flex;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: transparent;
    width: auto;
    position: inherit;
    height: 48px;
    margin-top: 14px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next i {
    font-size: 16px;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 34px;
    border: 1px solid #000;
    background: var(--TS-Gradient, linear-gradient(180deg, #231D8A 0%, #86166E 100%));
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

.swiper-button-next i:hover {
    color: var(--black);
    background: transparent;
}

.swiper-button-prev {
    margin-right: 14px;
}

.swiper-button-prev i {
    font-size: 16px;
    color: var(--black);
    width: 136px;
    height: 48px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-radius: 34px;
    border: 1px solid #5A5A5A;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    position: relative;
    z-index: 9;
}

.swiper-button-prev i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--TS-Gradient, linear-gradient(180deg, #231D8A 0%, #86166E 100%));
    z-index: -1;
    border-radius: 34px;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    opacity: 0;
}

.swiper-button-prev:hover i {
    color: var(--white);
    border-color: transparent;
}

.swiper-button-prev:hover i::after {
    opacity: 1;
}

/*=== trust-area start ===*/

.trust-area {
    padding: 68px 0 79px;
}

.trust-title {
    text-align: center;
    margin-bottom: 60px;
}

.trust-title h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    max-width: 1244px;
    margin: 0 auto;
}

.trust-item-inner {
    padding: 68px 35px 79px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
}

.trust-item-inner img {
    max-width: 100%;
    display: block;
    margin: 0 auto 29px;
}

.trust-item-inner h2 {
    font-size: 24px;
    font-weight: 500;
    color: #161616;
    line-height: 130%;
    margin-bottom: 29px;
}

.trust-item-inner p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 150%;
}

.trust-item-inner p strong {
    font-weight: 700;
}

/*=== build start ===*/

.build {
    padding: 74px 0 98px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.build__item {
    padding: 52px 33px;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
}

.build__item-left {
    width: calc(100% - 862px);
}

.build__item-left h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.build__item-right {
    width: 862px;
}

.build__item-right-box {
    padding: 30px 50px;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.build__item-right-content {
    width: 448px;
}

.build__item-right-content h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 130%;
    margin-bottom: 23px;
}

.build__item-right-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 150%;
}

.build__shadow {
    position: absolute;
    width: 1167px;
    right: -180px;
    bottom: -500px;
    z-index: -1;
}

/*=== footer start ===*/

.footer {
    padding-top: 66px;
    background: linear-gradient(199deg, #86106E 1.36%, #18145C 36.86%, #211B7D 68.98%, #332AC2 111.92%);
}

.footer__item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 60px;
    padding-bottom: 30px;
}

.footer__logo {
    margin-bottom: 48px;
}

.footer__logo a img {
    max-width: 100%;
}

.footer__item-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
    min-height: 223px;
    margin-bottom: 48px;
}

.footer__social-icon ul {
    display: flex;
    align-items: center;
}

.footer__social-icon ul li a {
    font-size: 16px;
    color: var(--white);
    margin-right: 35px;
}

.footer__social-icon ul li a:hover {
    opacity: 0.8;
}

.footer__item-sub-title {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--white);
}

.footer__item-sub-title h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Parent columns (Services, Company …) stay expanded — hide +/- triggers on headings */
.footer__item-sub-title h2 span {
    display: none;
}

.footer__item-sub-title--no-panel h2 span {
    display: none !important;
}

.footer__item-sub-title h2 i {
    font-size: 22px;
}

.footer__item-sub-title h2 i:nth-of-type(2) {
    display: none;
}

.footer__item-link h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 250%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__item-link h3:has(span) {
    cursor: pointer;
}

/* Services column: expandable groups rendered as h3 + ul */
.footer__item-content:not(.footer__item-content--secondary) .footer__item-link h3 + ul {
    display: none;
}

.footer__item-content:not(.footer__item-content--secondary) .footer__item-link h3.active + ul {
    display: block;
}

/* Company / Industries / Careers: flat link lists remain visible below each heading */
.footer__item-content--secondary .footer__item-link > ul {
    display: block;
}

.footer__item-link h3 span {
    display: none;
}

.footer__item-link h3:has(span) span {
    display: inline-flex;
    align-items: center;
}

.footer__item-link h3 i {
    font-size: 18px;
}

.footer__item-link h3 i:nth-of-type(2) {
    display: none;
}

.footer__item-link h3.active i:nth-of-type(1) {
    display: none;
}

.footer__item-link h3.active i:nth-of-type(2) {
    display: block;
}

.footer__item-link ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 250%;
}

.footer__item-link ul.footer__service-sublist--nested {
	margin-top: 0.35em;
	margin-bottom: 0.65em;
	padding-left: 1rem;
}

.footer__item-link ul.footer__service-sublist--nested li a {
	font-size: 15px;
	line-height: 220%;
	opacity: 0.95;
}

.footer__item-sub-title--padding {
    padding-top: 56px;
}

.footer__bottom {
    padding: 37px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 150%;
}

.footer__bottom p a {
    color: var(--white);
}

.footer__bottom p span {
    margin: 0 4px;
}

.footer__bottom p a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer__item-link ul li a:visited,
.footer__bottom p a:visited {
    color: var(--white);
}

.footer__item-link ul li a:visited:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer__bottom p a:visited:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/*=== about page start ===*/

.strategy {
    padding: 35px 0 100px;
}

.strategy__breadcrumb-list {
    display: flex;
    align-items: center;
}

.strategy__breadcrumb-item {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    margin-right: 8px;
}

.strategy__breadcrumb-link,
.strategy__breadcrumb-item span {
    color: #697077;
}

.strategy__breadcrumb-link:hover {
    color: var(--black);
}

.strategy__breadcrumb-link:visited {
    color: #697077;
}

.strategy__breadcrumb-link:visited:hover {
    color: var(--black);
}

.strategy__breadcrumb {
    width: 100%;
    flex: 0 0 auto;
}

.strategy__wrapper {
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.strategy__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px 40px;
    width: 100%;
}

.strategy__wrapper-title {
    flex: 1 1 0;
    min-width: 280px;
}

.strategy__wrapper-title--h2 {
    max-width: 624px;
}

/* Default width cap only; flex-basis is set per layout below */
.strategy__wrapper-text {
    width: auto;
    max-width: 475px;
}

/* Horizontal row (wrapper > .strategy__row > …): main axis is width — basis is a width */
.strategy__row .strategy__wrapper-text {
    flex: 0 1 475px;
}

/* Stacked hero (wrapper > title + text, no row): main axis is height — do not use px basis or it becomes min-height */
.strategy__wrapper > .strategy__wrapper-title {
    flex: 0 0 auto;
    width: 100%;
}

.strategy__wrapper > .strategy__wrapper-text {
    flex: 0 0 auto;
    align-self: flex-start;
}

.strategy__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy__eyebrow {
    flex: 1 0 100%;
    order: -1;
    margin: 0 0 12px;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.strategy__eyebrow--professional {
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy__row--case-study-archive {
    flex-wrap: nowrap;
    align-items: flex-start;
}

.strategy__row--case-study-archive .strategy__wrapper-title {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

.strategy__row--case-study-archive .strategy__wrapper-text {
    flex: 0 0 auto;
    width: auto;
    max-width: 475px;
}

@media screen and (max-width: 991px) {

    .strategy__row--case-study-archive {
        flex-wrap: wrap;
    }

    .strategy__row--case-study-archive .strategy__wrapper-text {
        max-width: none;
    }
}

.strategy__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.strategy:has(+ .partners.ecosystem) {
    padding-bottom: 48px;
}

.strategy:has(+ .job-listings) {
    padding-bottom: 48px;
}

.strategy:has(+ .job-listings:has(#job-listings-container:empty)) {
    padding-bottom: 40px;
}

/* Join Us page hero — align with static join-us.html / Figma (breadcrumb, then stacked headline + intro). */
.strategy--join-us .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.strategy--join-us .strategy__wrapper--join-us {
    padding-top: 0;
    gap: 32px;
}

.strategy--join-us .strategy__wrapper--join-us .strategy__wrapper-title {
    flex: none;
    width: 100%;
    max-width: 902px;
    min-width: 0;
}

.strategy--join-us .strategy__wrapper--join-us .strategy__wrapper-text {
    flex: none;
    width: 100%;
    max-width: 902px;
}

/* ATS/API mount: no placeholder gap until jobs are injected (discuss integration separately). */
.job-listings:has(#job-listings-container:empty) {
    padding: 0;
    margin: 0;
    min-height: 0;
}

/* Blog / Services / Industries archives: tighten gap between hero header and card grid */
.strategy:has(+ .category-area-sa) {
    padding-bottom: 24px;
}

.strategy + .category-area-sa {
    padding-top: 32px;
}

/* Join Us — careers listings mount (join-us.html) */
.job-listings {
    padding: 0 0 40px;
}

.job-listings__wrapper {
    position: relative;
}

/*=== stats start ===*/

.stats {
    background-image: url(../images/stats-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 56px 0 118px;
}

/* Optional ACF-driven background (image or video) — overrides variant BG */
.stats.stats--custom-bg {
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.stats.stats--custom-bg .stats__bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stats.stats--custom-bg .stats__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stats.stats--custom-bg .stats__bg-layer--image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.stats__wrapper {
    padding: 25px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    border-radius: 20px;
    border: 1px solid rgba(248, 248, 248, 0.30);
    background: rgba(40, 56, 27, 0.60);
    backdrop-filter: blur(5px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.stats__wrapper--few {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px 32px;
}

.stats__wrapper--few .stats__item {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 240px;
}

.stats__item {
    text-align: center;
}

.stats__item-number {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}

.stats__item-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

/*=== about start ===*/

.about {
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    background-color: var(--bg-white);
    padding: 140px 0 100px;
    z-index: 9;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/about-mobile-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    display: none;
}

.about__wrapper {
    border-radius: 20px;
    background: linear-gradient(318deg, rgba(255, 255, 255, 0.70) 37%, rgba(255, 255, 255, 0.90) 70.65%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    position: relative;
    z-index: 9;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about__content {
    padding: 70px 80px 40px;
}

.about__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.about__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.about__text strong {
    font-weight: 700;
}

.about__body .about__text a {
    display: inline;
    color: inherit;
    font-weight: inherit;
}

.about__body p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.about__body p strong {
    font-weight: 700;
}

.about__founder-wrapper {
    background-image: url(../images/about-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    padding: 50px 80px 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0;
}

.about__founder {
    padding: 26px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-column-gap: 30px;
    grid-row-gap: 24px;
    border-radius: 20px;
    background: linear-gradient(318deg, rgba(255, 255, 255, 0.70) 37%, rgba(255, 255, 255, 0.90) 70.65%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about__founder-image {
    line-height: 0;
}

.about__founder-image a {
    display: inline-block;
    max-width: 100%;
}

.about__founder-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    vertical-align: middle;
}

.about__founder-name {
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 8px;
}

.about__founder-name a,
.about__founder-name a:hover,
.about__founder-name a:focus {
    color: inherit;
    text-decoration: none;
}

.about__founder-name a:hover {
    text-decoration: underline;
}

.about__founder-role {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

/*=== vision start ===*/

.vision {
    padding: 130px 0;
    background: linear-gradient(203deg, #86106E 4.06%, #18145C 33.22%, #211B7D 75.38%, #332AC2 105.38%);
}

.vision__header {
    text-align: center;
    margin-bottom: 60px;
}

.vision__title {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
}

.vision__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 24px;
}

.vision__item {
    padding: 60px 30px 50px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(156, 20, 128, 0.30) -46.01%, rgba(255, 255, 255, 0.00) 93.73%);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.vision__item-title {
    color: var(--white);
    font-size: 30px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
}

.vision__item-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.vision__item-text p:last-child {
    margin-bottom: 0;
}

.vision__item-text p {
    margin: 0 0 1.15em;
}

.vision--secondary .vision__item-text p {
    color: inherit;
}

.vision--secondary .vision__item-text {
    text-align: left;
}

.vision--secondary .vision__item-text ul {
    margin: 0.85em 0 0;
    padding-left: 1.2em;
    list-style: disc;
}

.vision--secondary .vision__item-text ul > li {
    margin-bottom: 0.5em;
    padding-left: 0.25em;
}

.vision--secondary .vision__item-text ul > li:last-child {
    margin-bottom: 0;
}

.value__wrapper {
    padding-top: 120px;
}

.value__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
}

.value__item-bar {
    width: 35px;
    height: 8px;
    display: block;
    background: rgba(255, 255, 255, 0.50);
    margin-bottom: 30px;
}

.value__item--border {
    position: relative;
}

.value__item--border::after {
    content: '';
    position: absolute;
    width: calc(200% + 30px);
    height: 1px;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.50);
    display: none;
}

/*=== approach start ===*/

.approach {
    padding: 150px 0;
}

.approach__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 40px;
}

.approach__text {
    color: var(--text-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 894px;
    margin: 0 auto;
}

.approach__text p {
    margin: 0 0 1.1em;
}

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

/*=== success start ===*/

.success {
    background-image: url(../images/success-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 94px 0 150px;
}

.success__content {
    display: flex;
    flex-wrap: wrap;
}

.success__info {
    background-image: url(../images/success-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 71px 47px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
    width: 49%;
}

.success__info-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
}

.success__list-wrapper {
    width: 51%;
    padding: 55px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0;
}

.success__list-item {
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 21px;
}

.success__list-icon {
    max-width: 100%;
    margin-right: 28px;
}

.success__list-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.success__list-lead {
    margin: 0 0 0.35em;
    font-size: 20px;
    line-height: 130%;
}

.success__list-rich {
    font-size: 20px;
    line-height: 130%;
}

.success__list-rich p {
    margin: 0 0 0.5em;
}

.success__list-rich p:last-child {
    margin-bottom: 0;
}

/* Why Us — hero split card (public-sector style) */
.success--hero-split {
    background: #e9e9ed;
    padding: 72px 0 96px;
    background-image: none;
}

.success--hero-split .container {
    max-width: 1140px;
}

.success-hero-split__card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(35, 29, 138, 0.12),
        0 10px 28px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.success-hero-split__gradient {
    flex: 1 1 38%;
    min-width: 280px;
    position: relative;
    padding: 52px 44px 52px 48px;
    background: linear-gradient(128deg, #162565 0%, #2a1f7a 38%, #5c2878 72%, #8a3488 100%);
    overflow: hidden;
}

/* Optional photo behind hero-split title column (set via --success-hero-split-photo from ACF). */
.success-hero-split__gradient--photo {
    background-image:
        linear-gradient(
            128deg,
            rgba(22, 37, 101, 0.9) 0%,
            rgba(42, 31, 122, 0.88) 38%,
            rgba(92, 40, 120, 0.86) 72%,
            rgba(138, 52, 136, 0.88) 100%
        ),
        var(--success-hero-split-photo);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.success-hero-split__gradient::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 10%;
    width: 85%;
    height: 140%;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 35%, transparent 60%);
    transform: rotate(-18deg);
    pointer-events: none;
}

.success-hero-split__eyebrow {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px;
}

.success-hero-split__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 500;
    line-height: 1.28;
    max-width: 18ch;
}

.success-hero-split__content {
    flex: 1 1 52%;
    min-width: 300px;
    padding: 48px 48px 52px 40px;
    background: #fff;
}

.success-hero-split__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.success-hero-split__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.success-hero-split__item:last-child {
    margin-bottom: 0;
}

.success-hero-split__check {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(165deg, #4e38a8 0%, #6a2488 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 3px;
    box-shadow: 0 4px 12px rgba(80, 45, 140, 0.35);
}

.success-hero-split__body {
    flex: 1 1 auto;
}

.success-hero-split__body p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #1f1f24;
}

.success-hero-split__lead {
    font-weight: 700;
}

.success-hero-split__lead-line {
    margin: 0 0 0.4em;
}

.success-hero-split__rich {
    font-size: 17px;
    line-height: 1.55;
    color: #1f1f24;
}

.success-hero-split__rich p {
    margin: 0 0 0.65em;
}

.success-hero-split__rich p:last-child {
    margin-bottom: 0;
}

.success-hero-split__rich ul {
    margin: 0.5em 0;
    padding-left: 1.25rem;
}

@media (max-width: 767px) {
    .success--hero-split {
        padding: 48px 0 64px;
    }

    .success-hero-split__card {
        border-radius: 14px;
    }

    .success-hero-split__gradient {
        padding: 40px 32px 36px;
        min-height: 0;
    }

    .success-hero-split__title {
        max-width: none;
    }

    .success-hero-split__content {
        padding: 36px 28px 40px;
    }

    .success-hero-split__body p {
        font-size: 16px;
    }
}

/*=== ecosystem start ===*/

.ecosystem {
    background-image: url(../images/ecosystem-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    padding: 126px 0 171px;
    position: relative;
    z-index: 9;
}

.ecosystem__shadow {
    position: absolute;
    top: 150px;
    right: 0;
    z-index: -1;
}

.ecosystem__shadow img {
    max-width: 100%;
}

.ecosystem__grid {
    padding-top: 315px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 10px;
}

/* Our Partners page only: strategy hero sits above; skip huge overlap padding */
.partners.ecosystem {
    padding: 32px 0 120px;
}

.partners.ecosystem .ecosystem__shadow {
    top: 0;
}

.partners.ecosystem .ecosystem__grid {
    padding-top: 48px;
}

.ecosystem__item {
    padding: 40px;
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: 2px 13px 39.7px 0 rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.ecosystem__item-image {
    margin-bottom: 26px;
}

.ecosystem__item-image img {
    max-width: 171px;
}

.ecosystem__item-bar {
    width: 35px;
    height: 8px;
    display: block;
    background: linear-gradient(90deg, #231D8A 11.43%, #86166E 80%);
}

.ecosystem__item-title {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    padding: 26px 0;
    border-top: 1px solid #C5C5C5;
}

.ecosystem__item-text {
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    min-height: 140px;
    margin-bottom: 26px;
}

.ecosystem__item-text p {
    margin: 0 0 1.05em;
}

.ecosystem__item-text p:last-child {
    margin-bottom: 0;
}

.ecosystem__item-link {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 10.2px 12px 10.2px 24px;
    border-radius: 34px;
    border: 1px solid #5A5A5A;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
}

.ecosystem__item-link img {
    max-width: 100%;
    margin-left: 14px;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
}

.ecosystem__item-link:hover {
    color: var(--white);
    background-color: var(--black);
}

.ecosystem__item-link:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(7487%) hue-rotate(36deg) brightness(132%) contrast(103%);
}

/*=== contact page start ===*/

.contact-section {
    padding-bottom: 120px;
    overflow-x: clip;
}

.contact-section .contact__wrapper {
    margin-bottom: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    word-wrap: normal !important;
    border: 0;
}

.contact__notice {
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 8px;
}

.contact__notice--success {
    color: #0d4f2f;
    background: #e8f6ef;
    border: 1px solid #b9e0cb;
}

.contact__notice--error {
    color: #6f1309;
    background: #fff0ee;
    border: 1px solid #f5c9c4;
}

.contact__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.contact__row--single {
    grid-template-columns: minmax(0, 1fr);
}

.contact__btn:focus-visible {
    outline: 2px solid #86106e;
    outline-offset: 3px;
}

.contact__btn:focus:not(:focus-visible) {
    outline: none;
}

.strategy--secondary .strategy__wrapper-text {
    flex-basis: 702px;
    max-width: 702px;
}

.contact__wrapper {
    padding: 100px 120px 96px;
    margin-top: 80px;
    position: relative;
    z-index: 9;
}

.contact__wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: var(--white-smoke) url(../images/contactus-bg.jpg) no-repeat center center;
    background-size: cover;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.10);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: -1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 569fr 361fr;
}

.contact__form-side {
    padding: 60px 50px;
    border-radius: 20px 0 0 20px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-border-radius: 20px 0 0 20px;
    -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
    -o-border-radius: 20px 0 0 20px;
}

.contact__title {
    color: var(--black);
    font-size: 30px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
}

.contact__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.contact__field {
    margin-bottom: 30px;
}

.contact__label {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: block;
    margin: 0 0 12px;
}

.contact__input,
.contact__select,
.contact__textarea {
    color: #434343;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid #757575;
    background: var(--bg-white);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.contact__input::placeholder {
    color: #434343;
    opacity: 1;
}

.contact__select {
    appearance: none;
    background-image: url(../images/contact-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: calc(100% - 16px) center;
}

.contact__textarea {
    padding: 10px 16px;
    min-height: 128px;
}

.contact__captcha img {
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
}

.contact__btn {
    border: none;
}

.contact__info-panel {
    padding: 70px 50px;
    border-radius: 0 20px 20px 0;
    background: var(--TS-Gradient, linear-gradient(180deg, #231D8A 0%, #86166E 100%));
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0;
}

.contact__office {
    margin-bottom: 30px;
}

.contact__office-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}

.contact__office-cities,
.contact__office-address,
.contact__office-phone a,
.contact__office-email a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contact__office-cities {
    margin-bottom: 15px;
}

.contact__office-address {
    margin-bottom: 20px;
}

.contact__office-phone a:hover,
.contact__office-email a:hover {
    color: var(--white);
}

.contact__captcha {
	margin-bottom: 30px;
}

/* Contact Form 7 embed (same section layout / classes as native form) */
.contact-section .contact__form.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.contact-section .contact__form.wpcf7-form .wpcf7-response-output {
	font-size: 15px;
	line-height: 1.45;
	margin: 0 0 20px;
	padding: 12px 16px;
	border-radius: 8px;
	border-width: 1px;
}

.contact-section .contact__form.wpcf7-form.sent .wpcf7-response-output {
	color: #0d4f2f;
	background: #e8f6ef;
	border-color: #b9e0cb;
}

.contact-section .contact__form.wpcf7-form.invalid .wpcf7-response-output,
.contact-section .contact__form.wpcf7-form.failed .wpcf7-response-output,
.contact-section .contact__form.wpcf7-form.aborted .wpcf7-response-output {
	color: #6f1309;
	background: #fff0ee;
	border-color: #f5c9c4;
}

.contact-section .contact__form.wpcf7-form .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 14px;
}

.contact-section .contact__form.wpcf7-form .ajax-loader,
.contact-section .contact__form.wpcf7-form .wpcf7-spinner {
	margin-left: 12px;
	vertical-align: middle;
}

.contact-grid-two {
	display: grid;
	grid-template-columns: 361fr 569fr;
}

.contact-grid-two .contact__info-panel {
	border-radius: 20px 0 0 20px;
	-webkit-border-radius: 20px 0 0 20px;
	-moz-border-radius: 20px 0 0 20px;
	-ms-border-radius: 20px 0 0 20px;
	-o-border-radius: 20px 0 0 20px;
}
.contact-grid-two .contact__form-side {
	border-radius: 0 20px 20px 0;
	-webkit-border-radius: 0 20px 20px 0;
	-moz-border-radius: 0 20px 20px 0;
	-ms-border-radius: 0 20px 20px 0;
	-o-border-radius: 0 20px 20px 0;
}

.contact-title-h6 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 15px;
}

.contact__office-text-sa {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.contact__office-title-sa {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}

.referral-eligibility-list {
    list-style: disc;
    padding-left: 30px;
}
.referral-eligibility-list-item {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.contact__office-text-sa .contact__office-email {
    color: #fff;
    text-decoration: underline;
}

.custom-checkbox-label {
    display: flex;
    align-items: baseline;
    gap: 21px;
    cursor: pointer;
}
.checkbox-check-input {
    display: none;
}
.custom-check-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border: 1px solid #000;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-check-box i {
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
.checkbox-check-input:checked ~ .custom-checkbox-label .custom-check-box i {
   visibility: visible;
   opacity: 1;
}

.custom-checkbox-container {
    margin-bottom: 20px;
}

.stats-two {
    background: #172415;
    padding-top: 104px;
    padding-bottom: 108px;
}

/* leadership area style  */

.leadership-area {
    padding-top: 108px;
    padding-bottom: 184px;
    background: #F7F6F4;
    position: relative;
    z-index: 2;
}
.leadership-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    object-fit: cover;
    z-index: -1;
}
.leadership-wrapper-sa {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.leadership-title {
	font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
	background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	min-height: 67px;
}

.leader-list-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.single-leader-item {
    width: calc((100% - 16px) / 3);
    display: flex;
    padding: 40px 35px 60px 35px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background: linear-gradient(318deg, rgba(255, 255, 255, 0.70) 37%, rgba(255, 255, 255, 0.90) 70.65%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    color: #000000;
    transition: 0.3s;
}
.single-leader-item:hover {
    background: linear-gradient(203deg, #86106E 4.06%, #18145C 33.22%, #211B7D 75.38%, #332AC2 105.38%), linear-gradient(318deg, rgba(255, 255, 255, 0.70) 37%, rgba(255, 255, 255, 0.90) 70.65%);
    color: #fff;
}
.leader-profile-image {
    width: 210px;
    height: 210px;
    aspect-ratio: 1/1;
    background: #FBFBFB;
    border-radius: 50%;
    overflow: hidden;
}
.leader-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info-sa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.leader-name {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.leader-role {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    min-height: 66px;
}
.leader-bio {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.leader-view-more-btn {
    display: inline-flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 34px;
    border: 1px solid #1C1C1C;
    color: #1C1C1C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s;
}
.single-leader-item:hover .leader-view-more-btn {
    color: #fff;
    border-color: #fff;
}
.leader-view-more-btn:hover {
    background: #86166E;
    color: #fff;
    border-color: #86166E !important;
}

/* leadership area end  */
/* let's talk area style  */

.lets-talk-area {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: linear-gradient(203deg, #86106E 4.06%, #18145C 33.22%, #211B7D 75.38%, #332AC2 105.38%);
    color: #fff;
}

.lets-talk-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}
.lets-talk-wp-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.lets-talk-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.lets-talk-text {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 894px;
}

.lets-talk-action-btn {
    display: inline-flex;
    display: flex;
    height: 48px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 34px;
    border: 1px solid #FFF;
    background: linear-gradient(0deg, rgba(28, 28, 28, 0.40) 0%, rgba(28, 28, 28, 0.40) 100%);
    color: #fff;
}
.lets-talk-action-btn:hover {
    color: #fff;
    background: #0a1c5b !important;
    border-color: #0a1c5b;
}

/* Optional full-bleed photo + brand scrim (Figma-aligned) */
.lets-talk--custom-bg {
    background-color: #18145c;
    background-image: none;
}

.lets-talk--custom-bg > .lets-talk__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateZ(0);
}

.lets-talk--custom-bg > .lets-talk__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        203deg,
        rgba(134, 16, 110, 0.88) 4.06%,
        rgba(24, 20, 92, 0.90) 33.22%,
        rgba(33, 27, 125, 0.87) 75.38%,
        rgba(51, 42, 194, 0.82) 105.38%
    );
}

.lets-talk--custom-bg > .container {
    position: relative;
    z-index: 2;
}

/* together mb style  */

.together-area-mb {
    padding-block: 40px;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
}

.together-wrapper-sa {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.together-title-sa {
    color: #18145C;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.together-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.single-inner-together {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
}
.together-content-wp {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.together-inner-title {
    color: #1C1C1C;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.together-inner-text {
    color: #1C1C1C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/*=== profile page start ===*/

.profile {
    background-image: url(../images/profile-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    padding: 35px 0 108px;
}

.profile .strategy__breadcrumb {
    margin-bottom: 77px;
}

.back-btn {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    display: inline-flex;
    align-items: center;
    margin-bottom: 61px;
}

.back-btn i {
    margin-right: 10px;
}

.back-btn:hover {
    color: var(--primary-color);
}

.profile__card {
    padding: 60px 50px 110px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.profile__heading {
    padding-bottom: 40px;
}

.profile__name {
    font-size: 44px;
    font-weight: 600;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 1.8%, #86166E 28.46%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.profile__designation {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
}

.profile__content {
    padding-top: 48px;
    display: grid;
    grid-template-columns: 1fr 333px;
    grid-column-gap: 80px;
    position: relative;
    z-index: 9;
    border-top: 1px solid var(--secondary-color);
}

.profile__content::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 8px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #231D8A 0%, #86166E 100%);
}

.profile__bio-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.profile__bio-highlight {
    font-weight: 700;
}

.profile__bio-text:last-of-type {
    margin-bottom: 0;
}

.profile__service-areas {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0.85;
}

.profile__entry {
    min-width: 0;
}

.profile__entry > p,
.profile__entry > ul > li,
.profile__entry > ol > li {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

.profile__entry > p:last-child,
.profile__entry > ul:last-child,
.profile__entry > ol:last-child {
    margin-bottom: 0;
}

.profile__entry > ul,
.profile__entry > ol {
    margin-bottom: 24px;
    padding-left: 1.25em;
}

.profile__entry > h2,
.profile__entry > h3 {
    color: var(--black);
    font-size: 22px;
    font-weight: 600;
    line-height: 130%;
    margin: 32px 0 16px;
}

.profile__entry > h2:first-child,
.profile__entry > h3:first-child {
    margin-top: 0;
}

.profile__image {
    border-radius: 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

img.profile__image {
    width: 100%;
    height: auto;
    display: block;
}

.profile__image img {
    width: 100%;
}

.stats--secondary .stats__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(auto, 200px));
    justify-content: space-between;
}

.stats--team {
    background-image: url('../images/our-team-value-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats--clients {
    background-image: url('../images/client-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats--service {
    background-image: url('../images/stats-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats--industry {
    background-image: url('../images/stats-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*=== clients start ===*/

.clients {
    background-image: url(../images/client-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    padding: 95px 0 662px;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 10px;
}

.clients__card {
    padding: 30px 20px;
    border-radius: 20px;
    background: var(--bg-white);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.clients__logo-wrapper {
    padding-bottom: 32px;
    border-bottom: 1px solid #c5c5c5;
    position: relative;
    z-index: 9;
    margin-bottom: 26px;
}

.clients__logo-wrapper::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 8px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #231D8A 0%, #86166E 100%);
}

.clients__logo {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.clients__name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

/*=== clients secondary start ===*/

.clients--secondary {
    padding: 48px 0 62px;
    background-color: #172415;
}

.clients__header {
    max-width: 888px;
    margin: 0 auto 48px;
    text-align: center;
}

.clients__title {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 24px;
}

.clients__description {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

/*=== cases start ===*/

.cases {
    padding: 48px 0 323px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.cases__filter {
    display: grid;
    grid-template-columns: 1fr 218px;
    grid-column-gap: 174px;
    grid-row-gap: 30px;
}

.cases__filter--practice-only {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.cases__filter--practice-only .cases__select {
    width: 218px;
    max-width: 100%;
}

.cases__search {
    position: relative;
}

.cases__search-input,
.cases__select {
    color: #434343;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid #D4D1D1;
    background: var(--bg-white);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.cases__search-input {
    padding-left: 45px;
}

.cases__search-input::placeholder {
    color: #434343;
    opacity: 1;
}

.cases__search-icon {
    color: #434343;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.cases__select {
    appearance: none;
    background-image: url(../images/contact-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: calc(100% - 16px) center;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 19px;
    grid-row-gap: 77px;
    padding: 49px 0 106px;
    align-items: stretch;
}

.cases__grid > .impact__item {
    height: 100%;
    min-height: 520px;
}

.case-study-results.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cases__pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cases__pagination-link,
.cases__pagination-dots,
.cases__pagination-btn {
    color: #003087;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.70);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.cases__pagination-link--active,
.cases__pagination-link:hover,
.cases__pagination-dots:hover,
.cases__pagination-btn:hover {
    color: var(--white);
    background-color: #003087;
}

.cases__shadow {
    position: absolute;
    right: 0;
    bottom: -300px;
    z-index: -1;
}

.cases__shadow img {
    max-width: 100%;
}

/*=== Consulting Business page start ===*/

.strategy--tertiary {
    padding-bottom: 81px;
}

.nav {
    padding: 16.5px 0;
    background: linear-gradient(90deg, #392DCA 0%, #1C1664 100%);
}

.nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(171px, auto));
    grid-row-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
}

.nav__list .nav__link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-left: 30px;
}

.nav__list .nav__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Industry inner nav: horizontal scroll on narrow screens when labels wrap */
@media (max-width: 767px) {
    .nav.nav--industry .nav__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px 20px;
        padding-bottom: 6px;
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .nav.nav--industry .nav__list .nav__link {
        margin-left: 0;
        white-space: nowrap;
    }
}

/*=== overview start ===*/

.overview {
    padding: 110px 0 102px;
}

.overview__grid {
    display: grid;
    grid-template-columns: 642fr 451fr;
    grid-column-gap: 68px;
    grid-row-gap: 32px;
}

.overview__eyebrow {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 10px;
}

.overview__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 55px;
}

.overview__body {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.overview__image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Professional Services service pages: left-align copy; title keeps gradient from .overview__title */
.overview--professional-service .overview__content {
    text-align: left;
}

.overview--professional-service .overview__title {
    text-align: left;
}

/*=== stats tertiary start ===*/

.stats--tertiary {
    padding: 106px 0 81px;
}

.stats--tertiary .stats__wrapper {
    padding: 40px 90px;
    grid-column-gap: 52px;
}

/*=== approach secondary start ===*/

.approach--secondary {
    padding: 91px 0 96px;
}

.approach__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 45px;
}

.approach--secondary .ecosystem__item {
    padding: 50px 40px;
    box-shadow: none;
}

.approach--secondary .ecosystem__item-text {
    min-height: auto;
}

/*=== vision secondary start ===*/

.vision--secondary .value__wrapper {
    padding-top: 80px;
}

.vision--secondary .vision__header {
    margin-bottom: 80px;
    text-align: center;
}

.vision--secondary .vision__header--align-left {
    text-align: left;
}

.vision--secondary .vision__header--align-right {
    text-align: right;
}

.vision--secondary .vision__header--align-center {
    text-align: center;
}

.vision--secondary .vision__title {
    margin-bottom: 25px;
}

.vision--secondary .value__grid--cols-1,
.vision--secondary .value__grid--cols-2,
.vision--secondary .value__grid--cols-3,
.vision--secondary .value__grid--cols-4 {
    grid-column-gap: 60px;
    grid-row-gap: 45px;
}

.vision--secondary .value__grid--cols-1 {
    grid-template-columns: minmax(0, 1fr);
}

.vision--secondary .value__grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vision--secondary .value__grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision--secondary .value__grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .vision--secondary .value__grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vision--secondary .value__grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .vision--secondary .value__grid--cols-1,
    .vision--secondary .value__grid--cols-2,
    .vision--secondary .value__grid--cols-3,
    .vision--secondary .value__grid--cols-4 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.vision--secondary .value__item-bar {
    margin-bottom: 20px;
}

.vision--secondary .vision__item-title {
    font-size: 26px;
    margin-bottom: 20px;
}

.vision--secondary .vision__header-cta {
    margin-top: 28px;
}

.vision--secondary .vision__header-cta .button {
    text-decoration: none;
}

.vision--secondary .value__item-cta {
    margin-top: 22px;
    text-align: left;
}

.vision--secondary .value__item-cta .button {
    text-decoration: none;
}

/*=== tech-stack start ===*/

.tech-stack {
    position: relative;
    padding: 162px 0 149px;
    background-color: #f5f5f7;
    overflow-x: clip;
}

.tech-stack__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/tech-stack-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.tech-stack__container {
    position: relative;
    z-index: 1;
}

.tech-stack__content {
    position: relative;
    z-index: 1;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(248, 248, 248, 0.30);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
}

.tech-stack__title {
    color: var(--black);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
}

.tech-stack__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 863px;
    margin: 0 auto 30px;
}

.tech-stack__text strong {
    font-weight: 700;
}

.tech-stack__list-panel {
    width: 100%;
    max-width: 1044px;
    margin: 8px auto 0;
    text-align: left;
}

/* Thin rule with left accent (design system divider above pill list) */
.tech-stack__divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 28px 0 0;
    background: #d4d4d4;
    border-radius: 1px;
}

.tech-stack__divider-accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 88px;
    max-width: 12%;
    height: 4px;
    background: #6f6f6f;
    border-radius: 2px;
}

.tech-stack__list {
    padding: 18px 0 0;
    margin: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 10px;
}

.tech-stack__item {
    flex: 0 0 auto;
    margin: 0;
    text-align: left;
}

.tech-stack__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Linked logo: chip matches text pill proportions */
.tech-stack__link:has(.tech-stack__icon) {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.22);
    background: rgba(248, 248, 248, 0.9);
}

.tech-stack__link:has(.tech-stack__pill) {
    padding: 0;
    border: 0;
    background: transparent;
}

.tech-stack__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.22);
    background: rgba(248, 248, 248, 0.9);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 220px;
    text-align: center;
}

.tech-stack__icon {
    max-width: 100%;
    display: block;
}

/* Logo without link wrapper */
.tech-stack__link:has(.tech-stack__icon) .tech-stack__icon {
    max-height: 22px;
    width: auto;
}

.tech-stack__item > .tech-stack__icon {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(28, 28, 28, 0.22);
    background: rgba(248, 248, 248, 0.9);
    box-sizing: border-box;
    max-height: 40px;
    width: auto;
}

/* Category row catalog (stack_rows) — two columns inside stacked cards */
.tech-stack--rows .tech-stack__content {
    background: #ffffff;
    border: 1px solid rgba(28, 28, 28, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tech-stack--rows .tech-stack__title {
    font-weight: 600;
    margin-bottom: clamp(24px, 4vw, 32px);
}

.tech-stack--rows .tech-stack__text {
    text-align: center;
}

.tech-stack__rows {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1020px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.tech-stack__row {
    margin: 0;
}

.tech-stack__row-card {
    display: grid;
    grid-template-columns: minmax(140px, 230px) minmax(0, 1fr);
    gap: clamp(16px, 3vw, 36px);
    align-items: start;
    padding: 20px 22px 20px 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.07);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.tech-stack__row-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #1c1c1c;
}

.tech-stack__row-body {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #1c1c1c;
}

/* sector expertise (image + topics) */

.sector-expertise {
    padding: 88px 0 104px;
    background: var(--bg-white);
}

.sector-expertise__header {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.sector-expertise__eyebrow {
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a4a4a;
}

.sector-expertise__title {
    color: #1C1C1C;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 920px;
    margin: 0 auto;
}

.sector-expertise__title p {
    margin: 0;
}

.sector-expertise__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px 56px;
    align-items: start;
    margin-top: 48px;
}

.sector-expertise__grid--no-image {
    grid-template-columns: 1fr;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.sector-expertise__grid--image-right .sector-expertise__media {
    order: 2;
}

.sector-expertise__grid--image-right .sector-expertise__items {
    order: 1;
}

.sector-expertise__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sector-expertise__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sector-expertise__item-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

.sector-expertise__item-title p {
    margin: 0;
}

.sector-expertise__item-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-color);
}

.sector-expertise__item-body p {
    margin: 0 0 1em;
}

.sector-expertise__item-body p:last-child {
    margin-bottom: 0;
}

.sector-expertise__item-body ul,
.sector-expertise__item-body ol {
    margin: 0 0 1em;
    padding-left: 1.25rem;
}

/* Approach — diagram / media (full width inside .container) */

.approach-media {
    padding: 56px 0 96px;
    background: var(--bg-white);
}

.approach-media__figure {
    width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.approach-media__image {
    width: 100%;
    height: auto;
    display: block;
}

.approach-media__video {
    width: 100%;
    height: auto;
    display: block;
    background: #111;
}

.lets-talk--secondary .lets-talk-action-btn {
    background: transparent;
}

.lets-talk--secondary .lets-talk-action-btn:hover {
    background-color: #0a1c5b;
}

/*=== resources start ===*/

.resources {
    padding: 215px 0 147px;
    background-image: url(../images/resources-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}

.resources__content {
    padding: 52px 40px 42px;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.resources__title {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

.resources__item {
    display: grid;
    grid-template-columns: 303fr 398fr 159px;
    grid-column-gap: 60px;
    grid-row-gap: 24px;
    align-items: start;
    padding: 30px 50px;
    border-radius: 20px;
    background: linear-gradient(281deg, rgba(255, 255, 255, 0.60) 54.11%, rgba(255, 255, 255, 0.90) 86.54%);
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-bottom: 10px;
}

.resources__item-title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}

.resources__item-text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.resources__item-text p {
    margin: 0 0 0.65em;
}

.resources__item-text p:last-child {
    margin-bottom: 0;
}

.resources__item .button {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: auto;
    margin-bottom: auto;
}

.resources__item .button__icon {
    max-width: 100%;
    margin-left: 8px;
}

/*=== solutions start ===*/

.solutions {
    padding: 103px 0 133px;
    background-color: var(--bg-white);
}

.solutions__heading {
    margin-bottom: 45px;
}

.solutions__eyebrow {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 17px;
}

.solutions__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: border-box;
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions .swiper-slide {
    background-color: var(--bg-white);
}

.solutions__item {
    display: grid;
    grid-template-columns: 527fr 564fr;
    grid-column-gap: 76px;
    grid-row-gap: 56px;
    align-items: start;
}

.solutions__item-content {
    padding-top: 40px;
}

.solutions__item-title {
    color: var(--black);
    font-size: 30px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 30px;
}

.solutions__item-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.solutions__item-image {
    border-radius: 20px;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.solutions__item-image img {
    width: 100%;
}

.solutions__nav {
    display: grid;
    grid-template-columns: 1fr 236px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 81px;
}

.solutions__nav .swiper-pagination-progressbar {
    position: relative;
    background-color: #ACACAC;
    height: 1px;
}

.solutions__nav .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 7px;
    margin-top: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg, #231D8A 24.47%, #86166E 93.97%);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.solutions__slider-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 23px;
}

/*=== overview secondary start ===*/

.overview--secondary .overview__eyebrow {
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 40px;
}

.overview--secondary .overview__body strong {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 20px 0;
}

/*=== stats quaternary start ===*/

.stats--quaternary {
    padding: 70px 0;
}

.stats--casedetail {
    background-image: url('../images/case-study-detail-value-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats--quaternary .stats__wrapper {
    padding: 40px 60px;
    grid-column-gap: 78px;
}

.stats--quaternary .stats__item {
    text-align: left;
}

.stats--quaternary .stats__item-number {
    font-size: 20px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--white);
}

.stats--quaternary .stats__item-text {
    font-size: 30px;
    font-weight: 500;
    line-height: 130%;
}

/*=== case-breakdown start ===*/

.case-breakdown {
    padding: 80px 0;
}

.case-breakdown__item {
    padding: 60px 90px;
    border-bottom: 1px solid #C5C5C5;
    background: var(--bg-white);
    display: grid;
    grid-template-columns: minmax(200px, 451fr) minmax(280px, 642fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: start;
}

.case-breakdown__item-image img {
    max-width: 100%;
}

.case-breakdown__title {
    color: var(--black);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 26px;
}

.case-breakdown__text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
}

.case-breakdown__text:last-child {
    margin-bottom: 0;
}

/*=== case-tools start ===*/

.case-tools {
    padding: 86px 0;
    background: linear-gradient(203deg, #86106E 4.06%, #18145C 33.22%, #211B7D 75.38%, #332AC2 105.38%);
}

.case-tools__title {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    margin-bottom: 60px;
}

.case-tools__group {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    position: relative;
    z-index: 9;
    margin-bottom: 60px;
}

.case-tools__group:last-child {
    margin-bottom: 0;
}

.case-tools__group::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 8px;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.50);
}

.case-tools__group-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}

.case-tools__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.case-tools__tag {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 11px 24px;
    border-radius: 8px;
    border: 1px solid var(--white);
}

.case-tools__tag:hover {
    color: var(--white);
    background-color: #0a1c5b;
    border-color: #0a1c5b;
}


/*============= INDUSTRY HPLS =================== */

.strategy-title-sa {
    max-width: 592px;
}

.industry-inner-nav {
    background: linear-gradient(106deg, #392DCA 6.1%, #231D8A 14.28%, #86166E 111.28%);
}

.stats-gradient {
    background: linear-gradient(90deg, #86106E 0%, #0A1C5B 100%);
}


/* latest health area  */

.latest-health-area {
    background: #F7F6F4;
}
.latest-health-title {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 50px;
}

.empty-image {
    background: #111111;
    width: 100%;
    height: 100%;
}

.latest-health-list {
    padding: 16px;
    list-style: disc;
    color: var(--white);
}

/* Industry “Latest insights” cards: always show full copy; no hover reveal */
.latest-health-area .impact__slider .swiper-slide > .impact__item--industry-latest {
    min-height: 480px;
}

.latest-health-area .impact__item--industry-latest {
    position: relative;
    isolation: isolate;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(ellipse 130% 90% at 50% 100%, rgba(51, 42, 194, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 85% 95%, rgba(134, 16, 110, 0.35) 0%, transparent 50%);
    padding: 28px 32px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image {
    background-image: none;
    background-color: transparent;
}

.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image .impact__item-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: inherit;
}

.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image .impact__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image .impact__item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(6, 8, 14, 0.14) 0%, rgba(6, 8, 14, 0.28) 48%, rgba(6, 8, 14, 0.62) 100%);
    pointer-events: none;
}

.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image > h3,
.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image > h2,
.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image > .impact__item-content,
.latest-health-area .impact__item--industry-latest.impact__item--has-bg-image > .impact__item-button {
    position: relative;
    z-index: 1;
}

.latest-health-area .impact__item--industry-latest .impact__item-image .empty-image {
    background: transparent;
}

.latest-health-area .impact__item--industry-latest h3 {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.latest-health-area .impact__item--industry-latest h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}

.latest-health-area .impact__item--industry-latest .impact__item-content {
    transform: none !important;
    margin-top: 14px;
}

.latest-health-area .impact__item--industry-latest .impact__item-content p,
.latest-health-area .impact__item--industry-latest .impact__item-content li {
    color: var(--white);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 10px;
}

.latest-health-area .impact__item--industry-latest .impact__item-content ul {
    margin: 8px 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.latest-health-area .impact__item--industry-latest .impact__item-button {
    transform: none !important;
    margin-top: auto;
    padding-top: 22px;
}

.latest-health-area .impact__item--industry-latest:hover .impact__item-image,
.latest-health-area .impact__item--industry-latest:focus-within .impact__item-image,
.latest-health-area .impact__item--industry-latest:hover .impact__item-content,
.latest-health-area .impact__item--industry-latest:focus-within .impact__item-content,
.latest-health-area .impact__item--industry-latest:hover .impact__item-button,
.latest-health-area .impact__item--industry-latest:focus-within .impact__item-button {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.latest-health-area .impact__item--industry-latest:hover h3,
.latest-health-area .impact__item--industry-latest:focus-within h3 {
    color: rgba(255, 255, 255, 0.72) !important;
}

.latest-health-area .impact__item--industry-latest:hover h2,
.latest-health-area .impact__item--industry-latest:focus-within h2 {
    color: var(--white) !important;
}

.support-content-list {
    list-style: disc;
    color: var(--white);
    padding-left: 15px;
}

.support-grid-sa {
    grid-template-columns: 1fr 1fr !important;
}

/* latest health area end  */

/* our health area  */

.our-health-sa {
    padding-top: 90px;
    padding-bottom: 120px;
    background: #FFF;
}

.our-health-wrapper {
    display: flex;
    flex-direction: column;
    gap: 81px;
}

.our-health-title-sa {
    color: #1C1C1C;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    max-width: 792px;
    margin-inline: auto;
}

.our-health-inner-wp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.health-left-image {
    border-radius: 20px;
    background: #000;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    width: 100%;
    min-height: 394px;
}

.our-health-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.single-health-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heath-inner-title {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

/* our heath end  */

.why-choose-sa-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 41.96%, #0B1D5E 75.5%), linear-gradient(26deg, #86166E 7.9%, #0A1C5B 56.49%);
    min-height: 557px;
}

.why-choose-titles-a h2 {
    color: #050505 !important;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #050505 ;
}

/* our approach area  */

.our-approach-area {
    padding-top: 120px;
    padding-bottom: 79px;
    background: #fff;
}

.approach-top-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.approach-top-content-sa {
    max-width: 894px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-bottom-wp {
    padding-top: 68px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.approach-item-sa {
    display: flex;
    padding: 68px 35px 79px 35px;
    flex-direction: column;
    align-items: center;
    gap: 29px;
    border-radius: 20px;
    background: url(../images/approach-item-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
    min-height: 447px;
}
.approach-content-title {
    color: #161616;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.approcard-content-text {
   text-align: center;
}

/* our approach end  */
/* business infography start  */

.our-solution-sa {
    padding-top: 144px;
    padding-bottom: 235px;
}
.solution-title-sa {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 34px;
}

.solution-tab-link-sa {
    flex-direction: column;
}

.solution-item-left-sa ul li a {
    box-shadow: none !important;
    border-radius: 0 ;
    padding: 0 !important;
    margin: 0 !important;
}
.solution-item-left-sa ul li {
    background: #fff;
    padding: 26px 30px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.900000095367432px);
}

.solution-item-left-sa ul li.ui-state-active a {
    background: #fff !important;
}
.solution-item-left-sa ul li.ui-state-active a div:nth-of-type(1) {
	background: linear-gradient(0deg, #0A1C5B -1.04%, #86106E 98.96%);
    border: none;
}
.solution-item-left-sa ul li.ui-state-active a h2 {
    color: #1C1C1C;
}
.solution-tab-des {
	padding-top: 19px;
    display: none;
}

.ui-state-active .solution-tab-des {
    display: block;
}

.more-btn-sa {
    background: linear-gradient(86deg, #231D8A 4.29%, #86166E 87.21%) !important;
}
.more-btn-sa a {
    background: transparent !important;
    display: inline-flex;
    height: 57px;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 34px !important;
    border: 1px solid var(--TS-White, #FFF);
    max-width: 132px;
    color: #fff;
}

.solution-sub-title {
    color: #1C1C1C;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 7px;
}

.solutions-item-action-sa {
    display: inline-flex;
    height: 48px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 34px;
    border: 1px solid #1C1C1C;
    margin-top: 30px;
    color: #1C1C1C;
    font-weight: 500;
}


/*============= Blog Details Page ============ */

.blog-beck-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1C1C1C;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 19px;
}

.blog-strategy-title-sa {
    color: #0A1C5B;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    max-width: 902px;
}

.blog-post-wrapper {
    display: flex;
}

.blog-post-left-sa {
    width: 80%;
}

.post-top-wp {

    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.blog-post-area {
	padding-bottom: 179px;
}

.post-info-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    width: 100%;
}

.post-info-card__primary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 16px;
}
.post-date img,
.post-author img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}
.post-date span {
    min-width: 137px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.category-name-sa {
    color: #0A1C5B;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-decoration: underline;
    margin-left: auto;
    flex: 0 1 auto;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.post-details-wp {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 30px;
    border-top: 1px solid #B5B5B5;
}

/* Standalone legal pages (Privacy Policy, etc.) */
.main-content .legal-page.post-details-wp {
    border-top: none;
    padding-top: 2rem;
}

.main-content .legal-page__title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1C1C1C;
}

.main-content .entry-content--prose .legal-meta {
    color: #4a4a4a;
    font-size: 15px;
}

.main-content .entry-content--prose .legal-section {
    margin-top: 0;
}

.main-content .entry-content--prose .legal-contact {
    font-style: normal;
    margin: 0 0 0.75rem;
}

.post-thmbail-sa {
    padding-block: 20px;
}
.post-thmbail-sa .post-thumbnail-img,
.post-thmbail-sa img {
    width: 100%;
    height: auto;
    display: block;
}

.empty-thambail {
    height: 367px;
    background: #D9D9D9;
}

/* Prose + block editor output (matches blog-details.html body typography). */
.post-details-wp .entry-content--prose {
    font-size: 16px;
    line-height: 1.5;
    color: #1c1c1c;
    /* Gutenberg / theme.json — without this, block gap + our margins stack and look “double spaced” */
    --wp--style--block-gap: 0.75rem;
    margin-bottom: 75px;
}
.post-details-wp .entry-content--prose > * {
    margin-top: 0;
    margin-bottom: 0.75rem;
}
.post-details-wp .entry-content--prose > *:last-child {
    margin-bottom: 0;
}
.post-details-wp .entry-content--prose > *:first-child {
    margin-top: 0;
}
.post-details-wp .entry-content--prose h1,
.post-details-wp .entry-content--prose h2,
.post-details-wp .entry-content--prose h3,
.post-details-wp .entry-content--prose h4,
.post-details-wp .entry-content--prose h5,
.post-details-wp .entry-content--prose h6 {
    color: #1c1c1c;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.1em;
    margin-bottom: 0.35em;
}
.post-details-wp .entry-content--prose > h1:first-child,
.post-details-wp .entry-content--prose > h2:first-child,
.post-details-wp .entry-content--prose > h3:first-child,
.post-details-wp .entry-content--prose > h4:first-child {
    margin-top: 0;
}
.post-details-wp .entry-content--prose h1 {
    font-size: 36px;
}
.post-details-wp .entry-content--prose h2 {
    font-size: 32px;
}
.post-details-wp .entry-content--prose h3 {
    font-size: 26px;
}
.post-details-wp .entry-content--prose h4 {
    font-size: 22px;
}
.post-details-wp .entry-content--prose h5 {
    font-size: 18px;
}
.post-details-wp .entry-content--prose h6 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.post-details-wp .entry-content--prose p {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Flow layout groups: use gap only — block margins + theme gap was stacking */
.post-details-wp .entry-content--prose .wp-block-group.is-layout-flow {
    display: flex;
    flex-direction: column;
    gap: var(--wp--style--block-gap, 0.75rem);
}

.post-details-wp .entry-content--prose .wp-block-group.is-layout-flow > * {
    margin-top: 0;
    margin-bottom: 0;
}

/* Root block markup often gets .is-layout-flow — core gap + our margins stacks */
.post-details-wp .entry-content--prose.is-layout-flow {
    display: flex;
    flex-direction: column;
    gap: var(--wp--style--block-gap, 0.75rem);
}

.post-details-wp .entry-content--prose.is-layout-flow > * {
    margin-top: 0;
    margin-bottom: 0;
}

.post-details-wp .entry-content--prose a {
    color: #231D8A;
    text-decoration: underline;
}
.post-details-wp .entry-content--prose a:hover {
    color: #86166E;
}
.post-details-wp .entry-content--prose strong,
.post-details-wp .entry-content--prose b {
    font-weight: 700;
    color: #1C1C1C;
}
.post-details-wp .entry-content--prose ul,
.post-details-wp .entry-content--prose ol {
    list-style-position: outside;
    list-style: disc;
    margin: 0 0 0.75rem 10px;
    padding-left: 1.25em;
    display: block;
}
.post-details-wp .entry-content--prose ol {
    list-style: decimal;
}
.post-details-wp .entry-content--prose li {
    margin: 0 0 0.35em;
    padding: 0;
    line-height: 1.5;
}
.post-details-wp .entry-content--prose li:last-child {
    margin-bottom: 0;
}
/* Blocks inside list items (Gutenberg wraps each line in <p>) — kill doubled vertical rhythm */
.post-details-wp .entry-content--prose li > p {
    margin-top: 0;
    margin-bottom: 0;
}
.post-details-wp .entry-content--prose li > p + p {
    margin-top: 0.5em;
}
.post-details-wp .entry-content--prose li > :is(h1, h2, h3, h4, h5, h6):first-child {
    margin-top: 0;
}
.post-details-wp .entry-content--prose li > :is(h1, h2, h3, h4, h5, h6):last-child {
    margin-bottom: 0;
}
.post-details-wp .entry-content--prose li > ul,
.post-details-wp .entry-content--prose li > ol {
    margin-top: 0.35em;
    margin-bottom: 0.25em;
    margin-left: 0;
}
.post-details-wp .entry-content--prose blockquote,
.post-details-wp .entry-content--prose .wp-block-quote {
    border-left: 4px solid #231D8A;
    padding: 16px 16px 16px 24px;
    margin: 28px 0;
    font-style: italic;
    color: #333;
    background: #f8f8fc;
}
.post-details-wp .entry-content--prose blockquote p:last-child,
.post-details-wp .entry-content--prose .wp-block-quote p:last-child {
    margin-bottom: 0;
}
.post-details-wp .entry-content--prose blockquote cite,
.post-details-wp .entry-content--prose .wp-block-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    color: #555;
}
.post-details-wp .entry-content--prose .wp-block-pullquote {
    border-top: 4px solid #231D8A;
    border-bottom: 4px solid #231D8A;
    padding: 24px 16px;
    margin: 32px 0;
    text-align: center;
}
.post-details-wp .entry-content--prose .wp-block-pullquote blockquote {
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
}
.post-details-wp .entry-content--prose img,
.post-details-wp .entry-content--prose .wp-block-image img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.post-details-wp .entry-content--prose .wp-block-image {
    margin-bottom: 22px;
}
.post-details-wp .entry-content--prose figure {
    margin: 28px 0;
}
.post-details-wp .entry-content--prose figcaption,
.post-details-wp .entry-content--prose .wp-element-caption {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin-top: 10px;
}
.post-details-wp .entry-content--prose .wp-block-gallery {
    gap: 12px;
    margin: 28px 0;
}
.post-details-wp .entry-content--prose table,
.post-details-wp .entry-content--prose .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
    line-height: 1.5;
}
.post-details-wp .entry-content--prose th,
.post-details-wp .entry-content--prose td {
    border: 1px solid #D6D6D6;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}
.post-details-wp .entry-content--prose th {
    background: #f0f0f5;
    font-weight: 600;
    color: #0A1C5B;
}
.post-details-wp .entry-content--prose .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background: #fafafa;
}
.post-details-wp .entry-content--prose pre,
.post-details-wp .entry-content--prose .wp-block-code {
    background: #f4f4f8;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 28px 0;
    border: 1px solid #EAEAF0;
}
.post-details-wp .entry-content--prose code {
    background: #f4f4f8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.95em;
}
.post-details-wp .entry-content--prose pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.post-details-wp .entry-content--prose hr,
.post-details-wp .entry-content--prose .wp-block-separator {
    border: none;
    border-top: 1px solid #B5B5B5;
    margin: 36px 0;
}
.post-details-wp .entry-content--prose .wp-block-separator.is-style-wide {
    max-width: 100%;
}
.post-details-wp .entry-content--prose .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 34px;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(150deg, #392DCA 6.24%, #231D8A 35%, #86166E 85%);
    color: #fff !important;
    border: none;
}
.post-details-wp .entry-content--prose .wp-block-button__link:hover {
    filter: brightness(1.06);
    color: #fff !important;
}
.post-details-wp .entry-content--prose .is-style-outline .wp-block-button__link {
    background: transparent;
    color: #231D8A !important;
    border: 2px solid #231D8A;
}
.post-details-wp .entry-content--prose .wp-block-columns {
    gap: 24px;
    margin-bottom: 22px;
}
.post-details-wp .entry-content--prose .wp-block-column > *:first-child {
    margin-top: 0;
}
.post-details-wp .entry-content--prose .wp-block-media-text {
    gap: 24px;
    margin: 28px 0;
}
.post-details-wp .entry-content--prose .wp-block-embed {
    margin: 28px 0;
}
.post-details-wp .entry-content--prose .wp-block-embed iframe {
    max-width: 100%;
}
.post-details-wp .entry-content--prose .wp-block-group.has-background {
    padding: 24px 28px;
    border-radius: 12px;
    margin: 28px 0;
}
.post-details-wp .entry-content--prose .alignwide {
    max-width: 100%;
}
.post-details-wp .entry-content--prose .alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}
.post-page-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    padding: 20px 0;
    margin-top: 8px;
    border-top: 1px solid #EAEAF0;
    font-size: 15px;
}
.post-page-links__title {
    font-weight: 600;
    color: #0A1C5B;
}
.post-page-links a {
    display: inline-flex;
    min-width: 2rem;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f4f4f8;
    color: #231D8A;
    text-decoration: none;
    font-weight: 500;
}
.post-page-links a:hover {
    background: #231D8A;
    color: #fff;
}

.blog-post-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.blog-post-categories-list .post-category-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    box-sizing: border-box;
}

.post-category-item__arrow {
    flex: 0 0 auto;
    margin-top: 0.2em;
    font-weight: 600;
    line-height: 1;
}

.post-category-item__label {
    flex: 1 1 auto;
    min-width: 0;
}

.post-btm-wp {
   display: flex;
    padding: 50px 60px;
    align-items: flex-start;
    gap: 60px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    margin-top: 63px;
}

.post-btm-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.post-btm-content h4 {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.post-btm-content a {
    color: #231D8A;
    text-decoration: underline;
}

.blog-post-right-sa {
    width: 20%;
    display: flex;
    padding: 30px 35px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 55px;
}
.post-right-category {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    padding-block: 15px;
}

.post-category-item {
    padding-block: 15px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border-bottom: 1px solid #D6D6D6;
    width: 100%;
}

/* category area start  */

.category-area-sa {
    padding-top: 134px;
    padding-bottom: 167px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.category-top-sa {
    display: flex;
    align-items: center;
    gap: 174px;
}
.category-top-sa .line {
    flex: 1;
    height: 1px;
    background: #ACACAC;
}
.category-top-sa .cases__select {
    width: fit-content;
    min-width: 218px;
    max-width: 100%;
    box-sizing: border-box;
}

.category-grid-sa {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px 19px;
    align-items: stretch;
}

.category-grid-sa > .single-category-item {
    height: 100%;
    min-height: 0;
}

/* Blog cards: height from aspect-ratio, not row stretch */
.category-grid-sa > .single-category-item--blog {
    height: auto;
    align-self: start;
}

/* Card: flex column — content 55%, image 45% of card height */
.single-category-item {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 6px 15px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.3s;
    min-height: 480px;
}

/* Content section — fills the top 55% */
.category-content-sa {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    flex: 0 0 55%;
    min-height: 0;
    overflow: hidden;
}

.category-top-bar {
    width: 35px;
    height: 8px;
    background: #86166E;
    flex-shrink: 0;
}

.category-meta {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.category-post-title {
    margin: 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.category-post-title a {
    color: inherit;
    text-decoration: none;
}

/* Hidden by default — shown on hover only */
.category-excerpt-slot {
    display: none;
    flex-shrink: 0;
    overflow: hidden;
}

.category-excerpt {
    margin: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* Image section — bottom 45% of card */
.category-image-sa {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* Wrapper link must fill the band or img { height: 100% } won’t resolve → white gap under image */
.category-image-sa > a {
    flex: 1 1 auto;
    min-height: 0;
    display: block;
    line-height: 0;
}

.category-image-sa img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.empty-image-color {
    background: #D9D9D9;
}

/* Blog / search cards: gradient placeholder when there is no featured image (matches hover palette). */
.single-category-item--blog .category-image-sa.empty-image-color {
    background: linear-gradient(145deg, #392dca 0%, #231d8a 38%, #86166e 100%);
}

/* ── Hover / focus-within state ── */
.single-category-item:hover .category-content-sa,
.single-category-item:focus-within .category-content-sa {
    background: linear-gradient(150deg, #392DCA 6.24%, #231D8A 19.93%, #86166E 68.14%);
    color: #fff;
    padding-top: 0;
    justify-content: flex-start;
}

/* Hide label, title and top bar on hover — excerpt takes their place */
.single-category-item:hover .category-top-bar,
.single-category-item:focus-within .category-top-bar,
.single-category-item:hover .category-meta,
.single-category-item:focus-within .category-meta,
.single-category-item:hover .category-post-title,
.single-category-item:focus-within .category-post-title {
    display: none;
}

/* Show excerpt and read-more on hover */
.single-category-item:hover .category-excerpt-slot,
.single-category-item:focus-within .category-excerpt-slot {
    display: block;
}

.single-category-item .readmore-btn-sa {
    display: none;
    margin-top: auto;
    color: #fff;
}

.single-category-item:hover .readmore-btn-sa,
.single-category-item:focus-within .readmore-btn-sa {
    display: block;
}

/* Touch devices: always show excerpt + readmore for service/industry/search cards (no hover).
   Blog archive cards keep desktop behavior: category + title at rest; date + excerpt on :focus-within. */
@media (hover: none) {
    .single-category-item:not(.single-category-item--blog) .category-excerpt-slot,
    .single-category-item:not(.single-category-item--blog) .readmore-btn-sa {
        display: block;
    }
    .single-category-item:not(.single-category-item--blog) .readmore-btn-sa {
        color: var(--primary-color, #231D8A);
    }
}

/* Blog archive: ~50/50 text + image; compact height; hover = gradient + white bar + date + excerpt (matches design). */
.single-category-item--blog {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr 1fr;
    /* Compact tile: slightly wider than tall (screenshot); was visually too long at 10/11. */
    aspect-ratio: 11 / 10;
    min-height: 0;
    width: 100%;
    border-radius: 16px;
    transition: box-shadow 0.3s ease;
}

.single-category-item--blog .category-content-sa {
    flex: unset;
    min-height: 0;
    padding: 14px 18px;
    gap: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.4s ease, color 0.35s ease;
}

.single-category-item--blog .category-meta--category {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.single-category-item--blog .category-meta--date {
    display: none;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}

.single-category-item--blog .category-post-title {
    font-family: var(--primary-font);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #1c1c1c;
}

.single-category-item--blog .category-post-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    color: #1c1c1c;
}

.single-category-item--blog .category-excerpt {
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #1c1c1c;
    -webkit-line-clamp: 3;
}

.single-category-item--blog:hover .category-excerpt,
.single-category-item--blog:focus-within .category-excerpt {
    color: #fff;
}

.single-category-item--blog:hover .readmore-btn-sa,
.single-category-item--blog:focus-within .readmore-btn-sa {
    align-self: flex-start;
    margin-top: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
    text-decoration: underline;
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.single-category-item--blog .category-image-sa {
    flex: unset;
    min-height: 0;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.single-category-item--blog .category-image-sa::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 29, 138, 0.42) 0%, rgba(134, 22, 110, 0.38) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.single-category-item--blog:hover .category-image-sa::after,
.single-category-item--blog:focus-within .category-image-sa::after {
    opacity: 1;
}

.single-category-item--blog .category-top-bar {
    transition: background-color 0.35s ease;
}

.single-category-item--blog:hover .category-top-bar,
.single-category-item--blog:focus-within .category-top-bar {
    display: block;
    background: #fff;
}

.single-category-item--blog:hover .category-content-sa,
.single-category-item--blog:focus-within .category-content-sa {
    padding: 14px 18px;
    padding-top: 14px;
    justify-content: flex-start;
}

.single-category-item--blog:hover .category-meta--date,
.single-category-item--blog:focus-within .category-meta--date {
    display: block;
}

.single-category-item--blog:hover .readmore-btn-sa:hover,
.single-category-item--blog:hover .readmore-btn-sa:focus-visible,
.single-category-item--blog:focus-within .readmore-btn-sa:hover,
.single-category-item--blog:focus-within .readmore-btn-sa:focus-visible {
    color: #fff;
    background: transparent;
    text-decoration: underline;
}

.category-item-pagination {
    padding-top: 91px;
}
.category-item-pagination .cases__pagination-link {
	border-radius: 50%;
}

.category-item-pagination .cases__pagination-link--active, .category-item-pagination .cases__pagination-link:hover, .category-item-pagination .cases__pagination-dots:hover, .category-item-pagination .cases__pagination-btn:hover {
	color: var(--white);
	background: linear-gradient(180deg, #231D8A 0%, #86166E 100%);
}
.category-item-pagination .cases__pagination-btn {
    border-radius: 50%;
}

.cases__shadow {
	position: absolute;
	right: 0;
	bottom: -300px;
	z-index: -1;
}

.cases__shadow img {
	max-width: 100%;
}



.brand-slider-sa .slick-track {
  display: flex;
}

.brand-slider-sa .slick-slide {
  height: auto;
}

.partner-slider-sa .slick-track {
  display: flex;
  align-items: center;
}

.partner-slider-sa .slick-slide {
  height: auto;
}

/* ─── Team Member — Single Profile Page ─────────────────────────────────────── */
.team-profile-single {
    padding-top: 80px;
    padding-bottom: 120px;
}
.team-profile-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.team-profile-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 100px;
}
.leader-profile-image--large {
    width: 280px;
    height: 280px;
    border-radius: 50%;
}
.team-profile-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
}
.team-profile-linkedin i {
    font-size: 18px;
}
.team-profile-content-col .leader-info-sa {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 20px;
}
.team-profile-content-col .leader-name {
    text-align: left;
    font-size: 36px;
    background: linear-gradient(90deg, #231D8A 29.14%, #86166E 65.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.team-profile-content-col .leader-role {
    min-height: unset;
    font-size: 18px;
    color: #555;
}
.team-profile-tagline {
    font-size: 18px;
    font-style: italic;
    color: #444;
    border-left: 3px solid #231D8A;
    padding-left: 16px;
    margin-bottom: 28px;
}
.team-profile-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}
.team-profile-bio p {
    margin-bottom: 1rem;
}
.team-profile-back {
    margin-top: 20px;
}
@media (max-width: 991px) {
    .team-profile-wrapper {
        grid-template-columns: 1fr;
    }
    .team-profile-image-col {
        position: static;
    }
    .leader-profile-image--large {
        width: 220px;
        height: 220px;
    }
}

/* ——— Site search (modal + results) ——— */
.header__search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}
.header__search-trigger img {
    display: block;
    max-width: none;
    height: auto;
}
.header__search-trigger:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 50%;
}
.offcanvas-search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 32px);
    margin: 16px 16px 24px;
    padding: 12px 16px;
    border: 1px solid #EAEAF0;
    border-radius: 12px;
    background: #f8f8fc;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
}
.offcanvas-search-btn i {
    font-size: 18px;
    color: var(--primary-color);
}

.offcanvas-search-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.thoughtstorm-search-modal__content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.thoughtstorm-search-modal__field {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.thoughtstorm-search-modal__input {
    flex: 1;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #EAEAF0;
}
.thoughtstorm-search-modal__submit {
    border-radius: 12px;
    padding: 0 18px;
    background: linear-gradient(150deg, #392DCA 6.24%, #231D8A 35%, #86166E 85%);
    color: #fff;
    border: none;
}
.thoughtstorm-search-modal__submit:hover {
    color: #fff;
    filter: brightness(1.05);
}
.search-results-section .thoughtstorm-search-toolbar {
    margin-bottom: 8px;
}
.thoughtstorm-search-toolbar__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
}
.thoughtstorm-search-toolbar__field--grow {
    flex: 1 1 220px;
    min-width: 200px;
}
.thoughtstorm-search-toolbar__search {
    width: 100%;
}
.thoughtstorm-search-toolbar__select {
    min-width: 180px;
}
.thoughtstorm-search-toolbar__submit {
    flex-shrink: 0;
}
.thoughtstorm-search-live[aria-busy="true"] {
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.thoughtstorm-search-applied-wrap {
    margin: 8px 0 20px;
    min-height: 0;
}
.thoughtstorm-search-applied {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}
.thoughtstorm-search-applied__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.thoughtstorm-search-applied__item {
    margin: 0;
}
.thoughtstorm-search-applied__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 8px 6px 12px;
    border-radius: 999px;
    background: linear-gradient(150deg, rgba(57, 45, 202, 0.12) 0%, rgba(35, 29, 138, 0.14) 40%, rgba(134, 22, 110, 0.12) 100%);
    border: 1px solid rgba(35, 29, 138, 0.2);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #231D8A;
}
.thoughtstorm-search-applied__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(280px, 70vw);
}
.thoughtstorm-search-applied__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #231D8A;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
}
.thoughtstorm-search-applied__remove:hover,
.thoughtstorm-search-applied__remove:focus-visible {
    background: #231D8A;
    color: #fff;
    outline: none;
}
.thoughtstorm-search-applied__clear-all {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--primary-font, inherit);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: #86166E;
    cursor: pointer;
}
.thoughtstorm-search-applied__clear-all:hover,
.thoughtstorm-search-applied__clear-all:focus-visible {
    color: #231D8A;
    outline: none;
}
/* Search results: 4 columns ≥1200px; fewer on smaller widths; page size 12|16|20 via PHP */
.category-grid-sa.thoughtstorm-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px 18px;
    padding-top: 40px;
    align-items: stretch;
}
@media screen and (min-width: 576px) {
    .category-grid-sa.thoughtstorm-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (min-width: 992px) {
    .category-grid-sa.thoughtstorm-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (min-width: 1200px) {
    .category-grid-sa.thoughtstorm-search-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* Search: flex column so row height = tallest card’s content; stretch fills the row without a fixed aspect-ratio clip */
.category-grid-sa.thoughtstorm-search-grid > .single-category-item--blog {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
    min-height: min-content;
    aspect-ratio: unset;
}
.category-grid-sa.thoughtstorm-search-grid .single-category-item--blog .category-content-sa {
    flex: 1 1 auto;
    min-height: min-content;
    overflow: visible;
}
.category-grid-sa.thoughtstorm-search-grid .single-category-item--blog .category-image-sa {
    flex: 0 0 auto;
    height: clamp(148px, 28vw, 200px);
    max-height: none;
}
.category-grid-sa.thoughtstorm-search-grid .single-category-item--blog .category-post-title a {
    display: block;
    overflow: visible;
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
}
.thoughtstorm-search-grid .single-category-item--search .category-post-title {
    font-size: clamp(1.125rem, 1.15vw + 0.9rem, 1.375rem);
}
.thoughtstorm-search-grid .single-category-item--search .category-meta--category {
    font-size: 14px;
}
.thoughtstorm-search-grid .single-category-item--search .category-excerpt {
    -webkit-line-clamp: 3;
}
@media (max-width: 767px) {
    .thoughtstorm-search-toolbar__row {
        flex-direction: column;
        align-items: stretch;
    }
    .thoughtstorm-search-toolbar__select,
    .thoughtstorm-search-toolbar__submit {
        width: 100%;
    }
}