@import "theme.css";

@font-face {
  font-family: "HelveticaNeueLT Arabic 55 Roman";
  src:
    url("../fonts/HelveticaNeueLTArabic-Roman.woff2") format("woff2"),
    url("../fonts/HelveticaNeueLTArabic-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueLT Arabic 75";
  src:
    url("../fonts/HelveticaNeueLTArabic-Bold.woff2") format("woff2"),
    url("../fonts/HelveticaNeueLTArabic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueLT Arabic 45";
  src:
    url("../fonts/HelveticaNeueLTArabic-Light.woff2") format("woff2"),
    url("../fonts/HelveticaNeueLTArabic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("../fonts/MyriadPro-Bold.woff2") format("woff2"),
    url("../fonts/MyriadPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("../fonts/MyriadPro-Cond.woff2") format("woff2"),
    url("../fonts/MyriadPro-Cond.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("../fonts/MyriadPro-Light.woff2") format("woff2"),
    url("../fonts/MyriadPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("../fonts/MyriadPro-Regular.woff2") format("woff2"),
    url("../fonts/MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro";
  src:
    url("../fonts/MyriadPro-Semibold.woff2") format("woff2"),
    url("../fonts/MyriadPro-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: auto !important;
}

body {
  font-family: "Myriad Pro", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 100px;
  left: 100px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background: #003087;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    background 0.2s ease;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: #00509e;
}
#back-to-top svg {
  pointer-events: none;
}

@media (max-width: 767px) {
  #back-to-top {
    left: 40px;
  }
}

/* Accordion Style */
.accordion .sub-menu-content {
  display: none;
  padding: 12px 15px;
}

.cd-panel-content .sub-menu-content {
  display: block;
}

.accordion .sub-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-top: 1px solid lightgray;
  color: var(--primary-color);
  text-decoration: none;
}

.cd-panel-content .sub-menu-title {
  border: none;
}

.accordion .sub-menu-title.active {
  background-color: var(--accordion-bg);
}

.accordion .sub-menu-title:hover {
  background-color: var(--accordion-bg);
}

.accordion .sub-menu-title h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}

.accordion .sub-menu-title i {
  font-size: 20px;
}

.accordion .fa-angle-down {
  transition: 300ms;
}

.accordion .fa-angle-down.close {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.cd-panel-content .fa-angle-down {
  display: none;
}
/* Accordion Style End*/

.parallax_one {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.parallax_one img {
  width: 100%;
  height: auto;
  transform-origin: top center;
}

.parallax_one_fit img {
  width: 100%;
  position: relative;
  object-fit: cover;
  height: 120%;
  top: 0%;
  margin-bottom: 0px;
}

@media (min-width: 992px) {
  .parallax_one_desk {
    display: block;
    position: relative;
    min-height: 450px;
  }

  .parallax_one_fit {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  .award-image_desk {
    position: absolute;
    left: 0;
    top: 400px;
  }

  .award-image_team {
    position: absolute;
    left: 0;
    top: 470px;
  }
}

/* Nethika Styles */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 10px 10px 0 10px;
}

nav .nav_top_bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  padding: 0 10px;
  transition: background-color 0.3s ease;
  border-radius: 10px 10px 0 0;
}

nav .nav_top_bar.is-active {
  background-color: #fff;
}

.nav_logo {
  text-decoration: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav_logo img {
  width: auto;
  height: 35px;
}

.nav_light_logo {
  transition: opacity 0.3s ease;
}

.nav_dark_logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-theme="dark"] .nav_light_logo,
[data-theme="power-save"] .nav_light_logo {
  opacity: 0;
}

[data-theme="dark"] .nav_dark_logo,
[data-theme="power-save"] .nav_dark_logo {
  opacity: 1;
}

.nav_icon {
  cursor: pointer;
}

.nav_icon i {
  color: #0b71b6;
  font-size: 25px;
}

.nav_icons svg {
  width: auto;
  height: 20px;
}

.nav_icon svg path {
  stroke: #0b71b6;
}

.nav_icon svg.filled-icon path {
  fill: #0b71b6;
  stroke: #0b71b6;
}

.nav_icon .leaf_icon {
  fill: #0b71b6;
}

#text_to_speech svg {
  height: 27.5px;
  margin-bottom: -5px;
}

#text_to_speech.activated svg path {
  stroke: #000;
}

@media (max-width: 767px) {
  .nav_icon svg path {
    stroke: #fff;
  }

  .nav_icon .leaf_icon {
    fill: #fff;
  }
}

.nav_icon_main {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 0 auto;
}

.nav_icons {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.nav_top_text {
  width: calc(22.5% - 20px);
}

.nav_top_text a {
  text-decoration: none;
}

@media (max-width: 1199px) {
  .nav_top_text {
    width: max-content;
    margin-left: 20px;
  }
}

.nav_top_text p {
  line-height: 1.1;
  font-size: 14px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

.nav_top_text p span {
  color: #1dabfe;
}

.fixed_search {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006fba;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.fixed_search div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 25px;
  width: 25%;
}

.fixed_search div i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.fixed_search form {
  width: 100%;
}

.fixed_search input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 10px;
}

.fixed_search input::placeholder {
  color: #fff;
}

.fixed_search input:focus {
  outline: none;
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .nav_icons svg {
    height: 17.5px !important;
  }

  #text_to_speech svg {
    height: 22.5px !important;
    margin-bottom: -3px;
  }

  .nav_icon_main {
    gap: 10px !important;
  }

  .nav_icons {
    gap: 10px !important;
  }

  .mega-nav__btn {
    font-size: 13px !important;
  }

  .mega-nav__chevron {
    font-size: 14px !important;
  }
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .nav_top_text {
    width: calc(20% - 20px);
  }

  .nav_image {
    width: calc(20% - 40px) !important;
  }
}

@media (max-width: 1399px) {
  .nav_logo img {
    height: 25px;
  }

  .nav_icon_main {
    gap: 20px;
  }

  .nav_icons {
    gap: 15px;
  }

  .nav_top_text p {
    font-size: 12.5px;
  }
}

@media (max-width: 1199px) {
  .fixed_search div {
    width: 40%;
  }

  .nav_logo img {
    height: 35px;
  }

  nav .nav_top_bar {
    height: 50px;
  }
}

@media (max-width: 991px) {
  .fixed_search div {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .fixed_search div {
    width: 80%;
  }

  .nav_logo img {
    height: 30px;
  }

  .nav_icon_main {
    gap: 10px;
  }

  .nav_icons {
    gap: 10px;
  }

  nav .nav_top_bar {
    height: 40px;
  }
}

/* ── Mega Navigation ──────────────────────────────────────── */

.mega-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.mega-nav__btn {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Myriad Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.3s;
  line-height: 1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .mega-nav__btn {
    font-size: 14px;
  }
}

/* When any nav button is hovered (or a dropdown is open), tint all buttons + the top text */
@media (min-width: 1200px) {
  .mega-nav__list:has(.mega-nav__btn:hover, .mega-dropdown:hover)
    .mega-nav__btn {
    color: #0b71b6;
  }

  .nav_top_bar:has(.mega-nav__btn:hover, .mega-dropdown:hover) .nav_top_text p {
    color: #0b71b6;
  }
}

.mega-nav__chevron {
  flex-shrink: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mega-nav__item.is-open .mega-nav__chevron {
  transform: rotate(180deg);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .mega-nav__chevron {
    font-size: 14px;
  }
}

/* ── Dropdown Wrap ─────────────────────────────────────────── */

.mega-dropdown {
  display: none;
  position: absolute;
  top: 70px;
  left: 10px;
  width: calc(100% - 20px);
  background: #fff;
  pointer-events: all;
  overflow: hidden;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  align-items: stretch;
  justify-content: flex-start;
}

.mega-dropdown.is-open {
  display: flex;
}

/* ── Shared inner ──────────────────────────────────────────── */

.mega-dropdown__inner {
  width: 60%;
}

.mega-dropdown__split {
  position: relative;
}

/* ── Integrated Report: list ──────────────────────────────── */

.mega-dropdown__split > ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  width: 100%;
}

.mdl-item {
  /*  cursor: pointer;*/
  font-size: 14px;
  color: #252379;
  line-height: 1.2;
  width: 50%;
  font-weight: 600;
}

.mdl-item.has-sub {
  cursor: pointer;
}

.mdl-item a {
  font-size: 14px;
  color: #252379;
  text-decoration: none;
  line-height: 1.2;
  font-weight: 600;
}

.mdl-item-trigger {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  border-bottom: 1px solid rgba(43, 189, 188, 0.25);
  transition: background-color 0.3s ease;
}

.mdl-item-trigger a {
  width: 100%;
}

.mdl-item-trigger:last-child {
  border-bottom: none;
}

.mdl-item:last-child {
  border-bottom: none;
}

.mdl-item.is-active > .mdl-item-trigger,
.mdl-item-trigger:hover {
  background: rgba(43, 189, 188, 0.25);
}

/* ── Current page nav highlight ─────────────────────────── */
.mdl-item-trigger.nav-current {
  background: rgba(43, 189, 188, 0.45) !important;
}

.mdr-panel li.nav-current,
.mega-dropdown__fs li.nav-current,
.mega-dropdown__supp li.nav-current {
  background-color: rgba(43, 189, 188, 0.45) !important;
}

.mdl-arrow {
  flex-shrink: 0;
  margin-left: 10px;
  font-size: 14px;
  color: rgba(43, 189, 188, 1);
}

.mdl-item.is-active .mdl-arrow {
  opacity: 1;
}

/* ── Integrated Report: sub panel ─────────────────────────── */

@keyframes mdrPanelFadeIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mdr-panel {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  padding: 20px 10px;
  height: 100%;
}

.mdl-item:hover > .mdr-panel {
  display: block;
  animation: mdrPanelFadeIn 0.3s ease both;
}

.mdr-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mdr-panel li {
  padding: 5px 15px;
  line-height: 1.2;
  transition: background-color 0.3s;
}

.mdr-panel li:hover {
  background-color: rgba(43, 189, 188, 0.25);
}

.mdr-panel li:last-child {
  border-bottom: none;
}

.mdr-panel li a {
  color: #497792;
  text-decoration: none;
  font-size: 14px;
  display: block;
  font-weight: 400;
  line-height: 1.2;
}

/* ── Financial Statements panel ───────────────────────────── */
.mega-dropdown__fs {
  padding: 20px 0;
}

.mega-dropdown__fs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 50px;
}

.mega-dropdown__fs li {
  padding: 5px 15px;
  break-inside: avoid;
  line-height: 1.2;
  transition: background-color 0.3s;
}

.mega-dropdown__fs li:hover {
  background-color: rgba(43, 189, 188, 0.25);
}

.mega-dropdown__fs li:last-child {
  border-bottom: none;
}

.mega-dropdown__fs li a {
  color: #497792;
  text-decoration: none;
  font-size: 14px;
  display: block;
  line-height: 1.2;
}

/* ── Supplementary panel ───────────────────────────────────── */
.mega-dropdown__supp {
  padding: 20px 0;
}

.mega-dropdown__supp ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}

.mega-dropdown__supp li {
  padding: 5px 15px;
  break-inside: avoid;
  line-height: 1.2;
  transition: background-color 0.3s;
}

.mega-dropdown__supp li:hover {
  background-color: rgba(43, 189, 188, 0.25);
}

.mega-dropdown__supp li:last-child {
  border-bottom: none;
}

.mega-dropdown__supp li a {
  color: #497792;
  text-decoration: none;
  font-size: 14px;
  display: block;
  line-height: 1.2;
}

/* ── Power Save Mode: hero video grayscale ─────────────────── */
.bg-video {
  transition: filter 0.4s ease;
}

[data-theme="power-save"] .bg-video {
  filter: grayscale(100%);
}

[data-theme="power-save"] .home_text {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="power-save"] #theme-toggle svg {
  fill: #000;
  stroke: #000;
}

/* ── Power Save Mode: restore nav animations ──────────────── */
[data-theme="power-save"] .mega-nav__chevron {
  transition: transform 0.3s ease !important;
}

[data-theme="power-save"] .mega-nav__btn {
  transition: color 0.3s !important;
}

/* ── Power Save Mode: mdr-panel opens without animation ────── */
[data-theme="power-save"] .mdl-item:hover > .mdr-panel {
  display: block;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ── Dark mode ─────────────────────────────────────────────── */
[data-theme="dark"] .mdl-item.is-active > .mdl-item-trigger {
  background: #1a2a3a;
  color: #1dabfe;
  border-left-color: #1dabfe;
}

[data-theme="dark"] .mdl-arrow {
  stroke: #1dabfe;
}

[data-theme="dark"] .mdr-panel li,
[data-theme="dark"] .mega-dropdown__fs li,
[data-theme="dark"] .mega-dropdown__supp li {
  border-bottom-color: #2a3a4a;
}

.nav_image {
  width: calc(22.5% - 40px);
  height: auto;
  overflow: hidden;
  margin: 10px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.nav_image img {
  width: 90%;
  height: auto;
}

@media (max-width: 1199px) {
  .nav_image {
    display: none;
  }
}

/* ── Nav Screen Overlay ───────────────────────────────────── */
@media (min-width: 1200px) {
  .nav-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 19;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-screen-overlay.is-visible {
    visibility: visible;
  }
}
/* ── Nav Screen Overlay End ────────────────────────────────── */

/* ── Mega Navigation End ───────────────────────────────────── */

/* ── Hamburger button (hidden on desktop) ────────────────── */
.nav-hamburger {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

.mobile-nav-close {
  display: none;
}

/* ── Mobile Navigation (< 1200px) ────────────────────────── */
@media (max-width: 1199px) {
  /* Hamburger button */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
  }

  .nav-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .nav-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile nav overlay */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkite-backdrop-filter: blur(5px);
    z-index: 25;
  }

  .mobile-nav-overlay.is-visible {
    display: block;
  }

  /* Mobile nav close button */
  .mobile-nav-close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    font-size: 20px;
    color: #0b71b6;
    height: 50px;
  }

  /* nav_middle becomes slide panel from right */
  .nav_middle {
    position: fixed;
    top: 0;
    left: -45%;
    width: 45%;
    height: 100%;
    background: #fff;
    z-index: 30;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav_middle.is-mobile-open {
    left: 0;
  }

  /* Mobile mega-nav list */
  .mega-nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
    height: calc(100% - 60px);
    overflow-y: auto;
    scrollbar-width: none;
  }

  .mega-nav__list::-webkit-scrollbar {
    display: none;
  }

  .mega-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  }

  .mega-nav__btn {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
    text-align: left;
    color: #0b71b6;
    text-wrap: wrap;
  }

  .mega-nav__item.is-open .mega-nav__chevron {
    transform: rotate(180deg);
  }

  /* Mobile dropdown — static, JS-controlled */
  .mega-dropdown {
    position: static !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    display: none;
    top: auto !important;
    left: auto !important;
    z-index: auto !important;
    border-radius: 0;
  }

  /* Prevent desktop .is-open from overriding on mobile — JS uses slideDown */
  .mega-dropdown.is-open {
    display: none;
  }

  /* Mobile dropdown inner: full width */
  .mega-dropdown__inner {
    width: 100%;
    padding: 0;
  }

  /* Integrated report split list */
  .mega-dropdown__split > ul {
    padding: 0;
    width: 100%;
  }

  /* mdl-item full width */
  .mdl-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  }

  .mdl-item:last-child {
    border-bottom: none;
  }

  .mdl-item-trigger {
    padding: 10px 15px;
    cursor: pointer;
  }

  /* Always show arrow on mobile to indicate sub-items exist */
  .mdl-item.has-sub .mdl-arrow {
    opacity: 1;
  }

  /* Accordion arrow — rotate when open */
  .mdl-item.is-active > .mdl-item-trigger .mdl-arrow {
    opacity: 1;
    transform: rotate(90deg);
  }

  /* mdr-panel: static accordion content, hidden by default */
  .mdr-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 0 !important;
    display: none;
    animation: none !important;
  }

  /* Disable desktop hover-show on mobile */
  .mdl-item:hover > .mdr-panel {
    display: none;
  }

  .mdr-panel ul {
    padding: 10px 15px 10px 20px;
  }

  /* Financial & Supplementary panels: single column */
  .mega-dropdown__fs,
  .mega-dropdown__supp {
    padding: 10px 0;
  }

  .mega-dropdown__fs ul,
  .mega-dropdown__supp ul {
    columns: 1 !important;
    column-gap: 0 !important;
    padding: 0 15px;
  }

  [data-theme="dark"] .mega-dropdown {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  .nav_top_wrapper {
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .nav_middle {
    left: -80%;
    width: 80%;
  }

  .nav_top_wrapper {
    justify-content: flex-end;
  }
}

/* ── Ensure desktop nav renders correctly at 1200px+ ─────── */
@media (min-width: 1200px) {
  .nav-hamburger {
    display: none !important;
  }

  .mobile-nav-close {
    display: none !important;
  }

  .mobile-nav-overlay {
    display: none !important;
  }

  /* Reset any mobile panel styles that may persist */
  .nav_middle {
    position: static;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    z-index: auto;
    overflow: visible;
    padding: 0;
    box-shadow: none;
    transition: none;
  }

  .nav_top_wrapper {
    display: contents;
  }
}

main {
  padding-top: 400px;
  padding-bottom: 100px;
  min-height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.normal_header {
  height: 400px;
}

.header_relative {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.header_relative_two {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 70px;
  padding-top: 70px;
}

.header_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  mix-blend-mode: multiply;
}

.header_gr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.header_bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: var(--bg-color);
  z-index: 4;
  width: 100%;
  height: 20px;
  border-radius: 20px 20px 0 0;
}

.header_content {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 auto;
}

.header_content_two {
  position: relative;
  z-index: 2;
  width: calc(46% - 120px);
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  padding-left: 120px;
}

.header_section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.header_section h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.header_section h3 {
  margin: 0;
  line-height: 1;
  padding: 0;
  color: var(--header-text);
  font-size: 1rem;
  font-weight: 600;
}

.header_section img {
  width: auto;
  height: 30px;
}

.header_page h1 {
  line-height: 1.1;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  transform-origin: bottom center;
}

.header_nav_container {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 100px;
}

.header_nav {
  display: flex;
  align-content: center;
  position: relative;
  justify-content: space-between;
  width: calc(100% - 110px);
}

.header_nav_block {
  color: #fff;
  margin: 0;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_nav_block.inactive {
  visibility: hidden !important;
}

.header_nav_block i {
  font-size: 25px;
}

.header_nav_block .hnb_left,
.header_nav_block .hnb_right {
  background-color: rgba(78, 219, 250, 0.5);
  border: 1px solid #2ecce2;
  border-radius: 30px;
  padding: 7.5px 15px;
  visibility: hidden;
  opacity: 0;
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(5px);
  z-index: 1;
  max-width: calc(100% - 80px);
}

@media (max-width: 1199px) {
  .header_nav_block .hnb_left,
  .header_nav_block .hnb_right {
    display: none;
  }
}

.hnb_left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translate(-20px, -50%);
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
}

.hnb_right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translate(20px, -50%);
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-end;
}

.white_line {
  position: absolute;
  left: 40px;
  width: calc(100% - 80px);
  top: 19px;
  height: 1px;
  background-color: #fff;
  transition: opacity 0.3s ease;
}

#prevlink:hover ~ .white_line,
#nextlink:hover ~ .white_line {
  opacity: 0;
}

.header_nav.inactive {
  .white_line {
    opacity: 0 !important;
  }
}

.header_icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  height: 40px;
  width: 90px;
  justify-content: space-evenly;
}

.header_icon a img {
  width: 20px;
  height: auto;
}

.header_nav_block:hover .hnb_left,
.header_nav_block:hover .hnb_right {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%);
}

.nav_icon {
  position: relative;
}

.icon_name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: max-content;
  background-color: #2ecce2;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 12.5px;
  transform: translate(-40%, 150%);
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  text-transform: uppercase;
}

.nav_icon:hover .icon_name {
  visibility: visible;
  opacity: 1;
  transform: translate(-40%, 125%);
}

.header_icon a {
  display: block;
  position: relative;
}

.header_icon_name {
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  background-color: #2ecce2;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 12.5px;
  transform: translate(-40%, -150%);
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  text-transform: uppercase;
}

.header_icon a:hover .header_icon_name {
  visibility: visible;
  opacity: 1;
  transform: translate(-40%, -125%);
}

.tt-hti-btn-count {
  background-color: var(--my-report-number);
}

.leadership_header {
  height: 50vh;
}

.header_leader {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: calc(100% - 70px);
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
}

.header_leader > img {
  width: auto;
  height: 100%;
}

.leadership_lifter {
  color: #252379;
  font-size: 1.75rem;
  line-height: 1.2;
}

.header_play {
  width: 50px;
  height: auto;
  cursor: pointer;
  display: block;
  margin-bottom: 60px;
}

.header_play img {
  width: 100%;
  height: auto;
}

@media (max-width: 1399px) {
  .header_content_two {
    width: calc(50% - 100px);
    padding-left: 50px;
  }

  .header_leader {
    left: 55%;
  }
}

@media (max-width: 1199px) {
  .header_content {
    width: 60%;
  }

  .header_page h1 {
    font-size: 1.75rem;
  }

  .header_content_two {
    width: calc(50% - 25px);
    padding-left: 25px;
  }

  .header_leader {
    left: 62.5%;
    height: 75%;
  }
}

@media (max-width: 991px) {
  .header_content {
    width: 65%;
  }

  .header_section h2 {
    font-size: 1rem;
  }

  .header_page h1 {
    font-size: 1.5rem;
  }

  .normal_header {
    height: 360px;
  }

  main {
    padding-top: 360px;
  }

  .header_icon {
    display: none;
  }

  .header_nav_container {
    padding: 0 20px;
  }

  .header_nav {
    width: 100%;
  }

  .header_leader {
    left: 65%;
  }

  .header_content_two {
    width: calc(50% - 25px);
    padding-left: 25px;
  }
}

@media (max-width: 767px) {
  .header_content {
    width: 90%;
  }

  .header_section h2 {
    font-size: 1rem;
  }

  .header_page h1 {
    font-size: 1.5rem;
  }

  .normal_header {
    height: 425px;
  }

  main {
    padding-top: 425px;
  }

  .header_relative {
    padding-bottom: 90px;
  }

  .header_content_two {
    width: 100%;
    padding-left: 0;
    padding: 0 20px;
  }

  .header_relative_two {
    align-items: flex-start;
  }

  .leadership_header {
    height: 500px;
  }

  .header_leader {
    height: 60%;
    left: 50%;
  }
}

@media (max-width: 400px) {
  .header_page h1 {
    font-size: 1.4rem;
  }
}

/* Footer Styles */
footer {
  background-color: var(--footer-bg);
  padding: 50px 100px;
}

.footer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer_gsarn {
  height: 50px;
  width: auto;
}

.footer_gsarn img {
  height: 100%;
  width: auto;
}

.footer_social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}

.footer_social_icon {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_social_icon:hover {
  color: #2ecce2;
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer_copyright {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

p.footer_copyright a {
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}

p.footer_copyright a:hover {
  opacity: 0.8;
}

@media (max-width: 991px) {
  .footer_gsarn {
    height: 40px;
  }

  .footer_copyright {
    font-size: 12.5px;
  }

  .footer_copyright a {
    font-size: 12.5px;
  }
}

@media (max-width: 767px) {
  .footer_inner {
    flex-direction: column;
  }

  .footer_social {
    justify-content: center;
  }

  .footer_right {
    align-items: center;
    text-align: center;
  }

  footer {
    padding: 40px;
  }
}

.bod_main_container {
  background-image: linear-gradient(
    to top right,
    #ffffff 0%,
    #1bbfb9 31%,
    #0d0755 100%
  );
}

[data-theme="power-save"] .bod_main_container {
  background-image: none;
  background-color: var(--bg-color);
}

.bod_header {
  position: relative;
  padding: 100px 0 50px 120px;
  display: flex;
  align-items: flex-end;
}

.bod_header_icon {
  display: flex;
  align-items: center;
  width: max-content;
}

/* ── BOD Swiper ─────────────────────────────────────────── */

.bod-main-swiper-wrap {
  position: relative;
  width: 100%;
}

.bod-main-swiper {
  width: 100%;
  height: 500px;
}

.bod-slide-inner {
  display: flex;
  height: 100%;
}

.bod-slide-photo {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bod_sit {
  width: 75%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bod_stand {
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bod-slide-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding-right: 100px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.bod-slide-content::-webkit-scrollbar {
  display: none;
}

.bod-member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
}

.bod-member-role {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
}

.bod-member-bio p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
}

.bod-member-bio strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 767px) {
  .bod_header {
    padding: 100px 0 50px 0px;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* ── BOD Thumbnail Strip ─────────────────────────────────── */

.bod-thumb-wrap {
  background: rgba(29, 17, 93, 0.2);
  padding: 25px 0;
}

.bod-thumb-inner {
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.bod-thumb-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.bod-thumb-slide {
  cursor: pointer;
  text-align: center;
  padding: 0 6px;
  user-select: none;
}

.bod-thumb-img-wrap {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 1);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 10px;
}

.swiper-slide-thumb-active .bod-thumb-img-wrap {
  border-color: #ffffff;
  box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.25);
}

.bod-thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bod-thumb-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  margin-bottom: 2.5px;
}

.bod-thumb-role {
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1;
}

.bod-thumb-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 0 22px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.bod-thumb-btn:hover {
  opacity: 1;
}

.bod-thumb-btn.swiper-button-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

@media (max-width: 1399px) {
  .bod-main-swiper {
    height: 500px;
  }
}

@media (max-width: 1199px) {
  .bod-main-swiper {
    height: auto;
  }

  .bod-slide-inner {
    flex-direction: column;
  }

  .bod-slide-photo {
    width: 100%;
    height: 35vh;
  }

  .bod-slide-content {
    padding: 40px 120px;
    max-height: 35vh;
  }

  .bod-thumb-img-wrap {
    width: 72px;
    height: 72px;
  }

  .bod-thumb-name,
  .bod-thumb-role {
    display: none;
  }

  .bod_sit {
    width: auto;
  }

  .bod_stand {
    width: 30%;
  }
}

@media (max-width: 991px) {
  .bod-slide-photo {
    height: 35vh;
  }

  .bod-slide-content {
    max-height: 35vh;
    padding: 40px 80px;
  }

  .bod-thumb-img-wrap {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 767px) {
  .bod-slide-photo {
    height: 35vh;
  }

  .bod-slide-content {
    max-height: 35vh;
    padding: 20px;
  }

  .bod-thumb-img-wrap {
    width: 52px;
    height: 52px;
  }

  .bod-thumb-btn {
    padding: 0 10px;
    font-size: 1.2rem;
  }

  .bod-thumb-wrap {
    padding: 16px 0;
  }

  .bod_header_icon {
    padding: 0 20px;
    position: static;
  }

  .bod_sit {
    width: auto;
    height: 100%;
  }

  .bod_stand {
    width: 45%;
    height: 100%;
  }
}

/* ── BOD Swiper End ──────────────────────────────────────── */
.cm_group {
  width: 100%;
  height: auto;
}

.cm_group img {
  width: 100%;
  height: auto;
}

.cm_image {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.cm_image img {
  width: 100%;
  height: auto;
}

.cm_name {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 5px;
  gap: 10px;
  cursor: pointer;
}

.cm_name p {
  line-height: 1;
  margin: 0;
  color: #30bebc;
  font-size: 1.25rem;
}

.cm_name i {
  color: #30bebc;
  font-size: 1.25rem;
}

.cm_add_info {
  display: none;
}

.cm_name.active i {
  transform: rotate(45deg);
}

.cm_name i {
  transition: transform 0.3s ease;
}

.cm_add_info p {
  margin: 10px 5px;
}

.nav_bg {
  width: 100%;
  height: 70px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  display: none;
}

.home_nav_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 15;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rodiag1 {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--rodiag1);
}

/* Nethika Styles */

/* Avishka Styles */
/* ── Table Responsive Start ───────────────────────────────────── */

.table-title {
  color: var(--cyan-color) !important;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0px 5px 5px 5px;
  border: 1px solid #009999;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
}

table thead td div.blue-box {
  width: 100%;
  padding: 3px;
  color: #ffffff !important;
  text-align: center !important;
  background: #0099a8 !important;
  border-radius: 0px;
  position: relative;
}

/* ── Table Responsive End ───────────────────────────────────── */
/* ── Accounts Policies Start ───────────────────────────────────── */

.ap-box {
  position: relative;
  border-top: 2px solid #009999;
  background-color: var(--teal-blue-bg2);
  padding: 10px;
  padding-top: 40px;
  margin-bottom: 15px;
}

.ap-title-box {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 5px 12px;
  background: #009999;
  color: #ffffff;
  font-weight: 600;
}

/* ── Accounts Policies Start ───────────────────────────────────── */

/* Common Colors Start */

.cyan-text {
  color: var(--cyan-color) !important;
}

.ligtblue-text {
  color: var(--ligtblue-color) !important;
}

/* ── Common color end ───────────────────────────────────── */
/* ── Common css end ───────────────────────────────────── */

/* lifter1 css start */
p.lifter1 {
  color: #252379;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

[data-theme="dark"] p.lifter1,
[data-theme="power-save"] p.lifter1 {
  color: #fff;
}

@media (max-width: 767px) {
  p.lifter1 {
    font-size: 24px;
  }
}

/* lifter1 css end */

/* lifter2 css start */
p.lifter2 {
  color: #252379;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

[data-theme="dark"] p.lifter2,
[data-theme="power-save"] p.lifter2 {
  color: #fff;
}

@media (max-width: 767px) {
  p.lifter2 {
    font-size: 24px;
  }
}

/* lifter2 css end */

/* common-cyanbox css start */
.common-cyanbox {
  width: 100%;
  height: fit-content;
  padding: 25px 20px 20px;
  background-color: var(--teal-blue-bg2);
  margin-bottom: 15px;
  margin-top: 20px;
}
.n-common-cyanbox {
  width: 100%;
  height: fit-content;
  padding: 25px 20px 20px;
  background-color: var(--teal-blue-bg2);
  margin-bottom: 15px;
  margin-top: 20px;
}

.common-cyanbox-head {
  max-width: 90%;
  position: relative;
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 6px 10px;
  border-radius: 20px;
  width: fit-content;
  transform: translateY(calc(-50% - 20px)) translateX(calc(-20px));
}

.common-cyanbox-head h3 {
  font-weight: 500;
  padding: 1px 0px !important;
  color: white !important;
  margin: 0 !important;
}

.common-cyanbox-head h3 span {
  font-weight: 300 !important;
  margin-left: 5px;
}

.common-cyanbox-body {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -30px;
}

@media (max-width: 991px) {
  .common-cyanbox-head {
    max-width: calc(100% - 20px);
  }
}

/* power save css for common-cyanbox */

[data-theme="dark"] .common-cyanbox,
[data-theme="power-save"] .common-cyanbox {
  background-color: #000000;
}

[data-theme="dark"] .common-cyanbox-head h3,
[data-theme="dark"] .common-cyanbox-head,
[data-theme="power-save"] .common-cyanbox-head h3,
[data-theme="power-save"] .common-cyanbox-head {
  color: #000000 !important;
}

/* power save css for common-cyanbox */

/* common-cyanbox css end */

/* common-cyantitlebox css start */

.common-cyantitlebox {
  max-width: 100%;
  position: relative;
  background-color: #40c1c7;
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 10px;
}

.common-cyantitlebox h3 {
  font-weight: 500;
  padding: 1px 0px !important;
  color: white !important;
  margin: 0 !important;
}

.common-cyantitlebox h3 span {
  font-weight: 300 !important;
  margin-left: 5px;
}

/* power save css for common-cyantitlebox */

[data-theme="dark"] .common-cyantitlebox,
[data-theme="power-save"] .common-cyantitlebox {
  background-color: #fff;
  color: #000000;
}

[data-theme="dark"] .common-cyantitlebox h3,
[data-theme="power-save"] .common-cyantitlebox h3 {
  color: #000000 !important;
}
/* power save css for common-cyantitlebox */

/* common-cyantitlebox css end */

/* common-bluetitlebox css start */

.common-bluetitlebox {
  max-width: 100%;
  position: relative;
  background-color: #253f94;
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 10px;
}

.common-bluetitlebox h3 {
  font-size: 20px;
  padding: 1px 0px !important;
  color: white !important;
  margin: 0 !important;
}

/* power save css for common-bluetitlebox */

[data-theme="dark"] .common-bluetitlebox,
[data-theme="power-save"] .common-bluetitlebox {
  background-color: #fff;
  color: #000000;
}

[data-theme="dark"] .common-bluetitlebox h3,
[data-theme="power-save"] .common-bluetitlebox h3 {
  color: #000000 !important;
}
/* power save css for common-bluetitlebox */

/* common-bluetitlebox css end */

/* cyan patch box css start */

.cyan-patchbox {
  display: block;
  position: relative;
  background-color: #f2f9f8;
  padding: 15px;
  margin-bottom: 10px;
}

/* power save css for syan patch */

[data-theme="dark"] .cyan-patchbox,
[data-theme="power-save"] .cyan-patchbox {
  background: none;
  /* color: #000000; */
}

[data-theme="dark"] .cyan-patchbox *,
[data-theme="power-save"] .cyan-patchbox * {
  color: #000000;
}
/* power save css for cyan patch */

/* syan patch box css end */

/* ── Common css end ───────────────────────────────────── */

/* ── OutlookBox css start ───────────────────────────────────── */

.outlookbox {
  position: relative;
  background-color: var(--outlook-blue);
  border-radius: 25px;
  padding: 20px;
}

.outlookbox-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: auto;
}

.outlook-head {
  margin-bottom: 5px;
}

.outlook-head h3 {
  color: #fff;
  font-size: 22px;
  margin-top: 0;
  margin-right: 45px;
}

.outlook-body *,
.outlook-body li:before {
  color: #fff !important;
}

/* power save css for OutlookBox */

[data-theme="dark"] .outlookbox,
[data-theme="power-save"] .outlookbox {
  background-color: #ffffff;
}

[data-theme="dark"] .outlook-head h3,
[data-theme="power-save"] .outlook-head h3 {
  background-color: #000000;
}

[data-theme="dark"] .outlook-head * [data-theme="dark"] .outlook-body *,
[data-theme="dark"] .outlook-body li:before,
[data-theme="power-save"] .outlook-head *,
[data-theme="power-save"] .outlook-body *,
[data-theme="power-save"] .outlook-body li:before {
  color: #000000 !important;
  background: #fff !important;
}

/* power save css for OutlookBox */

/* ── OutlookBox css end ───────────────────────────────────── */

/* ── eao-table css end ───────────────────────────────────── */

.eao-tablebox {
  width: 100%;
}

.eao-tablebox .table-responsive {
  border: 0;
}

.eao-table {
  border-spacing: 5px;
  border-collapse: separate;
  margin-bottom: 0px;
}

table.eao-table td {
  background: #fff;
  font-size: 13px;
  line-height: 1.3;
  border-bottom: 2px solid #40c1c7;
}

table.eao-table thead tr td {
  font-size: 13px;
  font-weight: 600;
}

table.eao-table thead tr td + td {
  text-align: center;
  color: #40c1c7;
}

table.eao-table tbody tr td + td {
  text-align: center;
}

table.eao-table tbody tr td:first-child {
  font-size: 13px;
  font-weight: 600;
}

table.eao-table tbody tr:last-child td + td {
  position: relative;
  vertical-align: middle;
}

table.eao-table tbody tr td .blue-box {
  width: 100%;
  padding: 3px;
  color: #ffffff !important;
  text-align: center !important;
  background: #0099a8 !important;
  border-radius: 0px;
  position: relative;
}

[data-theme="power-save"] table.eao-table td,
[data-theme="dark"] table.eao-table td {
  background: #000000;
}

/* ── eao css end ───────────────────────────────────── */

/* ── signature-box css start ───────────────────────────────────── */

.signature-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 10px;
  margin: 15px 10px;
}

.signature-item {
  width: calc(100% / 4 - 12px);
}

img.img-fluid.signature-img {
  max-height: 100px;
}

.signature-name {
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .signature-item {
    width: calc(100% / 3 - 12px);
  }
}

@media (max-width: 991px) {
  .signature-item {
    width: calc(100% / 2 - 12px);
  }
}

/* ── signature-box css end ───────────────────────────────────── */

/* ── qr-box-box css end ───────────────────────────────────── */

.qr-box {
  display: flex;
  gap: 10px;
  margin: 20px 0px 15px;
}

.qr-img {
  max-width: 220px;
}

.qr-img img {
  width: 100%;
  height: auto;
}

.qr-boxtext {
  max-width: 160px;
  line-height: 1.3;
}

/* ── qr-box-box css end ───────────────────────────────────── */

/* ── the-acbox css start ───────────────────────────────────── */

.the-acbox {
  display: flex;
  margin: 30px 0px 10px;
  justify-content: space-between;
  align-items: flex-end;
}

.the-acdia {
  position: relative;
  width: 60%;
}

.the-acrightbox {
  position: relative;
  width: 35%;
}

.the-acline {
  width: 150px;
  margin-bottom: 30px;
  transform: translateX(-25%);
}

.acrightbox-repimg {
  width: 80%;
  margin-bottom: 10px;
}

img.img-fluid.acimg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  transform: translateX(20px);
}

@media (max-width: 991px) {
  .the-acbox {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .the-acdia {
    position: relative;
    width: 95%;
  }
  .the-acline {
    display: none;
  }
  .the-acrightbox {
    position: relative;
    width: 95%;
  }
}

/* ── the-acbox css end ───────────────────────────────────── */

/* ── green-linediv css start ───────────────────────────────────── */

.green-linediv {
  width: 100%;
  border-bottom: 2px solid #4cb748;
  margin-bottom: 10px;
}

.gri-imgbox {
  max-width: 50px;
}

/* ── green-linediv css end ───────────────────────────────────── */

/* ── susta-block css start ───────────────────────────────────── */

.susta-block {
  display: flex;
  justify-content: space-between;
}

.susta-block-left {
  width: 40%;
}

.block-left-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.left-item-icon {
  width: 70px;
  min-width: 70px;
}

.left-item-text div {
  color: #01c5c1;
  font-size: 18px;
  font-weight: 600;
}

.susta-block-right {
  width: calc(60% - 10px);
}

.right-item-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: space-between;
}

.block-right-item {
  margin-bottom: 15px;
}

.right-item-title {
  color: #01c5c1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.right-item-flexitem {
  display: flex;
  width: calc(100% / 3 - 12px);
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}

.right-item-flexitem img {
  max-width: 60px;
  height: 60px;
}

@media (max-width: 1200px) {
  .right-item-flexitem img {
    max-width: 55px;
    height: 55px;
  }
}

@media (max-width: 991px) {
  .susta-block {
    flex-direction: column;
  }

  .susta-block-left,
  .susta-block-right {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .right-item-flexitem {
    gap: 7px;
  }
  .right-item-flex {
    row-gap: 15px;
  }
}

/* ── susta-block css end ───────────────────────────────────── */

.gradient-bt {
  border-width: 1px;
  border-top: 2px;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
  border-style: solid;
  border-image: linear-gradient(to right, #27aae1, #58b947) 1;
}

/* ── gp-flexbox css start ───────────────────────────────────── */

.gp-flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 14px;
}

.gp-flexitem {
  width: calc(100% / 2);
  border-right: 2px solid #4cb748;
}

.gp-flexitem .gp-flexitem-cont {
  padding: 15px 0px;
  height: 100%;
  margin-top: -7px;
}

.gp-flexbox .gp-flexitem:nth-child(n + 3) .gp-flexitem-cont {
  border-top: 2px solid #4cb748;
}

img.img-fluid.gp-qrcode {
  max-width: 130px;
  margin-top: 10px;
}

.gp-flexbox .gp-flexitem:nth-child(even) {
  padding-left: 10px;
  border-right: 0;
}

.gp-flexbox .gp-flexitem:nth-child(odd) {
  padding-right: 10px;
}

.gp-flexitem.full-width {
  width: 100%;
  border-right: 0;
}

.gp-subflex {
  display: flex;
  gap: 30px;
  margin-top: 15px;
}

img.img-fluid.gp-subflexitem-img {
  max-width: 190px;
}

@media (max-width: 1200px) {
  .gp-flexbox .gp-flexitem:nth-child(n + 3) .gp-flexitem-cont {
    border-top: 2px solid #4cb748;
  }
  .gp-subflex {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-direction: column;
  }

  .gp-subflexitem {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gp-subflexitem img.gp-qrcode {
    margin-top: 0px;
  }
}

@media (max-width: 540px) {
  .gp-flexitem {
    width: calc(100%);
    border-right: 0;
  }

  .gp-flexbox .gp-flexitem:nth-child(n + 2) .gp-flexitem-cont {
    border-top: 2px solid #4cb748;
  }

  .gp-flexbox .gp-flexitem:nth-child(even) {
    padding-left: 0px;
    border-right: 0;
  }

  .gp-flexbox .gp-flexitem:nth-child(odd) {
    padding-right: 0px;
  }
}

[data-theme="dark"] .gp-flexitem-cont *,
[data-theme="power-save"] .gp-flexitem-cont * {
  color: #fff;
}

/* ── gp-flexbox css end ───────────────────────────────────── */

.cyan-borderbox {
  border: 2px solid #40c1c7;
  padding: 15px 20px;
  width: fit-content;
}

/* ──  medium-box css start  ───────────────────────────────────── */

.medium-box {
  width: 100%;
  margin-top: 80px;
  padding-left: 15%;
  padding-right: 20px;
  padding-bottom: 100px;
  border-top: 2px solid #40c1c7;
  border-left: 2px solid #40c1c7;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
}

.medium-flexbox {
  display: flex;
  gap: 4%;
  transform: translateY(-35px);
  justify-content: space-between;
}

.medium-item {
  /* width: 10%; */
  max-width: 90px;
  min-width: 70px;
  text-align: center;
}

.medium-item p {
  color: #006fba !important;
  line-height: 1.2;
}

.medium-item img {
  max-width: 60px;
  margin-bottom: 5px;
}

.medium-secondbox {
  padding-left: 15%;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -110px;
}

.secondbox-img {
  width: 300px;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.medium-secondbox img {
  width: 100%;
  height: auto;
}

.medium-secondboxqr {
  max-width: 300px;
}

.secondboxqr-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.secondboxqr-item img {
  width: 100px;
}

@media (max-width: 991px) {
  .medium-flexbox {
    display: flex;
    gap: 4%;
    transform: translateY(-35px);
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .medium-item {
    width: 29%;
    max-width: unset;
    min-width: 70px;
    text-align: center;
  }

  .medium-secondbox {
    padding-left: 15%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: -110px;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .medium-box {
    padding-left: 10%;
    padding-right: 0px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .medium-flexbox {
    display: flex;
    gap: 4%;
    transform: translateY(-35px);
    justify-content: space-evenly;
    row-gap: 5px;
    flex-wrap: wrap;
  }

  .medium-item {
    width: 44%;
    max-width: unset;
    min-width: 70px;
    text-align: center;
  }

  .medium-secondbox {
    padding-left: 10%;
  }

  .secondbox-img {
    width: 100%;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
  }
}

/* ──  medium-box css end  ───────────────────────────────────── */

/* ──  of-accflex css start  ───────────────────────────────────── */

.of-accflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 15px;
}

.of-accflex-item {
  width: calc(100% / 2 - 5px);
  padding: 10px;
}

.of-accordion {
  width: 100%;
  background: #e7f5f4;
  border-radius: 20px;
}

a.of-accsub-title {
  text-decoration: none;
  padding: 14px 15px;
  display: flex;
  width: 100%;
  align-items: center;
}

a.of-accsub-title i {
  color: #30bebc;
  font-size: 22px;
  margin-right: 5px;
  transform: rotate(0deg);
  transition: all 0.4s ease;
}

a.of-accsub-title.active i {
  transform: rotate(180deg);
}

.accsub-title-cont {
  display: flex;
  gap: 20px;
  font-size: 20px;
  width: 100%;
  align-items: center;
}

.bluebg-titlebox {
  background: #252379;
  color: #fff;
  padding: 3px 12px;
  height: fit-content;
  border-radius: 20px;
  width: fit-content;
}

.accsub-title-icons {
  display: flex;
  gap: 10px;
}

.accsub-title-icons img {
  width: 45px;
  height: 45px;
}

.of-accsub-content {
  padding: 10px 15px;
  display: none;
}

.accsub-contbox {
  border-radius: 20px;
  border: 2px solid #30bebc;
  overflow: hidden;
}

.accsub-contboxitem {
  padding: 10px 20px 7px;
  border-bottom: 2px solid #30bebc;
  background: #fff;
}

.accsub-contboxitem.bb-blue {
  border-bottom: 2px solid #30bebc !important;
}

.accsub-contboxitem:last-child {
  border-bottom: 0;
}

.contboxitem-fig {
  color: #30bebc;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 7px;
}

.contboxitem-bigtitle {
  color: #30bebc;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 7px;
}

.accsub-contboxitem p {
  margin-bottom: 4px;
}

.contboxitem-comb {
  color: #30bebc;
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}

.contboxitem-comb span {
  background: #30bebc;
  color: #fff;
  font-size: 15px;
  padding: 1px 8px;
  border-radius: 20px;
}

.contboxitem-flex {
  display: flex;
  flex-wrap: wrap;
}

.contboxitem-flexitem {
  width: 50%;
}

.contboxitem-flexitem:nth-child(2) {
  border-left: 1px solid #30bebc;
  padding-left: 15px;
}

@media (max-width: 1200px) {
  .accsub-title-cont {
    font-size: 18px;
  }
  .bluebg-titlebox {
    background: #252379;
    color: #fff;
    padding: 4px 12px;
    height: fit-content;
    border-radius: 10px;
    width: 50%;
    line-height: 1.2;
  }
}

@media (max-width: 991px) {
  a.of-accsub-title {
    text-decoration: none;
    padding: 10px 10px;
    display: flex;
    width: 100%;
    align-items: flex-end;
  }

  .of-accsub-content {
    padding: 5px 10px 10px;
    display: none;
  }

  .accsub-contbox {
    border-radius: 15px;
  }

  .accsub-title-cont {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .accsub-contboxitem {
    padding: 10px 15px 7px;
  }

  .bluebg-titlebox {
    border-radius: 10px;
    width: calc(100% + 25px);
    line-height: 1.2;
  }

  .accsub-title-icons img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .of-accflex-item {
    width: calc(100%);
  }
  .contboxitem-bigtitle {
    color: #30bebc;
    font-size: 25px;
  }
  .contboxitem-fig {
    font-size: 30px;
  }
}

@media (max-width: 450px) {
  .of-accflex-item {
    padding: 0;
  }
}

[data-theme="dark"] .accsub-contboxitem,
[data-theme="power-save"] .accsub-contboxitem {
  border-bottom: 2px solid #30bebc;
  background: none;
}
[data-theme="dark"] .of-accordion,
[data-theme="power-save"] .of-accordion {
  border: 1px solid #e7f5f4;
  background: none;
}

[data-theme="power-save"] .si-tablebox table tbody tr td + td,
[data-theme="dark"] .si-tablebox table tbody tr td + td {
  color: #fff;
}

[data-theme="power-save"] .of-accitem-tag,
[data-theme="dark"] .of-accitem-tag {
  color: #fff;
}

.of-accitem-tagbox {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 7px;
  padding: 12px 10px 7px;
  border-top: 1px solid;
}

.of-accitem-tag {
  color: #000;
}

.of-accitem-tag span {
  background: #30bebc;
  color: #fff;
  font-size: 15px;
  padding: 1px 8px;
  border-radius: 20px;
}

/* ──  of-accflex css end  ───────────────────────────────────── */

/* ──  si-box css start  ───────────────────────────────────── */

.si-box {
  position: relative;
  margin: 20px 0px 15px;
}

.si-blue-box {
  background: #252379;
  color: #fff;
  padding: 3px 12px;
  height: fit-content;
  border-radius: 20px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 7px;
}

.sil-blueline-box {
  background: #fff;
  color: #252379;
  border: 1px solid #252379;
  padding: 3px 12px;
  height: fit-content;
  border-radius: 20px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 7px;
}

.si-tablebox {
  position: relative;
  max-width: 550px;
  z-index: 2;
}

.si-tablebox table tbody,
.si-tablebox table thead {
  background: none !important;
}

.si-tablebox table tr td + td {
  text-align: center;
}
.si-tablebox table thead tr td + td {
  font-size: 15px;
  font-weight: 500;
}
.si-tablebox table tbody tr td + td {
  color: #252379;
}

.si-tablebox table tbody tr:last-child td,
.si-tablebox table tbody tr:last-child {
  border-bottom: 0px;
}

.si-tablebox img {
  width: 45px;
  margin: 10px 0px;
}

.si-catbox {
  position: relative;
  max-width: 570px;
  display: flex;
  justify-content: flex-start;
  padding: 10px 0px;
  margin: 10px 0px;
  flex-wrap: wrap;
  row-gap: 15px;
  z-index: 2;
}

.si-catitem {
  display: flex;
  width: 50%;
  align-items: center;
  gap: 15px;
}

.si-catitem img {
  max-width: 50px;
  height: auto;
}

.si-imgbox {
  width: calc(100% - 500px);
  max-width: 510px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 991px) {
  .si-imgbox {
    width: 100%;
    max-width: 500px;
    position: relative;
    bottom: auto;
    right: auto;
    margin-left: auto;
    z-index: 1;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .si-catitem img {
    max-width: 45px;
    height: auto;
  }
  .si-catitem {
    width: 100%;
  }
}

/* ──  si-box css end  ───────────────────────────────────── */

/* ──  awards css start  ───────────────────────────────────── */
.cyan-titlebox {
  padding: 4px 12px;
  background: #30bebc;
  width: fit-content;
  border-radius: 20px;
  color: #fff;
}

.awards-flexbox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 15px;
  justify-content: space-between;
}

.awards-col {
  width: calc(100% / 3 - 5px);
}

.awards-item {
  width: 100%;
  border-width: 1px;
  border-top: 2px;
  border-left: 0;
  border-bottom: 0;
  border-right: 0;
  border-style: solid;
  border-image: linear-gradient(to right, #27aae1, #58b947) 1;
  background-color: var(--awards-bg);
  padding: 15px 15px 10px;
  gap: 10px;
  margin-bottom: 15px;
}

.awards-item-flex {
  width: 100%;
  height: auto;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.awards-item.large {
  width: 100% !important;
}

.awards-item.large .awards-item-flex-img {
  width: 50% !important;
  max-width: unset;
  min-height: 100%;
}

.awards-item.large .awards-item-flex-img img {
  object-fit: cover;
  height: 100%;
}

.awards-item.large .awards-item-flex-content {
  width: 50% !important;
  max-width: unset;
  padding: 0px 10px;
}

.awards-item p {
  margin-bottom: 5px !important;
}

.awards-largetext {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    rgba(35, 86, 167, 1) 0%,
    rgba(48, 190, 188, 1) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
}

.midweight {
  font-weight: 600 !important;
}

.awards-item .awards-item-flex-img {
  width: 38%;
  max-width: 110px;
}

.awards-item .awards-item-flex-content {
  width: calc(62% - 10px);
}

.awards-item h2 {
  margin-top: 0;
  margin-bottom: 7px;
}

.awards-item ul {
  padding-left: 0 !important;
}

.awards-2col {
  width: calc(100% / 1.5 - 5px);
}

.awards-2col .awards-item .awards-item-flex-img {
  width: 64%;
  max-width: 400px;
}

.text-cyan {
  color: var(--cyan-color) !important;
  font-weight: bold;
  font-size: 32px;
}

@media (max-width: 991px) {
  .awards-col,
  .awards-2col {
    width: calc(100%);
  }

  .awards-item.large .awards-item-flex {
    width: 100%;
    flex-direction: column;
  }

  .awards-item.large .awards-item-flex-img {
    width: 100% !important;
    max-width: unset;
    min-height: 100%;
  }

  .awards-item.large .awards-item-flex-content {
    width: 100% !important;
  }
}

/* ──  awards css end  ───────────────────────────────────── */

/* ──  Snapshot css end  ───────────────────────────────────── */

.sp-flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sp-flexbox-col {
  width: calc(100% / 3 - 20px);
  display: flex;
  flex-direction: column;
}

.sp-flexbox-col-group {
  width: 100%;
}

.flexbox-col-groupitem {
  padding: 7px 0px;
}

.sp-flexbox-col-group .flexbox-col-groupitem.mob-hide {
  display: block;
}

.sp-flexbox-col-group .flexbox-col-groupitem.mob-shoe {
  display: none;
}

.sp-flexbox-col:first-child .sp-flexbox-col-group .flexbox-col-groupitem {
  padding: 10px 0px;
  border-bottom: 1px solid #006fba;
}

.sp-flexbox-col:first-child .sp-flexbox-col-group .flexbox-col-groupitem img {
  max-width: 160px;
  max-height: 100px;
  margin: 10px 0px;
}

.sp-flexbox-col
  .sp-flexbox-col-group:last-child
  .flexbox-col-groupitem:last-child {
  border-bottom: 0;
}

.groupitem-lgfig {
  font-size: 32px;
  font-weight: bold;
  color: #30bebc;
  line-height: 1.1;
}

.groupitem-smfig,
.groupitem-smtext {
  font-size: 16px;
  color: #006fba;
  line-height: 1.12;
}

.groupitem-textflex {
  display: flex;
  gap: 7px;
  margin: 15px 0px;
  align-items: center;
  justify-content: center;
}

.sp-flexbox-col:first-child
  .sp-flexbox-col-group
  .flexbox-col-groupitem
  .groupitem-textflex
  img {
  max-height: 60px;
}

.textflex-text {
  font-size: 16px;
  line-height: 1.1;
  width: 50%;
}

.textflex-text:first-child {
  text-align: right;
}

.textflex-text:last-child {
  text-align: left;
}

.groupitem-mdtext.black {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--blacktxt);
}

.groupitem-smtext.black {
  color: var(--blacktxt);
}

.groupitem-titletext {
  font-size: 28px;
  color: #006fba;
  font-weight: 600;
  line-height: 1.2;
}

.groupitem-gr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.groupitem-grflex {
  display: flex;
  position: relative;
  width: 100%;
  gap: 10px;
  align-items: center;
}

.groupitem-grrebox {
  position: relative;
  width: 100%;
  border-top: 2px solid;
}

.groupitem-grabtext {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-50% - 1px));
  font-size: 17px;
  line-height: 1.1;
  background: #fff;
  padding: 5px 10px 5px 0px;
  font-weight: 600;
  max-width: 230px;
  color: #000;
}

.groupitem-grfig {
  font-size: 22px;
  color: #006fba;
  line-height: 1;
  margin-top: -5px;
  text-align: center;
}

.groupitem-grbox {
  margin-top: 10px;
  max-width: 85%;
}

@media (max-width: 1199px) {
  .sp-flexbox-col-group .flexbox-col-groupitem.mob-hide {
    display: none;
  }

  .sp-flexbox-col-group .flexbox-col-groupitem.mob-shoe {
    display: block;
  }

  .sp-flexbox-col:first-child .sp-flexbox-col-group .flexbox-col-groupitem {
    min-height: 97px;
  }

  .sp-flexbox-col:first-child
    .sp-flexbox-col-group:nth-child(4)
    .flexbox-col-groupitem {
    min-height: 245px;
  }

  .sp-flexbox-col:first-child
    .sp-flexbox-col-group:last-child
    .flexbox-col-groupitem:last-child {
    border-bottom: 1px solid #006fba;
  }

  .sp-flexbox-col:first-child {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
  }

  .sp-flexbox-col {
    width: calc(100% / 2 - 20px);
    display: flex;
    flex-direction: column;
  }

  .sp-flexbox-col:first-child .sp-flexbox-col-group {
    width: calc(100% / 2 - 10px);
  }

  .groupitem-gr {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .sp-flexbox-col:first-child .sp-flexbox-col-group .flexbox-col-groupitem {
    min-height: auto;
  }

  .sp-flexbox-col:first-child
    .sp-flexbox-col-group:nth-child(4)
    .flexbox-col-groupitem {
    min-height: auto;
  }

  .sp-flexbox-col:first-child .sp-flexbox-col-group {
    width: calc(100%);
  }
  .sp-flexbox-col {
    width: calc(100%);
  }
  .groupitem-gr {
    margin-top: 10px;
    max-width: 400px;
  }
}

/* ──  Snapshot css end  ───────────────────────────────────── */

/* ──  nf-flex css start  ───────────────────────────────────── */

.nf-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nf-flex-item {
  width: calc(100% / 3 - 7px);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  line-height: 1.2;
}

.nf-flex-icon {
  width: 60px;
}

.nf-flex-tile {
  padding: 5px 12px;
  border-radius: 20px;
  background: #30bebc;
  color: #fff;
  margin-bottom: -15px;
  margin-top: 10px;
  z-index: 2;
}

.nf-flex-box {
  padding: 25px 20px 20px;
  border: 2px solid #01c5c1;
  border-radius: 20px;
  background: #fff;
}

.nf-flex-itembox {
  padding: 12px 0px 5px;
  border-bottom: 2px solid #30bebc;
}

.nf-flex-box .nf-flex-itembox:last-child {
  border-bottom: 0;
}

.nf-lgfig {
  font-size: 32px;
  color: #30bebc;
  margin-bottom: 4px;
}

.nf-bluetext {
  color: #006fba;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 3px;
}

.nf-flex-box p {
  margin-bottom: 7px;
}

.nf-flex-2item {
  width: calc(100% / 1.5 - 7px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nf-flex-2item .nf-flex-item {
  width: calc(100% / 2 - 7px);
}

.nf-itemflex {
  display: flex;
}

.nf-itemflex-box {
  width: 33%;
  text-align: center;
  padding: 10px 5px;
  border-right: 2px solid #000;
}

.nf-itemflex-box:last-child {
  border-right: 0;
}

.nf-itemflex-box p {
  line-height: 1.2;
}

.nf-textcyan {
  font-size: 24px;
  color: #30bebc;
  line-height: 1.1;
}

.nf-img {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.nf-img img {
  width: 50px;
  margin-top: 5px;
}

.nf-img img.nf-infoimg {
  width: 100%;
}

.nf-imgflex {
  display: flex;
  justify-content: space-between;
}

.nf-imgflex div:first-child {
  padding-right: 20px;
}

.nf-imgflex-img {
  width: 50px;
  margin-bottom: 12px;
}

.nf-flex-fullitem.mt-2 {
  width: 100%;
}

.nf-flexcontent {
  display: flex;
  justify-content: space-between;
}

.nf-flexcontent-img {
  max-width: 200px;
  width: 100%;
  margin-top: -81px;
  margin-right: -41px;
}

@media (max-width: 1199px) {
  .nf-itemflex {
    display: flex;
    flex-direction: column;
  }

  .nf-itemflex-box {
    width: 100%;
    border-right: 0;
    border-bottom: 2px solid #000;
  }

  .nf-itemflex-box:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 991px) {
  .nf-flex-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .nf-flex-icon {
    width: 75px;
  }

  .nf-flex-2item {
    width: calc(100%);
    flex-wrap: wrap;
    flex-direction: column;
  }
  .nf-flex-2item .nf-flex-item {
    width: calc(100%);
    margin-bottom: 20px;
  }

  .nf-img img.nf-infoimg {
    width: 100%;
    max-width: 300px;
  }

  .nf-infoimg-image {
    margin-left: auto;
    margin-top: -30px;
  }

  .nf-img {
    align-items: flex-end;
  }

  .nf-itemflex {
    display: flex;
    flex-direction: row;
  }

  .nf-itemflex-box {
    width: 100%;
    padding: 6px 7px;
    border-right: 2px solid #000;
    border-bottom: 0;
  }

  .nf-itemflex-box:last-child {
    border-bottom: 0;
    border-right: 0;
  }
}

@media (max-width: 420px) {
  .nf-itemflex {
    display: flex;
    flex-direction: column;
  }

  .nf-itemflex-box {
    width: 100%;
    border-right: 0;
    border-bottom: 2px solid #000;
  }

  .nf-itemflex-box:last-child {
    border-bottom: 0;
  }
}

/* ──  nf-flex css end  ───────────────────────────────────── */

/* ──  nf-flex css end  ───────────────────────────────────── */

.journey-accordion {
  margin-bottom: 20px;
  border: 2px solid #30bebc;
}

a.journey-title {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  align-items: center;
}

.journey-cyantitle {
  padding: 10px 15px;
  background: #30bebc;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  font-size: 20px;
}

a.journey-title i {
  font-size: 20px;
  color: #30bebc;
  transform: rotate(0deg);
  transition: all 0.4s ease;
}

a.journey-title.active i {
  transform: rotate(180deg);
}

.journey-accordion a.journey-title:hover,
.journey-accordion a.journey-title.active {
  background-color: rgb(243, 243, 243);
}

.journey-content {
  display: none;
}

.journey-contbox {
  padding: 10px 10px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.journey-contbox-item {
  width: 33.3%;
  padding: 15px 10px;
  border-right: 2px solid #30bebc;
}

.journey-year {
  font-size: 24px;
  color: #252379;
  font-weight: 600;
  line-height: 1.1;
}

.journey-contbox .journey-contbox-item:nth-child(3),
.journey-contbox .journey-contbox-item:nth-child(6),
.journey-contbox .journey-contbox-item:nth-child(9) {
  border-right: 0;
}

.journey-contbox .journey-contbox-item:nth-child(n + 4) {
  border-top: 2px solid #30bebc;
}

.journey-contbox-item.large-item {
  width: 100%;
  border-right: 0;
}

@media (max-width: 1199px) {
  .journey-contbox-item {
    width: 50%;
  }
  .journey-contbox .journey-contbox-item:nth-child(3),
  .journey-contbox .journey-contbox-item:nth-child(6),
  .journey-contbox .journey-contbox-item:nth-child(9) {
    border-right: 2px solid #30bebc;
  }
  .journey-contbox .journey-contbox-item:nth-child(n + 3) {
    border-top: 2px solid #30bebc;
  }

  .journey-contbox .journey-contbox-item:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 991px) {
  .journey-contbox-item {
    width: 100%;
  }

  .journey-contbox .journey-contbox-item {
    border-right: 0px !important;
  }

  .journey-contbox .journey-contbox-item:nth-child(n + 2) {
    border-top: 2px solid #30bebc;
  }
}

[data-theme="dark"] .journey-year *,
[data-theme="power-save"] .journey-year {
  color: #fff;
}

/* ──  nf-flex css end  ───────────────────────────────────── */

/* ──  gs-table css start  ───────────────────────────────────── */

table.gs-table thead tr td {
  text-align: center;
}

table.gs-table thead tr td img {
  max-width: 130px;
  min-width: 120px;
  max-height: 55px;
}

.blue-gradientbox {
  background: linear-gradient(
    90deg,
    rgba(35, 86, 167, 1) 0%,
    rgba(48, 190, 188, 1) 100%
  );
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}

.red-gradientbox {
  background: linear-gradient(
    90deg,
    rgba(231, 1, 50, 1) 0%,
    rgba(255, 207, 0, 1) 100%
  );
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  min-width: 130px;
}

.purple-gradientbox {
  background: linear-gradient(
    90deg,
    rgba(92, 0, 83, 1) 0%,
    rgba(85, 195, 205, 1) 100%
  );
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}

.table-grdtext {
  background: linear-gradient(
    90deg,
    rgba(35, 86, 167, 1) 0%,
    rgba(48, 190, 188, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px;
  font-weight: 600;
}

.table-grdmdtext {
  background: linear-gradient(
    90deg,
    rgba(35, 86, 167, 1) 0%,
    rgba(48, 190, 188, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 5px;
  font-weight: 600;
  margin-left: 5px;
}

td div.table-grpicell {
  display: flex;
  align-items: center;
  flex-direction: row;
}

img.table-grimg {
  width: 45px;
  height: 45px;
}

/* ──  gs-table css end  ───────────────────────────────────── */

/* Download center Custon css */

.download-manager-acc {
  margin-bottom: 5px !important;
}

.download-manager-acc.second-level {
  padding: 15px 35px 15px 20px;
  text-decoration: none;
  display: flex;
  align-items: center !important;
  justify-content: left;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #fff;
  position: relative;
}

.download-manager-acc.second-level h4 {
  margin-bottom: 0;
  color: #464646;
  font-size: 18px;
  font-weight: 500;
}

/* Download center Custon css */

/* Search Page css */

/* Search Page Styles */

.search-container input {
  padding: 10px 15px;
  border: 1px solid grey;
  width: 80%;
  border-radius: 10px;
}
.search-container input[type="submit"] {
  width: 20%;
  margin-left: 10px;
  background-color: var(--search-color);
  border: none;
  color: white;
}
.search-container input[type="search"] {
  color: black;
}
.search-container form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.search-container .search-result {
  margin-top: 15px;
}
.search-container .search-result .result {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #b1d2f4;
  text-decoration: none;
}
.search-container .search-result .result h4 {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: var(--search-color);
}
.search-container .search-result .result p {
  margin: 0;
}
.search-container .no-results {
  margin-top: 25px;
  width: 100%;
  padding: 50px;
  text-align: center;
  background-color: var(--search-color);
  border-radius: 15px;
}
.search-container .no-results p {
  margin: 0;
}

@media (max-width: 540px) {
  .search-container form {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-container input {
    width: 100%;
  }
  .search-container input[type="submit"] {
    width: 100%;
    margin: 10px 0 0 0;
  }
}

/* Search Page Styles */

/* fh-grid Styles start */

.fh-grid {
  padding: 15px;
  border: 2px solid #0098a9;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 5px;
}

.fh-grid-item {
  padding: 5px;
}

@media (max-width: 991px) {
  .fh-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .fh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .fh-grid {
    padding: 5px;
  }
}

/* fh-grid Styles end */

.finacial-signaturebox {
  max-width: 180px;
  height: 120px;
  display: flex;
  align-items: flex-end;
}

.finacial-signaturebox img {
  max-width: 180px;
  max-height: 100px;
}

@media (max-width: 991px) {
  .finacial-signaturebox {
    height: 90px;
  }
}

/* Download Excel css start */

.download-table {
  display: flex;
  justify-content: flex-end;
}
.download-table .exportToExcel {
  font-size: 14px;
  text-decoration: none;
  color: #0099a8;
  margin: 10px 0;
  font-weight: bold;
}
.download-table .exportToExcel i {
  margin-right: 2.5px;
  color: #0099a8;
}

/* Download Excel css end */

/* full-banner css start */

.full-banner {
  width: 100%;
  max-width: 1980px;
  height: fit-content;
  display: flex;
  margin-top: 10px;
}

.full-banner-left {
  width: 38%;
  height: 100%;
  background: #253f94;
  padding: 90px 4%;
  display: flex;
  align-items: flex-end;
}

.banner-left-container {
  height: fit-content;
  color: #fff;
}

.banner-title {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 27px;
}

.banner-largetext {
  font-size: 55px;
  line-height: 1;
  margin-bottom: 14px;
}

.banner-mediumtext {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 300;
}

.banner-lifterboxwrap {
  margin-top: 16px;
}

.banner-lifterbox {
  background: #2fbebc;
  padding: 45px 40px;
  width: calc(100% + 110px);
  z-index: 3;
  position: relative;
  border-radius: 15px;
}

.banner-lifterbox-iconbox {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-top: -90px;
  margin-bottom: 10px;
}

.banner-lifterbox-text {
  border-radius: 15px;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  position: relative;
}

.fill-banner-right {
  width: 62%;
}

.fill-banner-parallaxbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fill-banner-parallaxbox img {
  object-fit: cover;
  width: 100%;
  height: 110%;
}

@media (max-width: 1480px) {
  .full-banner-left {
    width: 38%;
    height: 100%;
    background: #253f94;
    padding: 90px 4% 60px;
    display: flex;
    align-items: flex-end;
  }

  .banner-title {
    font-size: 55px;
    line-height: 1;
    margin-bottom: 22px;
  }

  .banner-largetext {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .banner-mediumtext {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 300;
  }
}

@media (max-width: 1366px) {
  .full-banner-left {
    width: 38%;
    padding: 80px 4% 45px;
  }

  .banner-title {
    font-size: 50px;
    margin-bottom: 22px;
  }

  .banner-largetext {
    font-size: 45px;
    margin-bottom: 14px;
  }

  .banner-mediumtext {
    font-size: 20px;
  }

  .banner-lifterbox-text {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .full-banner-left {
    width: 38%;
    padding: 55px 4% 35px;
  }
  .banner-title {
    font-size: 46px;
    margin-bottom: 18px;
  }
  .banner-largetext {
    font-size: 42px;
    margin-bottom: 14px;
  }
  .banner-mediumtext {
    font-size: 20px;
  }
  .banner-lifterbox-text {
    font-size: 23px;
  }
  .banner-lifterbox-iconbox {
    width: 75px;
    height: 75px;
    margin-left: auto;
    margin-top: -90px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .full-banner {
    height: fit-content;
    flex-direction: column;
  }
  .full-banner-left {
    width: 100%;
    padding: 40px 4% 35px;
  }
  .banner-lifterboxwrap {
    margin-top: 20px;
    margin-bottom: -60px;
  }
  .banner-lifterbox {
    padding: 35px 35px;
    width: calc(100%);
  }
  .banner-title {
    font-size: 40px;
    margin-bottom: 18px;
  }
  .banner-largetext {
    font-size: 36px;
    margin-bottom: 14px;
  }
  .banner-mediumtext {
    font-size: 18px;
  }
  .fill-banner-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .full-banner-left {
    width: 100%;
    padding: 35px 4% 30px;
  }
  .banner-title {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .banner-largetext {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .banner-mediumtext {
    font-size: 18px;
  }

  .banner-lifterboxwrap {
    margin-top: 20px;
    margin-bottom: -55px;
  }

  .banner-lifterbox {
    padding: 30px 30px;
    width: calc(100%);
  }

  .banner-lifterbox-text {
    font-size: 22px;
  }

  .fill-banner-parallaxbox {
    min-height: 400px;
    position: relative;
  }
  .fill-banner-parallaxbox img {
    object-fit: cover;
    position: absolute;
  }
}

@media (max-width: 580px) {
  .banner-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .banner-largetext {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .banner-mediumtext {
    font-size: 16px;
  }
  .banner-lifterbox-text {
    font-size: 20px;
  }
  .banner-lifterbox {
    padding: 25px;
    width: calc(100%);
  }
  .banner-lifterbox-iconbox {
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-top: -75px;
    margin-bottom: 10px;
  }
  .fill-banner-parallaxbox {
    min-height: 450px;
    position: relative;
  }
  .fill-banner-parallaxbox img {
    object-fit: cover;
    height: 115%;
    position: absolute;
  }
}

@media (max-width: 480px) {
  .full-banner-left {
    width: 100%;
    padding: 30px 3% 30px;
  }
  .banner-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .banner-lifterbox-text {
    font-size: 18px;
  }
  .banner-lifterbox-iconbox {
    width: 65px;
    height: 65px;
    margin-left: auto;
    margin-top: -65px;
    margin-bottom: 10px;
  }
}

@media (max-width: 380px) {
  .banner-lifterbox {
    padding: 25px 18px;
    width: calc(100%);
  }
}

[data-theme="dark"] .full-banner-left,
[data-theme="power-save"] .full-banner-left {
  background: #48494a;
}
[data-theme="dark"] .banner-lifterbox,
[data-theme="power-save"] .banner-lifterbox {
  background: #111313;
}

/* full-banner css start */

table.ac-table td img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
  margin-right: 10px;
}

td.w-140p {
  min-width: 140px;
}

td.medium-img img,
tr.medium-img td img,
table.medium-img td img {
  width: 35px;
  height: auto;
}

[data-theme="dark"] .cd-panel-header,
[data-theme="power-save"] .cd-panel-header {
  background: rgba(255, 255, 255, 0.96);
}

[data-theme="dark"] .cd-panel-container,
[data-theme="power-save"] .cd-panel-container {
  background: #151515;
}

/* Avishka Styles */

/* Nevindu Styles start */

/* ========================================= */
/*  Bank's sustainability framework Figure - 14     */
/* ========================================= */
.main-framework-content {
  display: flex;
  justify-content: center;
}

.framework-container {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  position: relative;
  background-color: var(--teal-blue-bg2);
}

.header-main {
  grid-column: 1 / -1;
}

.side-column h3 {
  color: var(--heading1-color);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.side-list {
  list-style: none;
  padding: 10px 20px;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
}

.side-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.side-list li::before {
  content: "●";
  color: #40c1c7;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 2px;
}

.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.purpose-box {
  border: 1px solid var(--heading1-color);
  background-color: var(--bg-color);
  text-align: left;
  margin: 10px;
}

.purpose-box strong {
  display: block;
  margin-top: -18px;
}

.purpose-p {
  padding: 0px 15px;
}

.central-graphic {
  width: 480px;
  height: auto;
  padding-bottom: 20px;
}

.bottom-wrapper {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sdg-section {
  border: 1px solid var(--cyan-color);
  padding: 10px;
  width: 60%;
  text-align: center;
  position: relative;
  display: flex;
  gap: 5px;
}

.sdg-title {
  background: var(--bg-color);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  color: var(--heading1-color);
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid var(--cyan-color);
}

.sdg-icons {
  width: 100%;
  height: auto;
  display: block;
}

.guidelines-strip {
  border: 1.5px solid var(--heading1-color);
  color: var(--heading1-color);
  width: 90%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
}

.governing-strip {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  width: 100%;
  text-align: center;
  padding: 4px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.up-arrow {
  color: var(--heading1-color);
  font-size: 24px;
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .framework-container {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .side-column {
    order: 2;
  }

  .center-column {
    order: 1;
  }

  .bottom-wrapper {
    order: 3;
  }

  .header-main {
    margin-left: 0;
    text-align: center;
  }

  .sdg-section {
    width: 100%;
  }

  .purpose-box {
    max-width: 330px;
  }

  .central-graphic {
    width: 300px;
    height: auto;
  }

  .sdg-title {
    display: none;
  }

  .connector {
    width: 9px !important;
  }

  .timeline-spine {
    top: 140px !important;
  }
}

/* ================================================== */
/* Commercial Bank’s sustainability journey Figure 15 */
/* ================================================= */

.com-su-main {
  display: flex;
  justify-content: center;
  color: #4a4a4a;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  width: 100%;
}

.header-tag {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
}

.vision-tag {
  border: 2px solid var(--cyan-color);
  color: var(--cyan-color);
  padding: 5px 25px;
  border-radius: 20px;
  display: block;
  width: fit-content;
  margin: 20px auto;
  font-weight: bold;
}

.timeline-spine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  top: 110px;
  height: calc(100% - 225px);
  background-color: var(--cyan-color);
  z-index: 1;
}

.timeline-spine::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid var(--cyan-color);
}

.milestone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.milestone-content {
  width: 42%;
  font-size: 13px;
  line-height: 1.4;
}

.milestone.left {
  text-align: right;
}

.milestone.right {
  text-align: left;
}

.milestone.right .milestone-content {
  margin-left: auto;
  order: 2;
  color: var(--text-color);
}

.milestone.left .milestone-content {
  margin-right: auto;
  order: 0;
  color: var(--text-color);
}

.year {
  font-weight: bold;
  color: var(--heading1-color);
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.dot {
  width: 25px;
  height: 25px;
  background-color: var(--cyan-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid var(--bg-color);
}

.connector {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 1.5px;
  background-color: var(--blacktxt);
}

.left .connector {
  right: 52%;
}

.right .connector {
  left: 52%;
}

.connector::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.left .connector::after {
  right: 100%;
  border-right: 8px solid var(--blacktxt);
}

.right .connector::after {
  left: 100%;
  border-left: 8px solid var(--blacktxt);
}

/* ================================================== */
/* Elements of sustainable banking Figure – 16 */
/* ================================================= */

.main-header-tag {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ================================================== */
/* Our approach to responsible financing Figure – 17 */
/* ================================================= */

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0px;
  align-items: start;
}

.pillar-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pillar-item {
  display: flex;
  flex-direction: column;
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.num-circle {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.title-tag {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
}

.info-card {
  border: 1.5px solid var(--cyan-color);
  padding: 10px;
  margin-bottom: 10px;
  background: var(--bg-color);
}

.info-card h4 {
  margin: 0 0 5px 0;
  color: var(--cyan-color);
  font-size: 12px;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.info-card-left {
  border: 1.5px solid var(--cyan-color);
  padding: 10px;
  margin-bottom: 10px;
  background: var(--bg-color);
}

.info-card-left h4 {
  margin: 0 0 5px 0;
  color: var(--cyan-color);
  font-size: 12px;
  text-transform: uppercase;
  text-align: right !important;
}

.info-card-left p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: right !important;
}

.info-card-green {
  background-color: var(--auqa-color) !important;
}

.main-illustration {
  width: 100%;
  max-width: 340px;
  height: 450px;
  margin: 20px 0;
}

.align-right .pillar-head {
  flex-direction: row-reverse;
}
.align-right .info-card .info-card-left p {
  text-align: right !important;
}

@media (max-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .center-col {
    order: -1;
  }
  .align-right .pillar-head {
    flex-direction: row;
  }
  .align-right .info-card .info-card-left p {
    text-align: left !important;
  }
  .info-card-left h4 {
    text-align: left !important;
  }
  .info-card-left p {
    text-align: left !important;
  }
}

/* ================================================== */
/* Financing sustainability – Green and Blue Figure – 18 */
/* ================================================= */

.hero-section {
  text-align: center;
  margin-bottom: 30px;
}

.hero-text {
  background-image: url("../images/embedding_sustainability_into_operations/set2.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 55px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  width: 100%;
  height: auto;
  margin-bottom: -40px;
}

.hero-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px;
  border-radius: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 20px;
  margin-bottom: 20px;
}

.info-card-n {
  border: 1.5px solid var(--cyan-color);
  border-radius: 12px;
  padding: 15px;
  position: relative;
  background: var(--bg-color);
}

.card-label {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.bond-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--blacktxt);
}

.bond-row:last-child {
  border-bottom: none;
}

.bond-icon {
  width: 35px;
  height: 35px;
}

.bond-val {
  color: var(--cyan-color);
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.finance-content {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 15px;
  align-items: start;
}

.vertical-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 10px 5px;
  border-radius: 10px;
  color: var(--bg-color);
  font-weight: bold;
  font-size: 11px;
  text-align: center;
  height: 300px;
}

.tag-green {
  background-color: var(--tag-green);
}

.tag-blue {
  background-color: var(--cyan-color);
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.2;
}

.finance-item img {
  width: 30px;
  height: 30px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-group {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000000;
  padding-top: 15px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-right: 1px solid black;
  padding-right: 20px;
}

.stat-num {
  color: var(--cyan-color);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
}

.footer-bg {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .info-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .finance-content {
    grid-template-columns: 1fr;
  }

  .vertical-tag {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
  }

  .stat-group {
    flex-direction: column;
  }

  .vertical-tag {
    display: none;
  }

  .stat-item {
    border-right: none;
  }
}

/* ================================================== */
/* Green finance metrics and targets Figure – 19 */
/* ================================================= */

/* Top Statistics Row */
.stats-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  text-align: center;
  padding: 10px 20px;
  gap: 15px;
}

.stat-subtext {
  font-size: 14px;
  display: block;
}

.blue-divider {
  height: 2px;
  background-color: var(--heading1-color);
  margin: 15px 40px;
}

.target-box {
  text-align: center;
  padding: 10px 40px 25px 40px;
}

.image-section {
  border-top: 3px solid var(--cyan-color);
  padding: 25px;
  background-color: var(--teal-blue-bg2);
}

.stat-item-2 h2 {
  font-size: 30px;
}

.featured-photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin-bottom: 20px;
}

.caption-text b {
  color: var(--heading1-color);
}

.caption-text span {
  color: #40c1c7;
  font-weight: bold;
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blue-divider {
    margin: 15px 20px;
  }
}

/* ================================================== 
 Composition of the Green Finance portfolio Figure – 20
================================================= */

.portfolio-content {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 20px;
  align-items: center;
}

.data-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.metric-item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cyan-color);
}

.metric-item:last-child {
  border-bottom: none;
}

.metric-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.metric-icon {
  width: 35px;
  height: 35px;
}

.value-main {
  font-size: 24px;
  font-weight: bold;
  color: var(--cyan-color);
}

.value-percent {
  font-size: 20px;
  font-weight: normal;
}

.prev-year {
  font-size: 12px;
  color: #4a4a4a;
  display: block;
  margin-top: 3px;
}

.center-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-bg {
  width: 140%;
  height: auto;
}

@media (max-width: 800px) {
  .portfolio-content {
    grid-template-columns: 1fr;
  }
  .center-visual {
    order: -1;
    margin-bottom: 30px;
  }

  .illustration-bg {
    width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   ESG integration key developments in 2025 Figure – 21
   ========================================================================== */

.framework-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.content-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 160px;
}

.dev-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dev-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dev-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.dev-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
}

.check-mark {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

.middle-graphic-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.middle-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
}

@media (max-width: 650px) {
  .content-row {
    flex-direction: column;
    align-items: center;
  }
  .dev-card {
    width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .dev-inner {
    flex-direction: row !important;
  }

  .content-row {
    gap: 30px;
  }
}

/* ==========================================================================
   ESG integration metrics Figure – 22
   ========================================================================== */

.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.metric-main-text {
  flex: 1;
}

.metric-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.metric-value {
  font-size: 36px !important;
  color: var(--cyan-color);
  font-weight: normal;
  line-height: 1;
}

.prev-year-text {
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.document-graphic {
  width: 150px;
  height: auto;
}

.risk-table-wrapper {
  border-top: 2px solid var(--blacktxt);
  padding-top: 15px;
}

.table-header {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--blacktxt);
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  border-bottom: 1.5px solid var(--cyan-color);
  border-top: 1.5px solid var(--cyan-color);
  padding-bottom: 15px;
}

.risk-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.risk-label {
  font-size: 14px;
  font-weight: bold;
}

.risk-count {
  font-size: 14px;
}

.risk-percent {
  font-size: 14px;
  color: var(--blacktxt);
}

@media (max-width: 600px) {
  .metrics-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .document-graphic {
    margin-top: 20px;
  }
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   Panel discussion at the
   ========================================================================== */
.summit-panel-container {
  margin: 20px auto;
  background-color: var(--teal-blue-bg2);
  padding: 30px;
  border-top: 3px solid var(--cyan-color);
}

.speaker-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.speaker-card {
  flex: 1;
  position: relative;
}

.speaker-img {
  width: 100%;
  object-fit: cover;
  height: 320px;
  object-position: top;
  background-color: #ddd;
  display: block;
}

.panel-description {
  margin-top: 20px;
  line-height: 1.4;
}

.desc-label {
  color: var(--heading1-color);
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .speaker-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .desc-main {
    font-size: 20px;
  }

  .speaker-img {
    width: 100%;
    height: auto;
    background-color: #dddddd00;
    position: relative;
    object-fit: cover;
  }
}

/* ==========================================================================
   Lending to priority sectors Figure – 23
   ========================================================================== */

.lending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.sector-col {
  display: flex;
  flex-direction: column;
}

.sector-title {
  font-weight: bold;
  font-size: 14px;
  min-height: 40px;
  margin-bottom: 10px;
  color: var(--heading1-color);
}

.illustration-box {
  background-color: white;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sector-img {
  width: 100%;
  height: auto;
  display: block;
}

.data-row {
  border-bottom: 1px solid var(--heading1-color);
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.4;
}

.data-row:last-child {
  border-bottom: none;
}

.stat-highlight {
  color: var(--cyan-color);
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 900px) {
  .lending-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .lending-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Operational enablers: Digitalisation and capability building
   ========================================================================== */

.enablers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.enablers-col {
  font-size: 13.5px;
}

.enablers-col p {
  margin-bottom: 20px;
}

.enablers-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enablers-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.enablers-list li::before {
  content: "•";
  color: #40c1c7;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 24px;
  position: absolute;
  top: -6px;
}

.item-title {
  color: var(--text-color);
  font-weight: bold;
}

@media (max-width: 900px) {
  .enablers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Our approach to financial inclusion Figure – 24
   ========================================================================== */

.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.center-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  z-index: 1;
}

.center-graphic img {
  width: 180%;
  height: auto;
  position: absolute;
  top: -160px;
  left: 20%;
}

.pillar-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pillar-block-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-num {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.pillar-tag {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.info-card {
  border: 1.5px solid var(--cyan-color);
  background-color: var(--bg-color);
  padding: 12px 15px;
  border-radius: 4px;
  width: 370px;
}

.info-card h4 {
  margin: 0 0 5px 0;
  color: var(--cyan-color);
  font-size: 13px;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-color);
}

.info-card p strong {
  color: var(--text-color);
}

.align-right .pillar-head {
  flex-direction: row-reverse;
}

@media (max-width: 850px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }
  .center-graphic {
    display: none;
  }
  .align-right .pillar-head {
    flex-direction: row;
  }
  .pillar-block-right {
    align-items: flex-start;
  }
  .info-card {
    width: 100%;
  }
}

/* ==========================================================================
   Closing the Financial inclusion gap Figure – 25
   ========================================================================== */

/* Layout Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  position: relative;
}

/* Center Illustration Area */
.center-illustration {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-illustration img {
  width: 100%;
  height: auto;
}

/* Badge and Label Styling */
.label-badge {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

.metric-card {
  font-size: 14px;
}

.big-stat {
  color: var(--cyan-color);
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin: 5px 0;
}

.big-stat-m {
  color: var(--cyan-color);
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin: 5px 0;
  text-align: center;
}

.stat-sub {
  font-size: 12px;
  display: block;
  border-top: 1px solid #ccc;
  padding-top: 5px;
  margin-top: 5px;
}

.stat-sub-m {
  font-size: 12px;
  display: block;
  border-top: 1px solid var(--blacktxt);
  padding-top: 5px;
  margin-top: 5px;
  text-align: center;
}

.stat-align {
  text-align: center;
  display: block;
}

.stat-border {
  border-bottom: 1px solid black;
}

.description-text {
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .center-illustration {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }
}

/* ==========================================================================
   The architecture of financial inclusion: Multi-channel access Figure – 26
   ========================================================================== */

.figure-title {
  background-color: #40c1c7;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
}

.main-description {
  font-size: 14px;
  line-height: 1.5;
  max-width: 850px;
}

.architecture-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.column {
  flex: 1;
  z-index: 2;
}

.section-header {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header-b {
  float: right;
}

.content-block {
  margin-bottom: 25px;
}

.content-block-b {
  text-align: right;
}

.content-block h4 {
  margin: 0 0 5px 0;
  color: var(--heading1-color);
  font-size: 14px;
  font-weight: bold;
}

.content-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.illustration-center {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.illustration-center img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

@media (max-width: 850px) {
  .architecture-grid {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 100%;
  }
  .illustration-center {
    order: -1;
    margin-bottom: 30px;
  }

  .section-header-b {
    float: left;
  }

  .content-block-b {
    text-align: left;
  }

  .illustration-center img {
    display: none;
  }
}

/* ==========================================================================
   Network of delivery points in Sri Lanka Figure – 27
   ========================================================================== */
.title_bl_header {
  grid-column: 1 / -1;
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 2px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 10px;
}

.delivery-network-wrapper {
  padding: 40px 20px;
  border-top: 2px solid var(--heading1-color);
  margin: 20px auto;
}

.network-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.network-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-grid-bang {
  display: flex;
  gap: 20px;
}

.network-item-bang {
  min-width: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-container {
  position: relative;
  padding-left: 30px;
}

.network-icon {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.network-label {
  color: var(--text-color);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-value {
  color: var(--heading1-color);
  font-size: 24px;
  font-weight: bold;
}

.sub-text {
  font-size: 11px;
  color: var(--text-color);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .network-item {
    min-width: unset;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
  LEAP GlobalLinker Figure – 29
   ========================================================================== */

.leap-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.side-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.center-col {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.metric-box {
  border-bottom: 1.5px solid #444;
  padding-bottom: 15px;
}

.metric-value {
  font-size: 26px;
  color: var(--cyan-color);
  font-weight: 500;
  display: block;
}

.metric-label {
  font-size: 16px;
  line-height: 1.4;
}

.logo-center {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.partner-box {
  text-align: right;
  font-size: 16px;
}

.logistics-logos {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
}

.logistics-logos img {
  height: 25px;
}

@media (max-width: 768px) {
  .leap-grid {
    flex-direction: column;
    text-align: center;
  }
  .partner-box,
  .logistics-logos {
    text-align: center;
    justify-content: center;
  }
  .metric-box {
    border-bottom: none;
    border-top: 1.5px solid #444;
    padding-top: 15px;
  }
}

/* ==========================================================================
   Snapshot of CSR activities Figure – 50
   ========================================================================== */

.csr-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-top: 45px;
}

.section-box {
  border: 1.5px solid #40c1c7;
  border-radius: 12px;
  padding: 40px 20px 20px 20px;
  position: relative;
  background: #fff;
  padding-top: 60px;
}

.section-label {
  background-color: var(--heading1-color);
  color: white;
  padding: 5px 25px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 120px;
}

.section-illustration-edu {
  width: 250px;
  height: auto;
  position: absolute;
  top: -70px;
  left: 10px;
}

.section-illustration-comm {
  width: 180px;
  height: auto;
  position: absolute;
  top: -70px;
  left: 10px;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.data-block {
  margin-bottom: 25px;
  font-size: 12.5px;
}

.block-title {
  font-weight: bold;
  border-bottom: 1.5px solid var(--heading1-color);
  display: inline-block;
  margin-bottom: 5px;
  color: var(--heading1-color);
  font-size: 16px;
}

.block-stat {
  color: #40c1c7;
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin: 4px 0;
}

.block-details {
  color: #444;
  line-height: 1.4;
  border-bottom: 1px solid #40c1c7;
  font-size: 15px;
}

.impact-label {
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.healthcare-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
  position: relative;
}

.hc-img {
  width: 330px;
  height: auto;
  margin-right: 30px;
  position: absolute;
  top: -173px;
  left: 54%;
}

@media (max-width: 850px) {
  .csr-main-grid {
    display: flex;
    flex-direction: column;
  }
  .category-row {
    grid-template-columns: 1fr;
  }
  .section-label {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-illustration {
    display: none;
  }
  .hc-img {
    width: 220px;
    height: auto;
    margin-right: 30px;
    position: absolute;
    top: -120px;
    left: 35%;
  }
}

/* ==========================================================================
   Targets and metrics
   ========================================================================== */

.social-engagement-container {
  margin: 20px auto;
  background-color: var(--secbg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.engagement-content {
  flex: 1.5;
}

.engagement-intro {
  line-height: 1.5;
  margin-bottom: 25px;
}

.engagement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.engagement-list li::before {
  content: "•";
  color: #40c1c7;
  font-weight: bold;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -6px;
}

.engagement-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}

.engagement-illustration img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

@media (max-width: 991px) {
  .social-engagement-container {
    flex-direction: column;
    padding: 25px;
  }
  .engagement-illustration {
    order: -1;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   Strengthening community enterprises through targeted enablement Figure – 51
   ========================================================================== */

/* Figure Header */
.figure-tag {
  background-color: #40c1c7;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 25px;
}

/* Main Content Layout */
.enablement-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: end;
}

/* Column Styling */
.info-col h3 {
  background-color: var(--heading1-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.district-header {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  color: var(--heading1-color);
}

.enablement-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 13.5px;
}

.b-class {
  border-bottom: 1px solid #000000;
  margin-bottom: 5px;
}

.enablement-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}

.enablement-list li::before {
  content: "•";
  color: #40c1c7;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Central Illustration */
.illustration-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.illustration-center img {
  width: 140%;
  height: auto;
  max-width: 550px;
}

/* SDG Icons Placeholder */
.sdg-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.sdg-icon {
  width: 45px;
  height: 45px;
  background-color: #ddd;
}

/* Bottom Action Bar */
.action-bar {
  grid-column: 1 / -1;
  margin-top: 30px;
  text-align: center;
}

.slogan {
  background-color: #40c1c7;
  color: white;
  padding: 5px 30px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.pillar-row {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.pillar-tag-51 {
  border: 1.5px solid var(--heading1-color);
  color: var(--heading1-color);
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
}

/* Mobile View */
@media (max-width: 768px) {
  .enablement-grid {
    grid-template-columns: 1fr;
  }
  .pillar-row {
    flex-wrap: wrap;
  }

  .illustration-center img {
    width: 100%;
    height: auto;
    max-width: 550px;
  }
}

/* ==========================================================================
   Climate-related risks Figure – 52
   ========================================================================== */

.framework-arrows {
  width: calc(100% - 60px);
  height: 60px;
  z-index: 1000;
}

.main-risk-header {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -70px;
}

.main-title-risk {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  border: 5px solid var(--bg-color);
}

.sub-risk-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 25px;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.risk-box {
  border: 1.5px solid var(--cyan-color);
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.risk-type-label {
  border: 1.5px solid var(--heading1-color);
  color: var(--heading1-color);
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.risk-description {
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.icon-grid-physical {
  grid-template-columns: repeat(3, 1fr);
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
}

.driver-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
}

.physical-sub-types {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 15px;
}

@media (max-width: 991px) {
  .physical-sub-types {
    flex-direction: column;
  }
  .phy-col {
    border-right: none !important;
  }
}
@media (max-width: 899px) {
  .timeline-spine {
    height: calc(100% - 258px);
  }
}

.sub-type-col {
  flex: 1;
  text-align: center;
}

.type-badge {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 8px;
}

.type-desc {
  font-size: 13px;
  margin-bottom: 15px;
}

.phy-col {
  border-right: 1px dashed #949494;
  padding-right: 20px;
}

@media (max-width: 800px) {
  .framework-arrows {
    display: none;
  }
  .sub-risk-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .physical-sub-types {
    flex-direction: column;
  }
  .main-risk-header {
    margin-top: 0px;
  }
  .phy-col {
    border-right: 0px dashed #949494;
    padding-right: 0px;
  }
}

/* =============================================================================================
   Climate-related physical risk management: Customer and portfolio-level approach Figure – 53
   ============================================================================================= */

.framework-srm {
  display: block;
  font-size: 14px;
  color: var(--heading1-color);
}

.mgmt-grid-container {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 35px;
  align-items: start;
  position: relative;
  padding-top: 75px;
}

.process-pillar-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

.process-action-btn {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pillar-connector {
  color: var(--text-color);
  font-size: 18px;
  margin: -5px 0;
}

.management-card {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-color);
  min-height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  border: 1.5px solid transparent;
}

.track-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.bracket-label-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: 85%;
}

.vertical-bracket {
  border: 1.5px solid var(--label-red);
  border-right: none;
  width: 30px;
  height: 100%;
  border-radius: 12px 0 0 12px;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-vertical-1 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  font-size: 13px;
  color: var(--label-red);
  background-color: var(--teal-blue-bg2);
  padding: 10px 0;
  white-space: nowrap;
  border: 1px solid var(--label-red);
  border-radius: 15px;
  padding: 15px 4px;
  margin-left: -30px;
}

.label-vertical-2 {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  font-weight: bold;
  font-size: 13px;
  color: var(--label-red);
  background-color: var(--teal-blue-bg2);
  padding: 10px 0;
  white-space: nowrap;
  border: 1px solid var(--label-red);
  border-radius: 15px;
  padding: 15px 4px;
  margin-right: -30px;
}

.horizontal-connectors-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 30px;
  top: 50px;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-list-wrapper {
  margin-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.portfolio-track .vertical-bracket {
  border: 1.5px solid var(--label-red);
  border-left: none;
  border-radius: 0 12px 12px 0;
  left: auto;
  right: 0;
}

.portfolio-track .bracket-label-box {
  left: auto;
  right: 0;
}

.portfolio-track .label-vertical {
  color: var(--label-red);
  transform: rotate(0deg);
}

.portfolio-track .connector-line {
  background-color: var(--label-red);
}

.portfolio-track .card-list-wrapper {
  margin-left: 0;
  margin-right: 60px;
}

.portfolio-track .management-card {
  border-color: var(--label-red);
}

.customer-track .management-card {
  border-color: var(--label-red);
}

@media (max-width: 850px) {
  .mgmt-grid-container {
    grid-template-columns: 1fr;
  }

  .card-list-wrapper {
    margin: 0;
    gap: 15px;
  }

  .track-side {
    padding: 10px 0;
  }

  .mgmt-grid-container {
    padding-top: 0px;
  }

  .bracket-label-box {
    display: none;
  }

  .portfolio-track .card-list-wrapper {
    margin-left: 0;
    margin-right: 0px;
  }
}

/* ==========================================================================
   Roadmap for computation of financed Emissions (Category 15: Investments) Figure – 59
   ========================================================================== */

.timeline-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 110px 20px;
}

.timeline-arrow {
  font-size: 24px;
  color: #ccc;
  margin-top: -10px;
  transition: transform 0.3s;
}

.step-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.date-pill {
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 8px 25px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 2;
  min-width: 100px;
}

.step-num {
  background-color: var(--pale-purple);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: -15px;
  right: -10px;
  z-index: 3;
  border: 2px solid #f8fcfc;
}

.top-label,
.bottom-label {
  position: absolute;
  width: 180px;
  font-size: 13px;
  line-height: 1.4;
}

.top-label::after,
.bottom-label::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background-color: var(--text-color);
  height: 30px;
}

.top-label {
  bottom: 55px;
  padding-bottom: 35px;
}
.top-label::after {
  bottom: 0;
}

.bottom-label {
  top: 55px;
  padding-top: 35px;
}
.bottom-label::after {
  top: 0;
}

.label-title {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  color: var(--heading1-color);
}

.label-desc {
  color: var(--text-color);
}

@media (max-width: 850px) {
  .timeline-flex {
    flex-direction: column;
    padding: 20px 0;
  }

  .step-block {
    width: 100%;
    margin: 10px 0;
  }

  .top-label,
  .bottom-label {
    position: static;
    width: 100%;
    padding: 15px 0;
    border: none;
  }

  .top-label::after,
  .bottom-label::after {
    display: none;
  }

  .timeline-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .step-block {
    display: flex;
    flex-direction: column;
  }

  .step-block .date-pill {
    order: 1;
  }
  .step-block .top-label,
  .step-block .bottom-label {
    order: 2;
  }
}

/* ==========================================================================
   Define and safeguard
   ========================================================================== */
.sustainability-framework-container {
  max-width: 450px;
  background-color: var(--teal-blue-bg2);
  padding: 30px;
  color: var(--heading1-color);
  margin-bottom: 20px;
}

.framework-step {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
}

.content-area {
  flex: 1;
}

.icon-area {
  width: 60px;
  margin-left: 15px;
}

.icon-area img {
  width: 100%;
  height: auto;
}

.step-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 12px;
  display: block;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-color);
}

.feature-list li::before {
  content: "•";
  color: var(--cyan-color);
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -4px;
}

.flow-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--heading1-color);
  margin: 10px 0;
  width: 100%;
  display: block;
}

@media (max-width: 400px) {
  .sustainability-framework-container {
    max-width: 100%;
  }
}

/* ==========================================================================
   image part
   ========================================================================== */
.volunteer-image-container {
  position: relative;
  max-width: 900px;
  margin: 20px auto;
  overflow: hidden;
  font-family: "Segoe UI", serif;
}

.volunteer-img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--cyan-color);
  color: #111;
  padding: 12px 20px;
  max-width: 55%;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 2px -2px 10px rgba(0, 0, 0, 0.1);
}

.image-caption-box strong {
  font-weight: bold;
}

@media (max-width: 600px) {
  .image-caption-box {
    max-width: 900%;
    font-size: 12px;
    padding: 8px 12px;
  }
}

.compo-color {
  color: var(--heading1-color);
}

/* ==========================================================================
   ow risk outcomes support value creation Figure – 66
   ========================================================================== */

.intro-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--heading1-color);
  text-align: center;
  margin-bottom: 30px;
  padding: 0 40px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1.5px solid var(--heading1-color);
  padding-top: 30px;
}

.outcome-card {
  background-color: var(--bg-color);
  border: 1.5px solid #40c1c7;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.card-title-66 {
  font-weight: bold;
  font-size: 15px;
  min-height: 40px;
  color: var(--heading1-color);
}

.sub-heading {
  font-weight: bold;
  font-size: 13px;
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
}

.impact-list .list-item {
  color: var(--cyan-color);
  font-weight: 500;
}

@media (max-width: 850px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .intro-text {
    padding: 0;
  }
}

/* ==========================================================================
   Three lines of defence Figure – 68
   ========================================================================== */

.lod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lod-column {
  display: flex;
  flex-direction: column;
}

.lod-title-area {
  display: flex;
  align-items: flex-start;
}

.lod-number {
  font-size: 48px;
  line-height: 1;
  margin-right: 10px;
  color: var(--headings-color);
}

.lod-label-top {
  font-style: italic;
  font-size: 13px;
  display: block;
}

.lod-header-box {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 4px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}

.lod-content-box {
  background-color: var(--bg-color);
  border: 1.5px solid #40c1c7;
  padding: 20px 15px;
  flex-grow: 1;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

.lod-footer-box {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 4px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0 0 4px 4px;
  text-align: center;
  margin-right: 45px;
}

.lod-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lod-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--cyan-color);
}

.lod-list li::before {
  content: "•";
  color: var(--cyan-color);
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -4px;
}

@media (max-width: 850px) {
  .lod-grid {
    grid-template-columns: 1fr;
  }
  .lod-column {
    margin-bottom: 30px;
  }
}

.link-color {
  color: var(--bg-color);
}

/* Nevindu Styles end */

/* Kanishka Styles start */
/* ==========================================================================
   Base Layout & Backgrounds
   ========================================================================== */
.bm-alice-blue-bg {
  background-color: var(--teal-blue-bg2);
  padding: 30px;
}

.bm-centerblk {
  z-index: 9;
  position: relative;
}

/* ==========================================================================
   Typography & Colors
   ========================================================================== */
.bm-navy-title {
  padding: 5px 10px !important;
  margin-bottom: 0px;
  background-color: var(--heading1-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--bg-color) !important;
  position: relative;
  transition: all 0.3s ease-out;
  min-height: 35px;
  width: 100%;
  border-radius: 0;
  text-align: left;
  gap: 10px;
}

.bm-bmodel-sec-info {
  background-color: var(--bm-pale-blue);
  border: 1px solid var(--heading1-color);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 13px;
  padding: 10px;
  line-height: 1.25;
  min-height: 175px;
  margin: 10px 0 25px 0;
}

@media screen and (max-width: 1699px) {
  .bm-bmodel-sec-info {
    min-height: 188px;
  }
}
@media screen and (max-width: 1599px) {
  .bm-bmodel-sec-info {
    min-height: 220px;
  }
}
@media screen and (max-width: 1399px) {
  .bm-bmodel-sec-info {
    min-height: 280px;
  }
}
@media (max-width: 1200px) {
  .bm-bmodel-sec-info {
    min-height: auto;
  }
}

/* Theme Colors */
.bm-blu {
  background-color: var(--matrix-blue);
  color: var(--bg-color);
}
.bm-pnk {
  background-color: var(--scp-pink);
  color: var(--bg-color);
}
.bm-yel {
  background-color: var(--scp-yellow);
  color: var(--bg-color);
}
.bm-prpl {
  background-color: var(--bm-pale-purple);
  color: var(--bg-color);
}
.bm-brn {
  background-color: var(--bm-tan);
  color: var(--bg-color);
}
.bm-grn {
  background-color: var(--cyan-color);
  color: var(--bg-color);
}
.bm-navy {
  background-color: var(--heading1-color);
  color: var(--bg-color);
}
.bm-drkblu {
  background-color: #252379;
  color: var(--bg-color);
}

/* Theme Borders */
.bm-blu_bdr {
  border: 1px solid var(--headings-color);
}
.bm-pnk_bdr {
  border: 1px solid var(--scp-pink);
}
.bm-yel_bdr {
  border: 1px solid var(--scp-yellow);
}
.bm-prpl_bdr {
  border: 1px solid var(--bm-pale-purple);
}
.bm-brn_bdr {
  border: 1px solid var(--bm-tan);
}
.bm-grn_bdr {
  border: 1px solid var(--cyan-color);
}
.bm-drkblu_bdr {
  border: 1px solid var(--heading1-color);
}

/* ==========================================================================
   Accordion / FAQ Component (#main #faq)
   ========================================================================== */
#main #faq .card {
  margin-bottom: 5px;
  border: 0;
  border-radius: 0rem;
  background-color: transparent;
}

#main #faq .card .bm-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  color: #434343;
  font-family: "ITC Franklin Gothic Std Book", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
}

#main #faq .card .bm-list-disc > li {
  list-style: outside none none;
  margin: 0px 0px 4px 20px;
  line-height: 16px;
  margin-bottom: 3px;
}

#main #faq .card .bm-list-disc > li::before {
  font-family: Arial, Helvetica;
  font-size: 25px;
  position: relative;
  top: 4px;
  content: "\2022";
  padding-right: 10px;
  margin-left: -20px;
  color: #000000;
}

#main #faq .card .card-header {
  border: 0;
  border-radius: 0px;
  padding: 0;
  font-size: 16px;
}

#main #faq .card .card-header .bm-btn-header-link {
  color: var(--bg-color);
  display: flex;
  text-align: left;
  text-decoration: none;
  padding: 10px 24px 10px 8px;
  border-radius: 10px;
  width: 100%;
  line-height: 1.2;
}

#main #faq .card .card-header .bm-btn-header-link img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

#main #faq .card .card-header .bm-btn-header-link:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  position: absolute;
  right: 9px;
  top: 10px;
}

#main #faq .card .card-header .bm-btn-header-link.collapsed {
  color: var(--bg-color);
}

#main #faq .card .card-header .bm-btn-header-link.collapsed:after {
  content: "\f107";
}

#main #faq .card .custom-collapse {
  border: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#main #faq .card .custom-collapse.show {
  line-height: 30px;
  color: #222;
}

#main #faq .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 0.8rem;
  background-color: var(--bg-color);
  margin-top: 5px;
  border-radius: 10px;
  position: relative;
}

#main #faq .card-body a {
  font-size: 12px;
  text-decoration: none;
  margin-top: 15px;
}

#main #faq .card-body p {
  line-height: 1.2;
}

.card .bm-icons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.card .bm-icons img {
  width: auto;
  height: 25px;
  margin-left: 5px;
}

@media only screen and (max-width: 1400px) {
  #main #faq .card .bm-list {
    font-size: 13px;
    line-height: 16px;
  }
  #main #faq .card .card-header {
    font-size: 14px;
  }
}

/* ==========================================================================
   Tooltips
   ========================================================================== */
a[tooltip] {
  position: relative;
  z-index: 10;
}

a[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  width: max-content;
  max-width: 250px;
  text-align: center;
  top: 100%;
  right: 0;
  transform: scale(0.95) translateY(0);
  pointer-events: none;
  font-size: 11px;
  text-transform: capitalize;
  background-color: var(--headings-color);
  color: var(--bg-color);
  padding: 7.5px 20px;
  z-index: 9;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  visibility: hidden;
  opacity: 0;
  transform-origin: bottom center;
  transition: 250ms ease-out;
}

a[tooltip]:hover::after {
  visibility: visible;
  top: calc(100% + 10px);
  transform: scale(1) translateY(0);
  opacity: 1;
}

.tooltip-inner {
  background-color: #efecc2;
  border: 1px solid #9b9762;
  color: #3d3c33;
  text-align: left;
  line-height: 1.2;
}

.tooltip.bs-tooltip-bottom .tooltip-inner {
  background: #efecc2 !important;
}
.tooltip .arrow:before {
  border-bottom-color: #9b9762 !important;
  border-top-color: #9b9762 !important;
}

.bm-tooltip-wrapper {
  position: relative;
  cursor: pointer;
}

.bm-tooltip-wrapper .bm-tooltip-content {
  position: absolute;
  background-color: #f4fbfe;
  border: 1px solid #4cb748;
  top: calc(100% + 5px);
  left: 0;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transition: 400ms ease-out;
}

.bm-tooltip-wrapper.right .bm-tooltip-content {
  left: initial;
  right: 0;
}

.bm-tooltip-wrapper .bm-tooltip-content p {
  font-size: 12px;
  line-height: 1.2;
  width: 250px;
  height: auto;
  font-weight: 300;
  margin: 0 0 7.5px 0;
}

.bm-tooltip-wrapper .bm-tooltip-content p strong {
  color: #0d6efd;
}
.bm-tooltip-wrapper:hover .bm-tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   Value Generating Activities
   ========================================================================== */
.bm-value-drive-act {
  padding: 15px;
  /* background-color: #ebf7fd; */
  border: 1px solid var(--cyan-color);
  border-radius: 10px;
  display: flex;
  margin: 0 4px;
}

.bm-value-drive-act .bm-vision-mission {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bm-value-drive-act .bm-vision-mission span {
  background-color: #54b43c;
  background: linear-gradient(90deg, #0b71b6, #0d928a, #49b54c);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 25px;
  position: relative;
  z-index: 5;
  transition: 300ms;
}

.bm-value-drive-act .bm-vision-mission span::after {
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  content: attr(tooltip);
  position: absolute;
  top: calc(100% + 10px);
  background-color: white;
  border: 1px solid #4cb748;
  color: #4cb748;
  border-radius: 10px;
  padding: 10px;
  width: 300px;
  font-weight: normal;
  font-size: 14px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: 300ms ease-in-out;
}

.bm-value-drive-act .bm-vision-mission span.left::after {
  left: 0;
  transform-origin: top left;
}
.bm-value-drive-act .bm-vision-mission span.right::after {
  right: 0;
  transform-origin: top right;
}
.bm-value-drive-act .bm-vision-mission span:hover {
  box-shadow: #e1f4fc 0px 7px 29px 0px;
}
.bm-value-drive-act .bm-vision-mission span:hover::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.bm-value-drive-act .bm-vision-mission > div {
  display: flex;
  align-items: center;
}

.bm-value-drive-act .bm-section-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}

.bm-value-drive-act .bm-section-headers.bm-bottom {
  margin-top: 5px;
}

.bm-value-drive-act .bm-section-headers a {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-color);
  font-weight: bold;
  text-decoration: none;
  border: 1px solid var(--cyan-color);
  background-color: var(--bg-color);
  text-align: center;
  padding: 7.5px 5px;
  line-height: 1.25;
  transition: 300ms;
  align-items: center;
  justify-content: center;
}
.bm-value-drive-act .bm-section-headers a span {
  font-weight: 400;
}

.bm-value-drive-act .bm-section-headers a:hover {
  transform: scale(0.9);
  transform-origin: bottom;
  font-size: 12px;
}

.bm-value-drive-act .bm-activities {
  padding: 0px;
  /* background-color: #ebf7fd; */
  background-size: cover;
  background-position: center center;
  margin-top: 5px;
  position: relative;
  border-radius: 10px;
}

.bm-value-drive-act .bm-strategic-imp {
  width: 100%;
  /* border: 2px solid; */
  /* border-image: linear-gradient(90deg, #49b54c, #0d928a, #0b71b6) 1; */
  margin-top: 5px;
  display: flex;
  justify-content: center;
}

.bm-value-drive-act .bm-strategic-imp h4 {
  margin: 0;
  padding: 10px;
  text-align: center;
  background-color: var(--bg-color);
  font-size: 13px;
  font-weight: bold;
  color: var(--cyan-color);
  border: 1px solid var(--cyan-color);
  border-radius: 50px;
}

.bm-bmodel-bottom {
  display: flex;
  justify-content: space-between;
}
.bm-bmodel-bottom > div:first-child {
  align-self: flex-end;
}
.bm-bmodel-bottom p {
  font-size: 12px;
  text-align: left;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .bm-value-drive-act .bm-section-headers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .bm-value-drive-act .bm-section-headers {
    grid-template-columns: 1fr;
  }
  .bm-value-drive-act .bm-activities {
    padding: 33px 0 0 0;
  }
}

/* ==========================================================================
   Right Block (Outputs)
   ========================================================================== */
.bm-rghtblk {
  background-color: var(--bg-color);
  position: relative;
  border: 1px solid var(--heading1-color);
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 10px;
}

.bm-rghtblk > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bm-rghtblk > div img {
  width: 30px;
  height: auto;
}

/* ==========================================================================
   Table Overrides (.table-responsive class)
   ========================================================================== */
.table-responsive {
  margin-bottom: 0 !important;
}

/* Sidebar Container */
.bm-sidebar {
  width: 70px;
  align-items: center;
  z-index: 5;
  background: transparent;
}

.bm-sidebar .bm-tooltip-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
}

.bm-pill-badge {
  background-color: var(--cyan-color) !important;
  color: var(--bg-color) !important;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;

  min-height: 140px;
  width: 38px;
  border-radius: 50px !important;

  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none !important;
}

.bm-vertical-up {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.bm-vertical-down {
  writing-mode: vertical-rl;
}

.bm-left-sidebar .bm-tooltip-content {
  left: calc(100% + 5px);
  top: 10%;
}

.bm-right-sidebar .bm-tooltip-content {
  right: calc(100% + 5px);
  left: auto;
  top: 10%;
}

/* operating environment styles start  */
.text-columns {
  column-count: 3;
  column-gap: 24px;
}

.text-columns p {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .text-columns {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .text-columns {
    column-count: 1;
  }
}

.ap-wrapper {
  position: relative;
}

.ap-year {
  background-color: var(--bg-color);
  color: var(--cyan-color);
  display: flex;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--cyan-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.bottom-outline {
  position: absolute;
  left: 0px;
  right: 20px;
  bottom: -20px;
  height: 22px;
  border: 1px solid var(--heading1-color);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid var(--heading1-color);
  border-radius: 50%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading1-color);
  font-size: 18px;
}

@media (max-width: 991px) {
  .economy-title {
    font-size: 24px;
  }

  .year-box {
    font-size: 22px;
    margin: 0 0 18px;
  }

  .economy-section {
    padding: 16px 16px 46px;
  }
}

/* ------------------------  */
.grn-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.grn-title img {
  width: 46px;
  height: 46px;
}
.grn-title p {
  color: var(--heading1-color);
  font-size: 20px;
  margin-bottom: 0;
  font-weight: bold;
}

.grn-year {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: 100%;
}

.grn-body {
  border: 1px solid var(--cyan-color);
  padding: 10px;
  margin-top: 10px;
}

/* operating environment styles end  */

/* Strategic priorities and value creation style start  */
.sba-figure-wrap {
  background: var(--teal-blue-bg2);
  padding: 35px 28px 38px;
  max-width: 1080px;
  margin: 20px auto;
  position: relative;
}

.sba-figure-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 22px;
  line-height: 1;
  position: absolute;
  top: -15px;
}

.sba-figure-title span:last-child {
  font-weight: 500;
  opacity: 0.95;
}

.sba-top-card {
  background: var(--bg-color);
  border: 1.5px solid var(--cyan-color);
  border-radius: 14px;
  padding: 28px 24px 22px;
  min-height: 172px;
  position: relative;
}

.sba-card-label {
  position: absolute;
  top: -14px;
  left: 16px;
  background: var(--heading1-color);
  color: var(--bg-color);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 18px;
  line-height: 1;
}

.sba-card-corner-icon {
  position: absolute;
  top: -25px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sba-center-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 180px;
  position: relative;
}

.sba-central-circle {
  width: 154px;
  height: 154px;
  gap: 10px;
  background: #252379;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(45, 43, 143, 0.16);
}

.sba-central-circle i {
  font-size: 40px;
  margin-bottom: 10px;
}

.sba-central-circle div {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}

.sba-connector {
  position: absolute;
  top: 34px;
  width: 95px;
}

.sba-connector.sba-left {
  left: -18px;
}

.sba-connector.sba-right {
  right: -18px;
}

.sba-pillars-row {
  margin-top: 18px;
  text-align: center;
}

.sba-pillar {
  padding: 12px 10px 0;
  position: relative;
}

.sba-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sba-pillar-title {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.sba-side-bracket {
  position: absolute;
  width: 34px;
  height: 108px;
  bottom: 108px;
}

.sba-side-bracket.sba-left {
  left: 60px;
}

.sba-side-bracket.sba-right {
  right: 60px;
}

.sba-bottom-arrow {
  max-width: 820px;
  margin: 16px auto 0;
  height: 42px;
  background: linear-gradient(
    90deg,
    var(--outlook-blue) 0%,
    var(--cyan-color) 100%
  );
  position: relative;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 17px;
}

.sba-bottom-arrow::before,
.sba-bottom-arrow::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 29px solid transparent;
}

.sba-bottom-arrow::before {
  left: -26px;
  border-right: 26px solid var(--outlook-blue);
}

.sba-bottom-arrow::after {
  right: -26px;
  border-left: 26px solid var(--cyan-color);
}

.sba-bottom-arrow .row,
.sba-bottom-arrow .col-6 {
  height: 100%;
}

.sba-arrow-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1399px) {
  .sba-connector {
    width: 73px;
  }
  .sba-side-bracket {
    bottom: 131px;
  }
}

@media (max-width: 1199px) {
  .sba-connector {
    width: 73px;
  }
  .sba-side-bracket {
    bottom: 131px;
  }
}

@media (max-width: 1199px) {
  .sba-center-block {
    min-height: 160px;
    margin: 12px 0;
  }

  .sba-connector {
    display: none;
  }

  .sba-side-bracket {
    display: none;
  }

  .sba-pillar {
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .sba-figure-wrap {
    padding: 30px 16px 30px;
  }

  .sba-figure-title {
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 18px;
  }

  .sba-pillar-title {
    font-size: 15px;
  }

  .sba-bottom-arrow {
    height: auto;
    padding: 10px 0;
  }

  .sba-bottom-arrow::before,
  .sba-bottom-arrow::after {
    display: none;
  }

  .sba-arrow-segment {
    white-space: normal;
    padding: 6px 10px;
  }
}
/* Strategic priorities and value creation style end  */

/* stakeholder engagement start  */
.oks-stakeholders-section {
  background-color: var(--teal-blue-bg2);
  padding: 28px 24px 32px;
  margin-top: 50px;
  position: relative;
}

.oks-figure-badge {
  position: absolute;
  top: -20px;
  display: inline-block;
  background: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.oks-figure-badge span {
  font-weight: 500;
  opacity: 0.95;
}

.oks-vertical-label {
  background: linear-gradient(
    180deg,
    var(--headings-color) 0%,
    var(--cyan-color) 100%
  );
  color: var(--bg-color);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  border-radius: 3px;
  padding: 14px 8px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  width: 32px;
}

.oks-label-horizontal {
  writing-mode: horizontal-tb;
  transform: none;
}

.oks-intro-text,
.oks-top-note,
.oks-mid-note {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text-color);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.oks-arrow-1 {
  position: absolute;
  top: 10px;
  right: -60px;
  width: 70px;
  pointer-events: none;
  z-index: 0;
}

.oks-arrow-2 {
  position: absolute;
  top: 90px;
  left: -80px;
  width: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.oks-arrow-3 {
  position: absolute;
  top: 30%;
  left: -60px;
  width: 60px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.oks-stakeholder-card {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.oks-stakeholder-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b4fa8;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.oks-stakeholder-title {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    rgba(35, 86, 167, 1) 0%,
    rgba(48, 190, 188, 1) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oks-stakeholder-text {
  font-size: 0.97rem;
  line-height: 1.34;
  margin-bottom: 10px;
  color: var(--text-color);
}

.oks-priority-indicator {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.oks-priority-indicator img {
  width: 40px;
}

.oks-center-graphic-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.oks-center-graphic-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  max-width: 90vw;
  z-index: -1;
  pointer-events: none;
}

.oks-legend {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.oks-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

@media (max-width: 1399px) {
  .oks-arrow-1 {
    right: -70px;
  }
  .oks-arrow-2 {
    left: -60px;
  }
  .oks-arrow-3 {
    left: -30px;
  }
}
@media (max-width: 1199px) {
  .oks-stakeholder-text,
  .oks-intro-text,
  .oks-top-note,
  .oks-mid-note {
    font-size: 0.94rem;
  }
  .oks-arrow-1 {
    /* right: -30px; */
    /* width: 50px; */
  }
  .oks-arrow-2 {
    left: -40px;
  }
  .oks-arrow-3 {
    left: -30px;
    top: 10px;
    width: 40px;
  }
}

@media (max-width: 991px) {
  .oks-stakeholders-section {
    padding: 22px 16px 28px;
  }
  .oks-center-graphic-wrap {
    min-height: 260px;
    margin: 10px 0 20px;
  }
  .oks-center-graphic-wrap img {
    width: 350px;
  }
  .oks-legend {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .oks-figure-badge {
    font-size: 0.98rem;
    padding: 9px 14px;
  }
  .oks-stakeholder-card {
    margin-bottom: 22px;
  }
  .oks-stakeholder-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .oks-stakeholder-title {
    font-size: 1rem;
  }
  .oks-stakeholder-text {
    font-size: 0.93rem;
  }
}

/* ----------------  */
.osep-process-section {
  padding: 35px 12px 24px;
  background-color: var(--teal-blue-bg2);
  position: relative;
  margin-top: 50px;
}

.osep-section-title {
  position: absolute;
  top: -20px;
  display: inline-block;
  background: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.osep-info-box {
  background: var(--bg-color);
  border: 1px solid;
  border-image: linear-gradient(
      to right,
      var(--headings-color),
      var(--cyan-color)
    )
    1;
  padding: 16px 18px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.osep-label {
  color: var(--cyan-color);
  font-weight: 700;
}

.osep-middle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 18px 0;
  z-index: 1;
}

.osep-middle-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.osep-arrow-line {
  position: absolute;
  background: var(--headings-color);
  z-index: 1;
}

.osep-arrow-line.osep-horizontal {
  height: 1px;
  width: 34px;
}

.osep-arrow-line.osep-vertical {
  width: 1px;
  height: 48px;
}

.osep-arrow-head {
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--headings-color);
  border-bottom: 1px solid var(--headings-color);
  background: transparent;
}

.osep-arrow-top-left-h {
  right: -70px;
  top: 78px;
}

.osep-arrow-top-left-v {
  right: -70px;
  top: 78px;
}

.osep-arrow-top-left-head {
  right: -74px;
  top: 118px;
  transform: rotate(45deg);
}

.osep-arrow-left-mid-h {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.osep-arrow-left-mid-head {
  right: -20px;
  top: calc(50% - 5px);
  transform: rotate(-45deg);
}

.osep-arrow-bottom-left-h {
  right: -70px;
  bottom: 90px;
}

.osep-arrow-bottom-left-v {
  right: -70px;
  bottom: 90px;
}

.osep-arrow-bottom-left-head {
  right: -74px;
  bottom: 128px;
  transform: rotate(226deg);
}

.osep-arrow-top-right-h {
  left: -70px;
  top: 78px;
}

.osep-arrow-top-right-v {
  left: -70px;
  top: 78px;
}

.osep-arrow-top-right-head {
  left: -74px;
  top: 118px;
  transform: rotate(45deg);
}

.osep-arrow-right-mid-h {
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.osep-arrow-right-mid-head {
  left: -23px;
  top: calc(50% - 5px);
  transform: rotate(135deg);
}

.osep-arrow-bottom-right-h {
  left: -70px;
  bottom: 90px;
}

.osep-arrow-bottom-right-v {
  left: -70px;
  bottom: 91px;
}

.osep-arrow-bottom-right-head {
  left: -74px;
  bottom: 129px;
  transform: rotate(225deg);
}

@media (max-width: 1199.98px) {
  .osep-info-box li {
    font-size: 14px;
  }

  .osep-middle-img {
    max-width: 430px;
  }
}

@media (max-width: 991.98px) {
  .osep-process-grid .col-lg-4,
  .osep-process-grid .col-lg-8 {
    margin-bottom: 20px;
  }

  .osep-middle-wrap {
    padding: 8px 0 24px;
  }

  .osep-arrow-line,
  .osep-arrow-head {
    display: none;
  }

  .osep-info-box {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .osep-section-title {
    font-size: 16px;
    padding: 8px 14px;
  }

  .osep-info-box {
    padding: 14px;
  }

  .osep-info-box li {
    font-size: 13px;
    line-height: 1.45;
  }

  .osep-middle-img {
    max-width: 100%;
  }
}

/* --------------  */
.mfse-tob-border-alice-blue-bg {
  background-color: var(--teal-blue-bg2);
  padding: 30px 30px 30px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 30px;
}

.mfse-main-title {
  position: absolute;
  top: -20px;
  display: inline-block;
  background: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.mfse-accordion {
  background-color: var(--bg-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.mfse-accordion .mfse-sub-menu-content {
  display: none;
  padding: 0 15px 15px;
}

.mfse-accordion .mfse-sub-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: var(--headings-color);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mfse-accordion .mfse-sub-menu-title:hover,
.mfse-accordion .mfse-sub-menu-title.active {
  background-color: var(--hover-blue);
}

.mfse-accordion .mfse-sub-menu-title > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mfse-accordion .mfse-sub-menu-title img {
  width: 40px;
  height: auto;
}

.mfse-accordion .fa-angle-down {
  font-size: 20px;
  transition: transform 300ms ease;
}

.mfse-accordion .fa-angle-down.close {
  transform: rotate(180deg);
  color: var(--headings-color);
}

.mfse-stakeholder-engagement-content > div {
  display: flex;
  flex-direction: column;
}

.mfse-sec-title {
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.mfse-sec-title h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 10px;
  color: var(--bg-color);
  background-color: var(--heading1-color);
  padding: 5px 20px;
  border-radius: 50px;
}

.mfse-sec-title i {
  font-size: 14px !important;
  color: var(--bg-color);
  background-color: var(--heading1-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.mfse-content-box {
  padding: 15px;
  border-radius: 10px;
  flex-grow: 1;
}

.mfse-ft1 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mfse-ft1 td {
  padding: 8px 10px;
  border: 1px solid #dee2e6;
  background-color: var(--mfse-table);
}

.mfse-tr {
  background-color: var(--cyan-color2);
  color: var(--bg-color);
  font-weight: bold;
  text-align: left;
}

.mfse-tr td {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
/* stakeholder engagement end  */

/* Material matters start  */
.mm-holistic-custom-table {
  background-color: var(--teal-blue-bg2);
  padding: 30px;
}
.mm-sub-title {
  margin: 0;
  display: inline-block;
  color: var(--bg-color);
  padding: 7px 15px;
  border-radius: 50px;
}
.mm-sub-title.mm-red {
  background-color: var(--mm-red);
}
.mm-sub-title.mm-blue {
  background-color: var(--headings-color);
}
.mm-sub-title.mm-purple {
  background-color: var(--mm-purple);
}
.mm-sub-title.mm-orange {
  background-color: var(--mm-orange);
}
.mm-sub-title.mm-green {
  background-color: var(--mm-green);
}
.mm-sub-title.mm-brown {
  background-color: var(--mm-brown);
}

.mm-blue-title {
  color: var(--heading1-color);
  font-weight: bold;
}
.mm-gri {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 5px;
  border-radius: 50px;
  font-weight: 300;
}

/* --------------  */

.tmmv-alice-blue-bg {
  background-color: var(--teal-blue-bg2);
  padding: 30px;
  border-radius: 8px;
  position: relative;
  margin-top: 50px;
}
.tmmv-title {
  position: absolute;
  top: -20px;
  display: inline-block;
  background: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.tmmv-bg-light-green {
  background: var(--matrix-green-bg);
}
.tmmv-eos-sus-title {
  color: #0b71b6;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
}

.tmmv-matrix-container {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #ddd;
  background-color: var(--bg-color);
  padding: 30px 0;
}
.tmmv-matrix-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-top: 90%;
}
@media (min-width: 768px) {
  .tmmv-matrix-inner {
    padding-top: 80%;
  }
}

.tmmv-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--matrix-border-green);
  margin: 0 0 80px 80px;
}
.tmmv-grid-cell {
  border: 1px dashed var(--matrix-border-green);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  /* padding: 5px; */
  padding: 30px;
  overflow: auto;
  align-items: center;
  justify-content: center;
}

/* .tmmv-grid-cell:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(2, 30px);
} */

.tmmv-item {
  border-radius: 50px;
  padding: 5px 10px;
  margin: 2px;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(10px, 2.5vw, 15px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  color: var(--bg-color);
}
.tmmv-item:hover {
  transform: scale(1.1);
}

.tmmv-red {
  background-color: var(--matrix-red);
}
.tmmv-item.tmmv-red:hover {
  opacity: 0.8;
}
.tmmv-blue {
  background-color: var(--matrix-blue);
}
.tmmv-item.tmmv-blue:hover {
  opacity: 0.8;
}
.tmmv-green {
  background-color: var(--matrix-green);
}
.tmmv-item.tmmv-green:hover {
  opacity: 0.8;
}
.tmmv-orange {
  background-color: var(--matrix-orange);
}
.tmmv-item.tmmv-orange:hover {
  opacity: 0.8;
}
.tmmv-purple {
  border: 1px solid var(--matrix-purple);
  background-color: var(--matrix-purple);
}
.tmmv-item.tmmv-purple:hover {
  opacity: 0.8;
}
.tmmv-tan {
  background-color: var(--matrix-tan);
}
.tmmv-item.tmmv-tan:hover {
  opacity: 0.8;
}

.tmmv-tooltip {
  position: absolute;
  z-index: 100;
  width: min(250px, 80vw);
  background-color: var(--bg-color);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-size: clamp(12px, 2.5vw, 14px);
  margin-top: 39px;
}
.tmmv-tooltip-title {
  font-weight: bold;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}
.tmmv-tooltip-content {
  line-height: 1.4;
}
.tmmv-tooltip-main-title {
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 6px;
  color: var(--bg-color);
}

.tmmv-tooltip.tmmv-red .tmmv-tooltip-title {
  color: var(--matrix-red);
}
.tmmv-tooltip.tmmv-red .tmmv-tooltip-main-title {
  background: var(--matrix-red);
}
.tmmv-tooltip.tmmv-blue .tmmv-tooltip-title {
  color: var(--matrix-blue);
}
.tmmv-tooltip.tmmv-blue .tmmv-tooltip-main-title {
  background: var(--matrix-blue);
}
.tmmv-tooltip.tmmv-green .tmmv-tooltip-title {
  color: var(--matrix-green);
}
.tmmv-tooltip.tmmv-green .tmmv-tooltip-main-title {
  background: var(--matrix-green);
}
.tmmv-tooltip.tmmv-orange .tmmv-tooltip-title {
  color: var(--matrix-orange);
}
.tmmv-tooltip.tmmv-orange .tmmv-tooltip-main-title {
  background: var(--matrix-orange);
}
.tmmv-tooltip.tmmv-purple .tmmv-tooltip-title {
  color: var(--matrix-purple);
}
.tmmv-tooltip.tmmv-purple .tmmv-tooltip-main-title {
  background: var(--matrix-purple);
}
.tmmv-tooltip.tmmv-tan .tmmv-tooltip-title {
  color: var(--matrix-tan);
}
.tmmv-tooltip.tmmv-tan .tmmv-tooltip-main-title {
  background: var(--matrix-tan);
}

.tmmv-y-row,
.tmmv-x-row {
  position: absolute;
  font-weight: bold;
  color: var(--text-color);
  font-size: clamp(12px, 3vw, 18px);
  display: flex;
  text-align: center;
}
.tmmv-y-row {
  left: 0;
  top: 0;
  flex-direction: column;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-content: space-around;
  height: 100%;
  z-index: 1;
}
.tmmv-x-row {
  left: 0;
  bottom: 0;
  flex-direction: column;
  width: 100%;
  z-index: 0;
}

.tmmv-y-axis-title,
.tmmv-x-axis-title {
  padding: 8px;
  color: var(--bg-color);
  background: linear-gradient(
    180deg,
    var(--headings-color) 0%,
    var(--cyan-color) 100%
  );
}
.tmmv-y-axis-title {
  height: 100%;
  margin-top: 0;
}
.tmmv-x-axis-title {
  margin-left: 30px;
  background: linear-gradient(
    90deg,
    var(--headings-color) 0%,
    var(--cyan-color) 100%
  );
}

.tmmv-y-axis-grid {
  display: flex;
  margin-top: 80px;
}
.tmmv-x-axis-grid {
  display: flex;
  width: calc(100% - 57px);
  margin-left: 80px;
}
.tmmv-y-axis-grid-item {
  height: 33.3%;
  text-align: center;
  padding: 3px;
  border-top: 1px dashed var(--matrix-border-green);
}
.tmmv-x-axis-grid-item {
  width: 33.3%;
  padding: 3px;
  border-left: 1px dashed var(--matrix-border-green);
}

@media (max-width: 1199px) {
  .tmmv-grid-cell {
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .tmmv-grid-cell {
    padding: 5px;
    align-content: flex-start;
  }
}

@media (max-width: 767px) {
  .tmmv-y-axis-title,
  .tmmv-x-axis-title {
    font-size: 14px;
  }
  .tmmv-y-axis-grid-item,
  .tmmv-x-axis-grid-item {
    font-size: 13px;
  }
  .tmmv-x-axis-title {
    margin-left: 15px;
  }
  .tmmv-x-axis-grid {
    width: calc(100% - 47px);
    margin-left: 69px;
  }
  .tmmv-y-axis-grid {
    margin-top: 69px;
  }
  .tmmv-grid-container {
    margin: 0 0 68px 68px;
  }
}
@media (max-width: 500px) {
  .tmmv-grid-cell {
    padding: 15px !important;
    align-content: center;
  }
  .tmmv-title {
    top: -25px;
    font-size: 15px;
  }
  .tmmv-alice-blue-bg,
  .tmmv-matrix-container {
    padding: 10px !important;
  }
  .tmmv-matrix-inner {
    width: 95%;
    padding-top: 120%;
  }
  .tmmv-x-axis-title,
  .tmmv-y-axis-title {
    font-size: 11px;
  }
  .tmmv-y-axis-grid-item,
  .tmmv-x-axis-grid-item {
    font-size: 12px;
  }
  .tmmv-grid-container {
    margin: 0 0 63px 63px;
  }
  .tmmv-x-axis-grid {
    width: calc(100% - 41px);
    margin-left: 63px;
  }
  .tmmv-y-axis-grid {
    margin-top: 64px;
  }
  .tmmv-item {
    padding: 2px 4px;
    margin: 1px;
    font-size: 9px;
  }
  .tmmv-grid-cell {
    padding: 2px;
  }
}

@media (max-width: 440px) {
  .tmmv-grid-cell {
    padding: 5px !important;
    align-content: center;
  }
}

@media (max-width: 380px) {
  .tmmv-title {
    top: -30px;
    font-size: 13px;
  }
}

/* Material matters end  */

/* statement of capital position start  */
.scp-capital-position {
  display: flex;
  justify-content: center;
}
.scp-capital-position .scp-img-wrapper {
  width: 25%;
  margin: 0 5px;
}
.scp-capital-position .scp-img-wrapper img {
  width: 100%;
  height: auto;
}
.scp-capital-position > div:first-child,
.scp-capital-position > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scp-capital-position > div:first-child > div,
.scp-capital-position > div:last-child > div {
  padding: 7.5px 10px;
  background-color: black;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 300ms ease;
}
.scp-capital-position > div:first-child > div:hover,
.scp-capital-position > div:last-child > div:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.scp-capital-position > div:last-child > div {
  justify-content: flex-end;
}
.scp-capital-position > div:first-child > div i {
  display: block;
  margin-left: auto;
  color: white;
  font-size: 12px;
}
.scp-capital-position > div:last-child > div i {
  display: block;
  margin-right: auto;
  color: white;
  font-size: 12px;
}
.scp-capital-position > div:first-child > div img,
.scp-capital-position > div:last-child > div img {
  height: 35px;
  width: auto;
}
.scp-capital-position a {
  text-decoration: none;
  color: var(--bg-color);
  font-size: 14px;
  font-weight: 600;
  margin: 0 10px;
}

.scp-capital-position > div:first-child > div:nth-child(1) {
  background-color: var(--matrix-blue);
}
.scp-capital-position > div:first-child > div:nth-child(2) {
  background-color: var(--scp-pink);
}
.scp-capital-position > div:first-child > div:nth-child(3) {
  background-color: var(--scp-yellow);
}
.scp-capital-position > div:last-child > div:nth-child(1) {
  background-color: var(--matrix-purple);
}
.scp-capital-position > div:last-child > div:nth-child(2) {
  background-color: var(--matrix-tan);
}
.scp-capital-position > div:last-child > div:nth-child(3) {
  background-color: var(--cyan-color);
}

.scp-capital-position > div:first-child > div {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.scp-capital-position > div:last-child > div {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.scp-modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
.scp-modal-header button.close {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 8px;
  justify-content: space-between;
}
.scp-modal-content {
  padding: 20px;
}
.scp-modal-title {
  font-size: 20px;
  font-weight: 600;
  padding-left: 10px;
}
.scp-blu {
  background-color: var(--matrix-blue);
  color: var(--bg-color);
}
.scp-pnk {
  background-color: var(--scp-pink);
  color: var(--bg-color);
}
.scp-yel {
  background-color: var(--scp-yellow);
  color: var(--bg-color);
}
.scp-prpl {
  background-color: var(--matrix-purple);
  color: var(--bg-color);
}
.scp-brn {
  background-color: var(--matrix-tan);
  color: var(--bg-color);
}
.scp-grn {
  background-color: var(--cyan-color);
  color: var(--bg-color);
}

@media (max-width: 767px) {
  .scp-capital-position .scp-img-wrapper {
    display: none;
  }
  .scp-capital-position {
    flex-direction: column;
  }
  .scp-capital-position > div:first-child > div,
  .scp-capital-position > div:last-child > div {
    margin: 10px 0;
  }
  .scp-capital-position > div:first-child > div {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .scp-capital-position > div:last-child > div {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .scp-capital-position > div:last-child > div i {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.custom-modal-container {
  background: var(--bg-color);
  border-radius: 8px;
  width: 90%;
  max-width: 1140px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  opacity: 0;
  transform: scale(0.8);
}
/* statement of capital position end  */

/* embedding sustainability start  */
.k-common-cyanbox {
  width: 100%;
  height: fit-content;
  padding: 40px 20px 20px;
  background-color: var(--teal-blue-bg2);
  margin-bottom: 15px;
  margin-top: 30px;
  position: relative;
}

.k-common-cyanbox-head {
  position: absolute;
  top: -18px;
  left: 20px;
  display: inline-block;
  background: var(--cyan-color);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 8px 22px;
  border-radius: 50px;
  z-index: 9;
}

.k-main-heading {
  color: var(--bg-color);
  background-color: var(--heading1-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
}

.k-blue-title {
  color: var(--heading1-color);
  font-weight: bold;
  font-size: 15px;
}

.k-big-number {
  font-size: 28px;
  color: var(--heading1-color);
  font-weight: 300;
  margin-bottom: 4px;
  line-height: 1;
}

.k-desc {
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 10px;
}

.k-com-wrapper {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b7c7c9;
  position: relative;
  z-index: 2;
}

.k-center-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.k-com-wrapper:last-child {
  border-bottom: none;
}

.k-center-image {
  position: absolute;
  height: auto;
  transform: scale(1.1);
  z-index: 1;
}

.k-flash-logo img {
  width: 100px;
}

@media (max-width: 991px) {
  .k-center-image {
    position: relative;
    max-width: 100%;
    height: auto;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .k-common-cyanbox-head {
    font-size: 14px;
    left: 10px;
  }
}

.k-cyan-title {
  color: var(--cyan-color);
  font-weight: bold;
}

.k-tenor-pill {
  display: inline-block;
  border: 1px solid var(--cyan-color);
  color: var(--cyan-color);
  border-radius: 50px;
  padding: 2px 14px;
  font-weight: bold;
  background: transparent;
}

.k-timeline-left {
  border-left: 1px solid #a3b8ba;
  margin-left: 20px;
  padding-left: 18px;
  margin-top: 15px;
}

.k-timeline-left .k-timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.k-timeline-left .k-timeline-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.5px solid #262279;
  border-radius: 50%;
  background: #f2f9f8;
  left: -23px;
  top: 6px;
}

.k-timeline-right {
  border-right: 1px solid #a3b8ba;
  margin-right: 20px;
  padding-right: 18px;
  margin-top: 15px;
  text-align: right;
}

.k-timeline-right .k-timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.k-timeline-right .k-timeline-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.5px solid #262279;
  border-radius: 50%;
  background: #f2f9f8;
  right: -23px;
  top: 6px;
}

@media (max-width: 991px) {
  .k-timeline-right {
    text-align: left;
    border-right: none;
    border-left: 1px solid #a3b8ba;
    margin-right: 0;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 18px;
  }

  .k-timeline-right .k-timeline-item::before {
    right: auto;
    left: -23px;
  }

  .text-end {
    text-align: left !important;
  }
}

.k-sg-pill {
  border: 1px solid var(--cyan-color);
  color: var(--cyan-color);
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 14px;
  background: var(--bg-color);
  font-weight: 600;
}

.k-sg-connector-horizontal {
  width: 40%;
  height: 1px;
  background-color: #a3b8ba;
  margin: 0 auto;
}

.k-sg-bracket {
  width: 50%;
  margin: 0 auto 10px auto;
}

.k-sg-impact {
  display: inline-block;
  background-color: var(--heading1-color);
  color: var(--bg-color);
  padding: 5px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  margin-top: -2px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.k-sg-card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.k-sg-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  position: absolute;
  top: -72px;
}

.k-sg-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 10px;
}

.k-sg-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.k-sg-card-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--heading1-color);
  line-height: 1.3;
}

.k-sg-card-body {
  background: var(--bg-color);
  border: 1px solid var(--cyan-color);
  border-radius: 8px;
  padding: 18px;
  flex-grow: 1;
}

.k-sg-item {
  margin-bottom: 14px;
}

.k-sg-item:last-child {
  margin-bottom: 0;
}

.k-sg-item-title {
  color: var(--cyan-color);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
}

.k-sg-item-desc {
  color: var(--text-color);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.3;
}

.k-sg-main-img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  margin-bottom: 50px;
}

.k-sg-banner {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .k-sg-card-body {
    margin-bottom: 45px;
  }
  .k-sg-bracket {
    width: 80%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 768px) {
  .k-sg-connector-horizontal {
    width: 80%;
  }
  .k-sg-banner {
    font-size: 15px;
    padding: 10px 20px;
  }
  .k-sg-main-img {
    max-height: 250px;
  }
}

.k-enabler-card {
  position: relative;
  height: 100%;
}

.k-enabler-box {
  background: var(--bg-color);
  border: 1px solid var(--cyan-color);
  border-radius: 8px;
  padding: 35px 20px 25px 20px;
}

.k-enabler-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.k-enabler-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-color);
}

.k-enabler-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--cyan-color);
  border-radius: 50%;
}

.k-enabler-list li:last-child {
  margin-bottom: 0;
}

.k-enabler-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.k-enabler-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.k-enabler-title {
  position: absolute;
  background-color: var(--heading1-color);
  color: var(--bg-color);
  font-weight: bold;
  border-radius: 50px;
  padding: 4px 18px;
  z-index: 3;
  white-space: nowrap;
}

.top-left-icon .k-enabler-icon {
  top: -68px;
  left: 10px;
}
.top-left-icon .k-enabler-title {
  top: -34px;
  left: 82px;
}
.top-left-icon .k-enabler-title-stack {
  position: absolute;
  top: -67px;
  left: 68px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  z-index: 3;
}
.top-left-icon .k-enabler-title-stack .k-enabler-title {
  position: relative;
  top: auto;
  left: auto;
  padding: 3px 18px;
}

.bottom-right-icon .k-enabler-box {
  padding-bottom: 55px;
}
.bottom-right-icon .k-enabler-icon {
  bottom: -45px;
  right: -0px;
}
.bottom-right-icon .k-enabler-title {
  bottom: -10px;
  right: 73px;
}

.bottom-left-icon .k-enabler-box {
  padding-bottom: 25px;
  padding-left: 55px;
}
.bottom-left-icon .k-enabler-icon {
  bottom: -20px;
  left: -40px;
}
.bottom-left-icon .k-enabler-title {
  bottom: -5px;
  left: 25px;
}

@media (max-width: 1199px) {
  .k-enabler-card {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .bottom-left-icon .k-enabler-icon {
    left: -10px;
  }
  .bottom-left-icon .k-enabler-title {
    left: 0px;
  }
  .bottom-left-icon .k-enabler-box {
    padding-left: 20px;
    padding-bottom: 50px;
  }
}

.k-3-col-text {
  margin-top: 10px;
  column-count: 3;
  column-gap: 2rem;
  text-align: left;
}

@media (max-width: 767px) {
  .k-3-col-text {
    column-count: 1;
  }
}

.k-infra-list li:last-child {
  margin-bottom: 0;
}

.k-infra-outcomes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.k-infra-outcomes-box {
  border: 1px solid var(--heading1-color);
  color: var(--heading1-color);
  border-radius: 50px;
  padding: 6px 30px;
  font-weight: bold;
  margin-bottom: 15px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  background: transparent;
}

.k-infra-pill-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.k-infra-pill {
  background-color: var(--cyan-color);
  color: var(--bg-color);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
}

.award-of-merit {
  background-color: var(--cyan-color);
  padding: 15px;
  margin-bottom: 15px;
}

.award-of-merit p {
  color: #000;
}

.k-cyan-stat {
  font-size: 28px;
  color: var(--cyan-color);
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.1;
}

.k-sub-title {
  color: var(--heading1-color);
  margin-bottom: 12px;
}

.k-small-desc {
  line-height: 1.3;
}

.k-cyan-divider {
  width: 100%;
  height: 2px;
  background-color: var(--cyan-color);
  margin: 25px 0;
}

.figure42-middle-img {
  position: absolute;
  width: 127%;
  left: -118px;
}

@media (max-width: 1399px) {
  .figure42-middle-img {
    position: absolute;
    width: 117%;
    left: -60px;
    top: 72px;
  }
}

@media (max-width: 991px) {
  .figure42-middle-img {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
  }
}

.k-dei-card {
  background: var(--bg-color);
  border: 1px solid var(--cyan-color);
  border-radius: 8px;
  padding: 25px 20px;
}

.k-dei-outline-pill {
  border: 1px solid var(--heading1-color);
  color: var(--heading1-color);
  border-radius: 50px;
  padding: 6px 30px;
  font-weight: 600;
  font-size: 15px;
  background: var(--bg-color);
}

.k-dei-custom-arrow {
  display: flex;
  align-items: center;
  width: 50px;
}

.k-dei-arrow-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: #b0aecf;
}

.k-dei-arrow-head {
  color: #b0aecf;
  font-size: 14px;
  margin-left: -2px;
}

@media (max-width: 991px) {
  .k-dei-custom-arrow {
    width: 34px;
    transform: rotate(90deg);
  }
}
@media (max-width: 767px) {
  .k-dei-custom-arrow {
    width: 25px;
    transform: rotate(90deg);
  }
}

.text-cyan {
  color: var(--cyan-color);
}

.text-two-column {
  column-count: 2;
  gap: 2rem;
}

.text-black {
  color: var(--text-color) !important;
}
.text-bold {
  font-weight: bold;
}

@media (max-width: 767px) {
  .text-two-column {
    column-count: 1;
  }
}

.list-disc2 > li:before {
  font-family: Arial, Helvetica;
  font-size: 25px;
  position: relative;
  top: 4px;
  content: "\2022";
  padding-right: 10px;
  margin-left: -20px;
  color: #b9babc;
}

.list-disc2 > li {
  list-style: outside none none;
  margin: 0px 0px 4px 0px;
  line-height: 20px;
  margin-bottom: 5px;
  margin-left: 20px;
}

.list-disc2-white > li:before {
  font-family: Arial, Helvetica;
  font-size: 25px;
  position: relative;
  top: 4px;
  content: "\2022";
  padding-right: 10px;
  margin-left: -20px;
  color: var(--bg-color);
}

.list-disc2,
.list-disc2-white > li {
  list-style: outside none none;
  margin: 0px 0px 4px 0px;
  line-height: 20px;
  margin-bottom: 5px;
  margin-left: 0;
}

ul.list-disc2 {
  margin-bottom: 25px;
}

.list2 {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--list-black);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  counter-reset: my-awesome-counter;
}

.list-abc2 > li {
  counter-increment: my-awesome-counter;
  margin-bottom: 5px;
  margin-left: 30px;
  position: relative;
}

.list-abc2 > li::before {
  content: "(" counter(my-awesome-counter, lower-alpha) ") ";
  position: absolute;
  left: -25px;
}

.blue-border-bottom {
  border-bottom: 2px solid var(--heading1-color);
  padding-bottom: 5px;
}
.gray-border-bottom {
  border-bottom: 1px solid #908e8f;
  padding-bottom: 5px;
}
.cyan-border-bottom {
  border-bottom: 1px solid var(--cyan-color);
  padding-bottom: 5px;
}

/* embedding sustainability end  */

.senior_management {
  background-color: var(--bg-color);
}

/* bug fix   */
.k-pale-pink {
  background-color: var(--k-pale-pink);
  color: var(--k-dark-pink);
  padding: 30px;
  margin-top: 10px;
}

.k-pale-pink-headeing {
  padding: 5px 10px;
  border: 6px solid #7e475c;
  border-radius: 10px;
  font-size: 25px;
  width: fit-content;
  max-width: 95%;
  font-weight: 700;
  color: #7e475c;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-left: 5px;
  background: #fff;
  transform: rotate(-2deg);
}

@media (max-width: 540px) {
  .k-pale-pink-headeing {
    font-size: 22px;
    border: 5px solid #fff;
    font-weight: 600;
  }
}

[data-theme="dark"] .k-pale-pink-headeing,
[data-theme="power-save"] .k-pale-pink-headeing {
  border: 6px solid #fff;
  background: none;
  color: #fff;
}
/* Kanishka Styles end */

/* Shamith Start */
/* Home */
.landing-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 130px 40px 40px;
}

.landing-section .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.home_text_container {
  position: absolute;
  top: 25%;
  left: 50px;
  z-index: 2;
}

.home_text {
  width: auto;
  height: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(1px);
}

.home_theme_container {
  background-color: #fff;
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 45px;
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
  /* closing: shrink after text has faded out */
  transition:
    width 0.35s ease 0.15s,
    height 0.35s ease 0.15s,
    opacity 0.5s ease;
}

.home_theme_container.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.home_theme_container.is-open {
  width: 50%;
  height: 250px;
  /* opening: expand immediately */
  transition:
    width 0.4s ease,
    height 0.4s ease;
}

.home_theme {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.ht_close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  /* closing: fade out immediately (no delay) */
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.home_theme_container.is-open .ht_close {
  visibility: visible;
  opacity: 1;
  /* opening: fade in after container fully expands */
  transition:
    opacity 0.3s ease 0.38s,
    visibility 0.3s ease 0.38s;
}

.home_theme {
  scrollbar-width: none;
  padding: 15px 40px 0 20px;
  visibility: hidden;
  opacity: 0;
  /* closing: fade out immediately (no delay) */
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.home_theme_container.is-open .home_theme {
  visibility: visible;
  opacity: 1;
  /* opening: fade in after container fully expands */
  transition:
    opacity 0.3s ease 0.38s,
    visibility 0.3s ease 0.38s;
}

.home_theme::-webkit-scrollbar {
  display: none;
}

.home_theme p {
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
  color: var(--home-text);
}

.home_theme_container i {
  color: var(--home-text);
}

.explore_button {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 200px;
  height: 45px;
  border: none;
  background-color: transparent;
  color: #25206d;
  font-weight: 600;
  font-size: 17.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* closing: fade back in after container shrinks */
  transition:
    opacity 0.25s ease 0.45s,
    visibility 0.25s ease 0.45s;
}

.home_theme_container.is-open .explore_button {
  opacity: 0;
  visibility: hidden;
  /* opening: fade out immediately */
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.explore_button p {
  font-size: 17.5px;
  line-height: 1;
  margin: 0;
  color: #25206d;
}

.landing-section .videos-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1640px);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.landing-section .videos-container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.video-wrapper {
  display: block;
  position: relative;
  flex: 0 1 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 5px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    box-shadow 0.3s ease;
}

.video-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.video_thumb {
  overflow: hidden;
  aspect-ratio: 3/1.25;
  border-radius: 10px;
}

.video_thumb img {
  width: 100%;
  height: 100%;
  transform-origin: top center;
  display: block;
  object-fit: cover;
}

.video-wrapper .text-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
}

.video-wrapper .text-wrapper p {
  margin: 0 !important;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  font-size: 15px;
}

.video-wrapper .text-wrapper > i {
  flex-shrink: 0;
  width: clamp(32px, 2vw, 40px);
  height: clamp(32px, 2vw, 40px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
}

.video-wrapper .text-wrapper > i i {
  color: #086563;
  font-size: clamp(14px, 0.95vw, 16px);
  margin-left: 2px;
}

/* ── Video transcript modal (power-save mode) ───────────── */
.video-modal__transcript-shell {
  display: none;
  background: #111;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.8;
  max-height: 70vh;
  overflow-y: auto;
}

.video-modal__transcript-shell p {
  margin-bottom: 14px;
}

.video-modal__transcript-shell p:last-child {
  margin-bottom: 0;
}

.video-modal.is-transcript-mode .video-modal__player-shell {
  display: none;
}

.video-modal.is-transcript-mode .video-modal__transcript-shell {
  display: block;
}

@media (min-width: 1500px) {
  .landing-section {
    padding: 150px 50px 50px;
  }

  .landing-section .videos-container {
    width: min(100%, 1760px);
    gap: 36px;
  }

  .landing-section .videos-container > div {
    gap: 20px;
  }

  .video-wrapper {
    width: 292px;
    padding: 5px;
    border-radius: 10px;
  }

  .video-wrapper .text-wrapper p {
    font-size: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .landing-section {
    padding: 130px 32px 32px;
  }

  .landing-section .videos-container {
    gap: 24px;
  }

  .video-wrapper {
    width: clamp(220px, 17vw, 250px);
  }
}

@media (max-width: 1199px) {
  .landing-section .videos-container {
    max-width: 900px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }

  .landing-section {
    padding: 112px 24px 24px;
  }

  .landing-section .videos-container > div {
    width: auto;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .video-wrapper {
    flex: 0 0 auto;
    width: clamp(180px, 20vw, 220px);
  }

  .landing-section .videos-container > div:last-child .video-wrapper {
    width: clamp(180px, 20vw, 220px);
    flex-basis: auto;
  }

  .video-wrapper .text-wrapper > i {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }

  .video-wrapper .text-wrapper > i i {
    font-size: 12px;
  }

  .video_thumb {
    aspect-ratio: 16 / 9;
  }

  .home_text_container {
    top: 15%;
  }

  .home_theme_container.is-open {
    width: 70%;
    height: 250px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home_text {
    height: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .landing-section {
    padding: 104px 18px 18px;
  }

  .landing-section .videos-container {
    max-width: 720px;
    gap: 10px;
  }

  .landing-section .videos-container > div {
    gap: 10px;
  }

  .video-wrapper .text-wrapper > i {
    width: 26px;
    height: 26px;
    margin-left: 8px;
  }

  .video-wrapper .text-wrapper > i i {
    font-size: 11px;
  }

  .home_theme_container.is-open {
    width: 75%;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .landing-section {
    min-height: auto;
    min-height: unset;
    display: block;
    padding: 0 0 24px;
    overflow: visible;
  }

  .landing-section .bg-video {
    position: relative;
    inset: auto;
    display: block;
    width: 100vw;
    min-height: 50vh;
    min-height: 50svh;
    height: 50vh;
    height: 50svh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0 0 24px 24px;
  }

  .landing-section .videos-container {
    max-width: 560px;
    margin: -48px auto 0;
    padding: 0 18px;
    gap: 14px;
  }

  .landing-section .videos-container > div {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .video-wrapper,
  .landing-section .videos-container > div:last-child .video-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: none;
    flex-basis: auto;
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(8, 73, 93, 0.12);
    box-shadow: 0 14px 36px rgba(7, 38, 58, 0.14);
  }

  .video-wrapper img {
    width: 170px;
    min-width: 170px;
  }

  .video-wrapper .text-wrapper {
    flex: 1;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .video-wrapper .text-wrapper p {
    font-size: 16px;
    color: #1e4655;
  }

  .video-wrapper .text-wrapper > i {
    width: 38px;
    height: 38px;
    margin-left: 0;
    align-self: flex-end;
    background: #eef6f4;
  }

  .video-wrapper .text-wrapper > i i {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .video-modal__transcript-shell {
    padding: 20px;
    font-size: 14px;
  }

  .video_thumb {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 767px) {
  .landing-section {
    padding-bottom: 18px;
  }

  .landing-section .videos-container {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 390px;
    margin-top: -38px;
    padding: 0 12px;
    gap: 10px;
  }

  .landing-section .videos-container > div {
    width: 100%;
    gap: 10px;
  }

  .video-wrapper {
    gap: 10px;
  }

  .video-wrapper img {
    width: 128px;
    min-width: 128px;
  }

  .video-wrapper .text-wrapper p {
    font-size: 14px;
  }

  .video-wrapper .text-wrapper > i {
    width: 34px;
    height: 34px;
  }

  .video-wrapper .text-wrapper > i i {
    font-size: 13px;
    margin-left: 2px;
  }

  .home_text_container {
    top: 20%;
    left: 30px;
  }

  .home_text {
    height: 60px;
  }

  .home_theme_container.is-open {
    width: calc(100% - 30px);
    height: 350px;
  }
}

@media (max-width: 479px) {
  .landing-section {
    padding-bottom: 16px;
  }

  .landing-section .bg-video {
    min-height: 50vh;
    min-height: 50svh;
    height: 50vh;
    height: 50svh;
    border-radius: 0 0 18px 18px;
  }

  .landing-section .videos-container {
    max-width: 340px;
    margin-top: -32px;
    padding: 0 10px;
  }

  .video-wrapper {
    gap: 9px;
  }

  .video-wrapper img {
    width: 108px;
    min-width: 108px;
  }

  .video-wrapper .text-wrapper {
    gap: 10px;
  }

  .video-wrapper .text-wrapper p {
    font-size: 13px;
  }

  .video-wrapper .text-wrapper > i {
    width: 30px;
    height: 30px;
  }
}

.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__dialog {
  position: relative;
  width: min(100%, 980px);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.25s ease;
}

.video-modal.is-open .video-modal__dialog {
  transform: translateY(0) scale(1);
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.03);
}

.video-modal__close i {
  font-size: 18px;
}

.video-modal__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.video-modal__player-shell {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal__player,
.video-modal__player-shell .plyr {
  width: 100%;
  display: block;
  background: #000;
}

.video-modal__player-shell .plyr {
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .video-modal {
    padding: 20px;
  }

  .video-modal__dialog {
    width: 100%;
  }

  .video-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .video-modal__player-shell,
  .video-modal__player-shell .plyr {
    border-radius: 14px;
  }
}

/* Committee Reports */
.committee-reports .accordion {
  border: 1px solid var(--border-gray);
  /* border-radius: 15px; */
  margin-bottom: 10px;
  overflow: hidden;
}
.committee-reports .accordion .sub-menu-title {
  border-top: none;
  padding: 30px 15px;
}
.committee-reports .accordion .sub-menu-title h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  color: var(--blacktxt);
}
.committee-reports .accordion .sub-menu-title i {
  color: var(--headings-color);
  font-size: 30px;
}
.committee-reports .accordion .ioarlogos .table-responsive {
  border: none;
}
.committee-reports .accordion .ioarlogos {
  position: relative;
  border: 1px solid var(--teal-blue);
  background-color: var(--teal-blue-bg);
}
.committee-reports .accordion .ioarlogos h2 {
  color: var(--teal-blue) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}
.committee-reports .accordion .ioarlogos.green-bg {
  background-color: #f2f8f0;
}
.committee-reports .accordion .ioarlogos::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--teal-blue);
}
.committee-reports .accordion .ioarlogos .trangle-wrap::before,
.committee-reports .accordion .ioarlogos .trangle-wrap::after {
  display: none;
}

.committee-reports .accordion .lifter {
  background-image: linear-gradient(
    280deg,
    rgba(2, 171, 80, 1) 0%,
    rgba(36, 87, 166, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.committee-reports .accordion .ioarlogos table tbody {
  background-color: transparent;
}
.committee-reports .accordion .ioarlogos table strong {
  color: black !important;
}
.committee-reports .committee-img {
  margin: 15px auto 30px auto;
  border-bottom: 2px solid #1f629f;
}
.committee-reports .committee-img img {
  width: 100%;
}

@media (max-width: 768px) {
  .committee-reports .committee-img img {
    width: 60%;
  }
}
@media (max-width: 540px) {
  .committee-reports .committee-img img {
    width: 90%;
  }
}

.inner_page_nav {
  position: absolute;
  top: 100%;
  right: 50px;
  display: flex;
  gap: 5px;
}
.inner_page_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 50%;
  background-color: var(--bg-color);
  width: 25px;
  height: 25px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--headings-color);
}
.inner_page_nav a.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 992px) {
  .inner_page_nav {
    right: 15px;
  }

  .inner_page_nav a::after {
    display: none;
  }
}

/* ── Vision Mission Panel ────────────────────────────────────── */
.vmv-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(110%);
  z-index: 19;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #fff;
  color: #25206d;
  border: none;
  padding: 20px 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transition:
    background-color 0.25s ease,
    padding 0.25s ease,
    transform 0.55s ease,
    opacity 0.55s ease;
  line-height: 1;
}

.vmv-trigger.is-visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.vmv-trigger:hover,
.vmv-trigger:focus-visible {
  background-color: #25206d;
  color: #fff;
  outline: none;
}

.vmv-overlay {
  position: fixed;
  inset: 0;
  z-index: 1299;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.vmv-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.vmv-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 95vw;
  height: 100%;
  z-index: 1300;
  background-color: var(--bg-color, #fff);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.vmv-panel.is-open {
  transform: translateX(0);
}

.vmv-panel__close {
  position: absolute;
  top: 14px;
  left: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--headings-color, #003087);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 1;
}

.vmv-panel__close:hover,
.vmv-panel__close:focus-visible {
  color: var(--cyan-color, #01c5c1);
  outline: none;
}

.vmv-panel__inner {
  flex: 1;
  overflow-y: auto;
  padding: 50px 28px 32px;
}

.vmv-panel__image-wrap {
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.vmv-panel__image {
  width: 100%;
  height: auto;
  display: block;
}

.vmv-panel__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vmv-block__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--headings-color, #003087);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cyan-color, #01c5c1);
}

.vmv-block__text {
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--text-color, #333);
  margin: 0;
}

@media (max-width: 767px) {
  .vmv-trigger {
    padding: 14px 8px;
    font-size: 11px;
  }

  .vmv-panel {
    width: 100%;
    max-width: 100vw;
  }
}

/* ── Vision Mission Panel End ────────────────────────────────── */

/* Shamith End */

/* Mineth Styles Start */
/* financial_review style start */

.key-highlights-list {
  padding-left: 19px;
  list-style: disc;
}

.key-highlights-list li::marker {
  color: var(--cyan-color);
}

.net-interest-income-list {
  padding-left: 19px;
  list-style: disc;
}

.net-interest-income-list li::marker {
  color: var(--cyan-color);
}

.caption {
  font-style: italic;
  margin-top: 5px;
}

.caption-2 {
  margin-top: -14px;
}

.net-profit-roe-list {
  padding-left: 19px;
  list-style: disc;
}

.net-profit-roe-list li::marker {
  color: var(--cyan-color);
}

.cy-custom {
  background: #edf8f9;
  font-weight: 500;
  color: #000000;
  padding-left: 43px;
}

.graph {
  margin-top: 15px;
  width: 100%;
  height: 100%;
}

/* financial_review style end */

/* performance_of_bangladesh operations css start */

.landscape-developments-list {
  padding-left: 19px;
  list-style: disc;
}

.landscape-developments-list li::marker {
  color: var(--cyan-color);
}

.key-achievements-list {
  padding-left: 19px;
  list-style: disc;
}

.key-achievements-list li::marker {
  color: var(--cyan-color);
}

.award-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.col-lg-12 {
  position: relative;
}

.image-desc {
  position: absolute;
  bottom: 6px;
  background-color: var(--cyan-color);
  width: 460px;
  padding: 5px 10px 5px 10px;
  font-size: 14px;
  color: #000;
}

.orysis-group-image {
  width: 100%;
  height: auto;
}

/* performance_of_bangladesh operations css end */

/* segmental_analysis_group css start */

.personal-banking-list {
  padding-left: 19px;
  list-style: disc;
}

.personal-banking-list li::marker {
  color: var(--cyan-color);
}

.background {
  background-color: var(--sagbg);
  margin-top: 3px;
  padding: 10px;
  border: none;
}

.corporate-banking-list {
  padding-left: 19px;
  list-style: disc;
}

.corporate-banking-list li::marker {
  color: var(--cyan-color);
}

.internationa-operations-list {
  padding-left: 19px;
  list-style: disc;
}

.internationa-operations-list li::marker {
  color: var(--cyan-color);
}

.dealing-treasury-list {
  padding-left: 19px;
  list-style: disc;
}

.dealing-treasury-list li::marker {
  color: var(--cyan-color);
}

.nbfi-real-estate-services-list {
  padding-left: 19px;
  list-style: disc;
}

.nbfi-real-estate-services-list li::marker {
  color: var(--cyan-color);
}

/* segmental_analysis_group css end */

/* investor_relations css start */

.mes-figure-wrapper {
  background: var(--mesbg);
  padding: 24px 28px 24px;
  max-width: 1080px;
  margin: 20px auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mes-figure-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--cyan-color);
  color: var(--whttxt);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 22px;
  line-height: 1;
  position: absolute;
  top: -15px;
}

.mes-column {
  padding: 0 0.9rem;
}

.mes-column-item {
  display: flex;
  /* width: fit-content; */
  align-items: center;
  justify-items: center;
  gap: 0.75rem;
  /* color: var(--ir-text); */
  /* r: var(--ir-text); */
  border-top: 1px solid var(--cyan-color);
}

.mes-column-item:first-child {
  border-top: none;
  padding: 1rem 0 1rem 0px;
  height: 80px;
  box-sizing: border-box;
  display: flex;
}

.mes-icons {
  width: 23%;
  /* min-width: 2.1rem; */
  height: auto;
  color: var(--heading1-color);
  stroke: currentColor;
  fill: none;
  /* stroke-width: 1.35; */
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mes-column + .mes-column {
  border-left: 1px solid var(--cyan-color);
}

.mes-column-item p {
  margin-top: 14px;
}

.mes-column:nth-child(4) .mes-column-item p {
  padding-bottom: 13px;
  padding-top: 30px;
  margin-top: -6px;
}

table.ft1.table55-left td,
table.ft1.table55-left thead tr td,
table.ft1.table55-left tbody tr td,
table.ft1.table55-left td p {
  text-align: left !important;
}

/* Responsive styles for mes-figure-wrapper */
@media (max-width: 991px) {
  .mes-figure-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }

  .mes-column:nth-child(3) {
    border-left: none;
  }

  .mes-column:nth-child(4) {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--cyan-color);
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .mes-column:nth-child(4) .mes-column-item:first-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .mes-figure-wrapper {
    grid-template-columns: 1fr;
    padding: 24px 15px;
  }

  .mes-column + .mes-column {
    border-left: none;
    border-top: 1px solid var(--cyan-color);
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .mes-column:nth-child(4) {
    grid-column: auto;
  }

  .mes-column-item:first-child {
    display: none;
  }

  .mes-figure-title {
    font-size: 13px;
    padding: 6px 12px;
  }
}

.equity-securities {
  margin-top: 15px;
}

img.right-brace {
  height: 50px;
  width: auto;
}

/* .left-align{
  text-align: left !important;
  margin-left: 10px;
} */

/* investor_relations css end */

/* summary_of_interim_financial_statements css start */

.heading-td {
  border-bottom: 1px solid var(--cyan-color) !important;
  font-size: 14px;
  line-height: 1.4;
}

/* summary_of_interim_financial_statements css end */

/* decade_at_a_glance css start */

.left-bigger-brace {
  width: auto;
  height: 331px;
  transform: rotate(180deg);
}

img.bigger-brace {
  width: 10px;
  height: 100%;
}

.left-brace {
  width: auto;
  height: 127px;
  transform: rotate(180deg);
}

.left-brace2 {
  width: auto;
  height: 170px;
  transform: rotate(180deg);
}

/* decade_at_a_glance css end */

/* Mineth Styles End */
