body {
  font-family: 'Nunito Sans',sans-serif;
  color: #000000 !important;
}

/* Container Width */
@media (min-width: 1200px) {
  .container {
    max-width: 1110px !important;
  }
}


/* h1 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700 ;
} */

/* h2 {
  font-size: 24px ;
  font-weight: 700;
} */

/* h3 {
  font-size: 20px;
  font-weight: 700;
} */

/* p {
  font-size: 18px !important;
  font-weight: 400 !important;
} */

/* Header Styles */

.topBar {
  background-color: #3b82f6;
  height: 35px;
  padding: 24px 44px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.topBar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.topBar a:hover {
  text-decoration: underline;
}

.mainHeader {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 60px;
}

/* Old mainNav styles removed - see updated styles below */

.breadcrumb {
  background-color: #f8f9fa;
  padding: 1rem 0;
  margin: 0;
  margin-top: 8px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ff6b35;
}

.breadcrumb .separator {
  color: #ff6b35;
}

.breadcrumb .current {
  color: #333;
  font-weight: 500;
}

.aboutContents h1 {
  color: #2b7de1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.aboutContents h2 {
  color: #002169;
  font-size: 24px;
  font-weight: 700;
}

.leadershipSection {
  background: linear-gradient(to bottom, #ffffff 0 50%, #f2f1f1 50% 100%);
  padding: 32px 0;
}

.leadershipSection .container {
  position: relative;
  z-index: 2;
}

.executiveTeam h1 {
  color: #2b7de1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.executiveTeam .teamCardContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.executiveTeam .teamCardContainer .teamCard {
  position: relative;
  /* 3D scene */
  perspective: 1000px;
  -webkit-perspective: 1000px;
  /* keep consistent size so layout doesn't jump when flipped */
  box-sizing: border-box;
  margin-bottom: 24px;
}

.executiveTeam .teamCardContainer .teamCard .teamCardInner {
  position: relative;
  width: 100%;
  min-height: 445px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.executiveTeam .teamCardContainer .teamCard:hover .teamCardInner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront,
.executiveTeam .teamCardContainer .teamCard .teamCardBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 445px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
}

.executiveTeam .teamCardContainer .teamCard .teamCardBack {
  background: #002169;
  color: #fff;
  padding: 32px;
  font-size: 18px;
  font-weight: 700;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 445px;
  box-sizing: border-box;
}

.executiveTeam .teamCardContainer .teamCard .teamCardBack>div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.executiveTeam .teamCardContainer .teamCard .teamCardBack a {
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  background: #ff5100;
  color: #fff;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  margin-top: auto;
}

.executiveTeam .teamCardContainer .teamCard .teamCardBack a:hover {
  transform: scale(1.1);
  background: #ff6b35;
}

@media (max-width: 767.98px) {
  .executiveTeam .teamCardContainer .teamCard .teamCardBack {
    font-size: 16px;
    display: flex;
    align-items: center;
  }
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront {
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 445px;
  box-sizing: border-box;
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront .image {
  width: auto;
  height: 236px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 32px;
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront h3 {
  color: #002169;
  font-size: 20px;
  font-weight: 700;
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront .position {
  font-size: 16px !important;
  margin-top: 16px;
  height: 50px;
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront img {
  width: 100%;
}

.executiveTeam .teamCardContainer .teamCard .teamCardFront a {
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  background: #ff5100;
  color: #fff;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0 auto;
  position: relative;
  z-index: 2;
}

.boardOfDirectorsSection {
  background: #002169;
  padding: 40px 0;
}

.boardOfDirectorsSection h1 {
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.boardOfDirectorsSection .directorsBoxWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.boardOfDirectorsSection .directorsBoxWrapper .directorsBox {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.boardOfDirectorsSection .directorsBoxWrapper .directorsBox:hover {
  background: #f1eae7;
}

.boardOfDirectorsSection .directorsBoxWrapper .directorsBox .directorsName {
  font-size: 20px;
  font-weight: 700;
  color: #002169;
  padding-bottom: 16px;
  border-bottom: solid 1px #ff5100;
  margin-bottom: 16px;
}

.boardOfDirectorsSection .directorsBoxWrapper .directorsBox .directorsPossission {
  font-size: 16px !important;
  color: #000000;
  height: 72px;
}

@media (max-width: 575.98px) {
  .boardOfDirectorsSection .directorsBoxWrapper .directorsBox .directorsPossission {
    height: auto;
  }
}

.boardOfDirectorsSection .directorsBoxWrapper .directorsBox a {
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  background: #ff5100;
  color: #fff;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0 auto;
  position: relative;
  z-index: 2;
}

.newsSection {
  padding: 40px 0;
  background: #fff;
}

.newsSection .newsWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.newsSection .newsMore {
  font-size: 24px;
  font-weight: 700;
  color: #002169;
  border: #ff5100 solid 2px;
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 24px;
  transition: all 0.3s ease;
}

.newsSection .newsMore:hover {
  background: #ff5100;
  color: #fff;
}

.newsSection .newsMore:hover svg {
  margin-left: 8px;
}

.newsSection .newsMore:hover svg path {
  fill: #fff;
}

.newsSection .newsMore svg {
  margin-left: 8px;
}

.newsSection .newsMore svg path {
  fill: #ff5100;
}

.newsSection .newsText {
  font-size: 24px;
  font-weight: 700;
  color: #002169;
}

.readNews {
  display: inline-block;
  margin-top: 32px;
}

.readNews a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 26px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid #ff5100;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.readNews a::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23ff5100'/%3E%3Cpath fill='%233b82f6' d='m18.475 16l-5.35-5.35q-.275-.275-.263-.638t.288-.637t.638-.275t.637.275l5.575 5.6q.225.225.338.488t.113.537t-.113.537t-.338.488l-5.6 5.6q-.275.275-.638.263t-.637-.288t-.275-.638t.275-.637z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.readNews a:hover {
  background: #ff5100;
  color: #ffffff;
  border-color: #ff5100;
  box-shadow: 0 4px 12px rgba(255, 81, 0, 0.4);
}

.readNews a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23002169'/%3E%3Cpath fill='%23ffffff' d='m18.475 16l-5.35-5.35q-.275-.275-.263-.638t.288-.637t.638-.275t.637.275l5.575 5.6q.225.225.338.488t.113.537t-.113.537t-.338.488l-5.6 5.6q-.275.275-.638.263t-.637-.288t-.275-.638t.275-.637z'/%3E%3C/svg%3E");
}

.pressReleaseSection {
  margin-top: 32px;
}

.pressReleaseSection .pressRelease h1 {
  color: #2b7de1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.pressReleaseSection .pressRelease .news {
  padding-bottom: 32px;
}

.pressReleaseSection .pressRelease .news .filter {
  display: flex;
  margin-top: 24px;
  gap: 26px;
  /* Year dropdown (styled card) */
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown {
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  border: solid #707070 1px;
  border-radius: 40px;
  /* keep the summary clickable and visually on top */
  /* orange caret at top-right */
  /* floating card (full rounded rectangle) - overlays content, doesn't push layout */
  /* keep the top area visually separated but seamless */
  /* small screens */
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown.is-open {
  border-color: transparent;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__details {
  width: 220px;
  margin: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 28px;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__summary {
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  display: block;
  padding: 19px 22px 0 22px;
  /* leave space at bottom for overlap with list */
  text-align: center;
  position: relative;
  z-index: 3;
  /* sit above the floating list so title and caret look inside the same card */
  outline: none;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__summary::-webkit-details-marker {
  display: none;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__title {
  display: block;
  font-weight: 800;
  color: #002169;
  font-size: 22px;
  line-height: 1;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__caret {
  position: absolute;
  right: 32px;
  top: 15px;
  color: #ff5100;
  font-size: 18px;
  transition: transform 180ms ease;
  transform-origin: center;
  z-index: 3;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown details[open] .year-dropdown__caret {
  transform: rotate(180deg);
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list {
  position: absolute;
  top: 0;
  /* align top of floating card with summary top */
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  margin: 0;
  padding: 64px 0 28px;
  /* large top padding creates the visual top area where the title sits */
  list-style: none;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #707070;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12), inset 0 2px 0 rgba(0, 0, 0, 0.02);
  z-index: 2;
  /* well above news cards */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-height: 72vh;
  overflow-y: auto;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: transparent;
  /* could add subtle gradient if needed */
  pointer-events: none;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list li {
  color: #002169;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
  white-space: nowrap;
  margin: 6px 0;
}

.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list li:hover,
.pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list li:focus {
  color: #ff5100;
  transform: translateX(6px);
  outline: none;
}

@media (max-width: 480px) {
  .pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__details {
    width: 180px;
  }

  .pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list {
    width: 180px;
    padding-top: 58px;
  }

  .pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__title {
    font-size: 20px;
  }

  .pressReleaseSection .pressRelease .news .filter .year-dropdown .year-dropdown__list li {
    font-size: 18px;
  }
}

.pressReleaseSection .pressRelease .news .filter .filterButton {
  border: #ff5100 solid 2px;
  width: 157px;
  height: 60px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #002169;
}

.pressReleaseSection .pressRelease .news .newsCardContainer {
  margin-top: 32px;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCard {
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
  padding: 24px 24px 32px 24px;
  position: relative;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 160ms ease;
  margin-bottom: 32px;
  height: 100%;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCard:hover {
  border: solid #ff5100 2px;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCard:hover .newsCardMore {
  background: #ff5100;
  box-shadow: none;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCard:hover .newsCardMore svg path {
  fill: #ffffff;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .tittle {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #002169;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  height: 32px;
}

.pressReleaseSection .pressRelease .news .newsCardContainer hr {
  border-top: 1px solid #ff5100;
  opacity: 1;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .date {
  height: 32px;
  font-size: 18px;
  font-weight: 700;
  color: #2a7de1;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-bottom: 16px;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .content {
  width: 85%;
  font-size: 18px;
  color: #000000;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCardMore {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCardMore svg path {
  transition: fill 160ms ease;
}

.pressReleaseSection .pressRelease .news .newsCardContainer .newsCardMore svg path {
  fill: #ff5100;
}

.pressReleaseSection .pressRelease hr {
  border-top: 1px solid #ff5100;
  opacity: 1;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.brackets {
  position: relative;
}

.brackets .leftTop {
  width: 12px;
  height: 1px;
  background: #f70fe4;
  position: absolute;
  left: 0;
  top: 0;
}

.brackets .rightTop {
  width: 12px;
  height: 1px;
  background: #f70fe4;
  position: absolute;
  right: 0;
  top: 0;
}

.brackets .leftBottom {
  width: 12px;
  height: 1px;
  background: #f70fe4;
  position: absolute;
  left: 0;
  bottom: 0;
}

.brackets .rightBottom {
  width: 12px;
  height: 1px;
  background: #f70fe4;
  position: absolute;
  right: 0;
  bottom: 0;
}

/*# sourceMappingURL=cgstyle.css.map */

/* ============================================
   HEADER STYLES
   ============================================ */

/* Top Bar */


.topBarLinks {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.topBarLinks a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.topBarLinks a:hover {
  opacity: 0.8;
}

.topBarLinks a.careers {
  background: #ff5100;
  padding: 6px 20px;
  border-radius: 4px;
  font-weight: 700;
}

/* Slide down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

/* Main Navigation */
.mainNav {
  background: #ffffff;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #e5e5e5;
}

.mainNav .headerContainer {
  padding: 0 44px;
  height: 78px;
  display: flex;
  align-items: center;
}

.navWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobileMenuContainer {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.logo a {
  display: block;
}

.logo img,
.logo svg {
  height: 50px;
  width: auto;
}

/* Navigation Menu */
.navMenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.navLink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  color: #002169;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.navText {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  text-align: left;
}

.navTitle {
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.navSubtitle {
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.navItem.active .navLink {
  color: #ff5100;
  font-weight: 700;
}

.navItem.active .navLink::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: -10px;
  right: 20px;
  height: 7px;
  background: #ff5100;
  border-radius: 10px 10px 0 0;
}

.navItem:hover .navLink {
  color: #ff5100;
}

/* Dropdown indicator */
.navLink svg {
  margin-left: 6px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.navItem:hover .navLink svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute !important;
  /* transform: translateX(-50%); */
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 32px 40px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  /* transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; */
  margin-top: 0;
  z-index: 1000;
  left: 0;
}

.navItem:hover .dropdown {
  opacity: 1;
  visibility: visible;
  /* transform: translateX(-50%) translateY(0); */
  display: flex;
  justify-content: center;
}

.dropdownContent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
  max-width: 600px;
}

.dropdownColumn {
  display: contents;
}

.dropdownItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #002169;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
  gap: 12px;
}

.dropdownItem:hover {
  color: #ff5100;
}

.dropdownItem span {
  flex: 1;
}

.dropdownItem svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.dropdownItem:hover svg circle {
  fill: #ff5100;
}

/* Mobile Menu Toggle */
.mobileMenuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobileMenuToggle span {
  width: 25px;
  height: 3px;
  background: #002169;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation - Transform to X when active */
.mobileMenuToggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobileMenuToggle.active span:nth-child(2) {
  opacity: 0;
}

.mobileMenuToggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Body scroll is allowed when mobile menu is open (menu is below header, not overlay) */

/* Mobile Menu Footer - Hidden by default */
.mobileMenuFooter {
  display: none;
}

/* Mobile Menu Close Button */
.mobileMenuClose {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

.mobileMenuClose svg {
  stroke: #002169;
  transition: stroke 0.3s ease;
}

.mobileMenuClose:hover svg {
  stroke: #ff5100;
}

/* Breadcrumb */
.breadcrumb {
  background: #f2f1f1;
  padding: 16px 0;
  font-size: 14px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ff5100;
}

.breadcrumb .separator {
  color: #ff5100;
  font-size: 16px;
}

.breadcrumb .current {
  color: #707070;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .navMenu {
    gap: 4px;
  }

  .navLink {
    padding: 12px 12px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .topBar {
    display: none;
  }

  .mobileMenuToggle {
    display: flex;
  }

  .mainNav {
    position: relative;
  }

  .mobileMenuContainer {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: top 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .mobileMenuContainer.active {
    top: 78px;
  }

  .navMenu {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    width: 100%;
  }

  .navMenu .mobileMenuClose {
    display: none;
  }

  .navItem {
    width: 100%;
  }

  .navLink {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
  }

  .navLink .navText {
    flex-direction: row;
    gap: 4px;
  }

  .navLink .navTitle,
  .navLink .navSubtitle {
    font-size: 14px;
  }

  .navItem.hasDropdown>.navLink svg {
    transition: transform 0.3s ease;
  }

  .navItem.hasDropdown.active>.navLink svg {
    transform: rotate(180deg);
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 8px;
    display: none;
  }

  .navItem.active .dropdown {
    display: block;
  }

  .dropdownContent {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }

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

  .dropdownItem {
    padding: 12px 0;
    font-size: 14px;
  }

  .dropdownItem span {
    font-weight: 400;
  }

  /* Mobile Menu Footer */
  .mobileMenuFooter {
    display: flex;
    position: relative;
    width: 100%;
    background: #1e73be;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
  }

  .mobileMenuFooterLinks {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobileMenuFooterLinks a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
  }

  .mobileMenuFooterLinks a:hover {
    opacity: 0.8;
  }

  .mobileGetInTouch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff5100;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
  }

  .mobileGetInTouch:hover {
    background: #e64800;
  }

  .mobileGetInTouch svg {
    flex-shrink: 0;
  }
}

@media (max-width: 575px) {
  .topBarLinks {
    gap: 12px;
    font-size: 12px;
  }

  .topBarLinks a.careers {
    padding: 4px 12px;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.mainFooter {
  background: radial-gradient(circle, #002169, #000C26);
  color: #ffffff;
  padding: 60px 0 0px;
}

.footerColumn {
  margin-bottom: 30px;
}

.footerLogo {
  margin-bottom: 30px;
}

.footerLogo img {
  height: 60px;
  width: auto;
}

.companyInfo h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.companyInfo p {
  font-size: 14px !important;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 24px;
}

.getInTouch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.getInTouch:hover {
  color: #ff5100;
}

.getInTouch svg {
  flex-shrink: 0;
}

.socialIcons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.socialIcons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff5100;
  transition: transform 0.3s ease, background 0.3s ease;
}

.socialIcons a:hover {
  transform: scale(1.1);
  background: #ff6b35;
}

.socialIcons svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.footerLinks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerLinks li {
  margin-bottom: 12px;
}

.footerLinks a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
}

.footerLinks a:hover {
  color: #ff5100;
}

.footerLinks a.footerLinkTitle {
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footerLinks a.redText {
  color: #ff5100;
}

.footerLinks a.redText:hover {
  color: #ff6b35;
}

.footerBottom {
  background: #080E1B;
  margin-top: 40px;
  padding: 20px 0;
  position: relative;
}

.footerBottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright,
.footerCode {
  font-size: 12px !important;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 991px) {
  .mainFooter {
    padding: 40px 0 20px;
  }

  .footerColumn {
    margin-bottom: 40px;
  }

  .footerBottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .mainFooter {
    padding: 30px 0 20px;
  }

  .footerLogo img {
    height: 50px;
  }

  .getInTouch {
    font-size: 16px;
  }
}

/* ============================================
   DIRECTOR MODAL STYLES
   ============================================ */

.directorModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.directorModalContent {
  background: #ffffff;
  border-radius: 20px;
  max-width: 1014px;
  width: 100%;
  position: relative;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

.directorModalClose {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff5100;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 0;
}

.directorModalClose:hover {
  transform: scale(1.1);
  background: #ff6b35;
}

.directorModalClose svg {
  stroke: #ffffff;
}

.directorModalHeader {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ff5100;
}

.directorModalHeader h2 {
  font-size: 36px !important;
  font-weight: 700;
  color: #002169;
  margin-bottom: 12px;
}

.directorModalHeader p {
  font-size: 24px;
  color: #002169;
  margin: 0;
  font-weight: 400;
}

.directorModalBody {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.directorModalBody::-webkit-scrollbar {
  width: 6px;
}

.directorModalBody::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.directorModalBody::-webkit-scrollbar-thumb {
  background: #ff5100;
  border-radius: 10px;
}

.directorModalBody::-webkit-scrollbar-thumb:hover {
  background: #ff6b35;
}

.directorModalBody p {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  .directorModalContent {
    padding: 40px 30px;
    max-width: 90%;
  }

  .directorModalHeader h2 {
    font-size: 28px;
    font-weight: 700;
  }

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

  .directorModalBody {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .directorModalContent {
    padding: 30px 20px;
  }

  .directorModalHeader h2 {
    font-size: 24px;
    font-weight: 700;
  }

  .directorModalClose {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
}

/* ============================================
   EXTERNAL LINK MODAL STYLES
   ============================================ */

.externalLinkModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.externalLinkModalContent {
  background: #ffffff;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  padding: 60px 80px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

.externalLinkModalClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff5100;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}

.externalLinkModalClose:hover {
  transform: scale(1.1);
  background: #ff6b35;
}

.externalLinkModalClose svg {
  stroke: #ffffff;
}

.externalLinkModalBody {
  text-align: center;
}

.externalLinkModalBody p {
  font-size: 24px;
  line-height: 1.6;
  color: #002169;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.externalLinkModalBody hr {
  border: none;
  border-top: 2px solid #ff5100;
  margin: 30px 0;
  opacity: 1;
}

.proceedButton {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  color: #002169;
  border: 2px solid #ff5100;
  border-radius: 50px;
  padding: 0 26px;
  height: 60px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.proceedButton:hover {
  background: #ff5100;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 81, 0, 0.3);
}

.proceedButton svg {
  width: 30px;
  height: 30px;
  background: #ff5100;
  border-radius: 50%;
  padding: 6px;
  transition: all 0.3s ease;
}

.proceedButton:hover svg {
  background: #002169;
}

.proceedButton svg path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.proceedButton:hover svg path {
  fill: #ff5100;
}

@media (max-width: 768px) {
  .externalLinkModalContent {
    padding: 40px 30px;
    max-width: 90%;
  }

  .externalLinkModalBody p {
    font-size: 20px;
  }

  .proceedButton {
    font-size: 20px;
    height: 56px;
    padding: 0 28px;
  }

  .proceedButton svg {
    width: 28px;
    height: 28px;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .externalLinkModalContent {
    padding: 30px 20px;
  }

  .externalLinkModalBody p {
    font-size: 18px;
  }

  .proceedButton {
    font-size: 18px;
    height: 50px;
    padding: 0 24px;
  }

  .proceedButton svg {
    width: 24px;
    height: 24px;
    padding: 4px;
  }

  .externalLinkModalClose {
    width: 28px;
    height: 28px;
    top: 15px;
    right: 15px;
  }
}

/* ============================================
   STICKY GET IN TOUCH BUTTON
   ============================================ */

.stickyGetInTouchContainer {
  position: fixed;
  right: 0;
  top: 200px;
  width: 42px;
  height: 60px;
  z-index: 1000;
}

.stickyGetInTouchContainer:hover .stickyGetInTouch {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: 20px;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
}

.stickyGetInTouch {
  position: fixed;
  right: 0;
  top: 230px;
  transform: translateY(-50%);
  background: #ff5100;
  width: 42px;
  height: 60px;
  border-radius: 60px 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
}

/* .stickyGetInTouch:hover {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: 20px;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
} */

.stickyButtonText {
  position: absolute;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  top: 20px;
}

.stickyGetInTouchContainer:hover .stickyButtonText {
  opacity: 1;
  transform: scale(1);
}

.stickyButtonIcon {
  width: 30px;
  height: 30px;
  background: #002169;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 10px;
}

.stickyGetInTouchContainer:hover .stickyButtonIcon {
  transform: translateY(28px) translateX(38px);
}

.stickyButtonIcon svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   STICKY GET IN TOUCH BUTTON ^
   ============================================ */

.stickyButtonIcon svg path {
  fill: #ff5100;
}

.leadershipDetailsSection {
  padding: 45px 0;
  background: #ffffff;
}

.leadershipDetailsContent {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.leadershipDetailsLeft {
  flex: 1;
  max-width: 500px;
}

.leadershipDetailsLeft h1 {
  font-size: 48px;
  font-weight: 700;
  color: #002169;
  margin-bottom: 16px;
  line-height: 1.2;
}

.leadershipDetailsLeft .position {
  font-size: 24px;
  font-weight: 400;
  color: #002169;
  margin-bottom: 24px;
}

.leadershipSocialIcons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.leadershipSocialIcons a {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff5100;
  transition: transform 0.3s ease, background 0.3s ease;
}

.leadershipSocialIcons a:hover {
  transform: scale(1.1);
  background: #ff6b35;
}

.leadershipSocialIcons a svg {
  fill: #ffffff !important;
}

.leadershipBio {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.leadershipDetailsRight {
  flex: 1;
  max-width: 550px;
}

.leadershipImage {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #e5e5e5;
}

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

.leadershipDetailsLeft .leadershipImage {
  display: none;
}

.leadershipDetailsRight .leadershipImage {
  display: block;
}

@media (max-width: 991px) {
  .leadershipDetailsContent {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .leadershipDetailsLeft,
  .leadershipDetailsRight {
    max-width: 100%;
  }

  .leadershipDetailsLeft h1 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .leadershipDetailsLeft .position {
    font-size: 20px;
  }

  .leadershipDetailsLeft .leadershipImage {
    display: block;
    margin-bottom: 35px;
  }

  .leadershipDetailsRight .leadershipImage {
    display: none;
  }

  .paginationWrapper {
    justify-content: space-between !important;
  }
}

@media (max-width: 575px) {
  .leadershipDetailsSection {
    padding: 0 0 40px 0;
  }

  .leadershipDetailsLeft h1 {
    font-size: 32px;
  }

  .leadershipDetailsLeft .position {
    font-size: 18px;
  }

  .leadershipBio {
    font-size: 16px;
  }
}

/* Leadership Pagination */
.leadershipPagination {
  background: #002169;
  padding: 24px 0;
}

.paginationWrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}

.paginationBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.paginationBtn:hover {
  opacity: 0.8;
  color: #ffffff;
}

.paginationBtn svg {
  flex-shrink: 0;
}

.paginationBtn svg path {
  stroke: #002169;
}

.paginationText {
  display: flex;
  align-items: center;
  gap: 4px;
}

.paginationLabel {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.paginationName {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.paginationCounter {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.paginationCounter .currentPage {
  font-size: 24px;
}

/* Responsive Pagination */
@media (max-width: 768px) {
  .paginationWrapper {
    gap: 16px;
  }

  /* .paginationBtn {
    width: 100%;
    justify-content: center;
  } */

  /* .prevBtn {
    order: 2;
  }

  .paginationCounter {
    order: 1;
  } */

  /* .nextBtn {
    order: 3;
  } */

  .paginationText {
    text-align: center;
  }

  .paginationLabel {
    font-size: 16px;
    position: relative;
    display: inline-block;
  }

  .paginationLabel::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 0.5em;
    background: #002169;
  }

  .paginationName {
    display: none;
  }

  .paginationCounter {
    font-size: 18px;
  }

  .paginationCounter .currentPage {
    font-size: 20px;
  }

}

.custom-container {
  max-width: 1010px;
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 24px !important;
  }
}

@media (max-width: 1199.98px) {
  .topBar {
    padding: 24px;
  }

  .mainNav .headerContainer {
    padding: 0 24px;
  }

  .sliderArrow.sliderArrowPrev {
    right: 0 !important;
  }
}

@media (max-width: 1399.98px) {
  .sliderArrow.sliderArrowPrev {
    right: -70px !important;
  }
}


.font-weight-normal {
  font-weight: normal !important;
}

.latestNewsSection h1 {
  color: #2B7DE1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}


/* -------- Home Section -------- */

.latestNewsSection .newsCardContainer {
  margin-top: 32px;
}

.latestNewsSection .newsCardContainer .newsCard {
  width: 327px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
  padding: 24px 24px 32px 24px;
  position: relative;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 160ms ease;
  margin-bottom: 32px;
  height: 100%;
}

.latestNewsSection .newsCardContainer .newsCard:hover {
  border: solid #ff5100 2px;
}

.latestNewsSection .newsCardContainer .newsCard:hover .newsCardMore {
  background: #ff5100;
  box-shadow: none;
}

.latestNewsSection .newsCardContainer .newsCard:hover .newsCardMore svg path {
  fill: #ffffff;
}

.latestNewsSection .newsCardContainer .tittle {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #002169;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  height: 32px;
}

.latestNewsSection .newsCardContainer hr {
  border-top: 1px solid #ff5100;
  opacity: 1;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.latestNewsSection .newsCardContainer .date {
  height: 32px;
  font-size: 18px;
  font-weight: 700;
  color: #2a7de1;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-bottom: 16px;
}

.latestNewsSection .newsCardContainer .content {
  width: 85%;
  font-size: 18px;
  color: #000000;
}

.latestNewsSection .newsCardContainer .newsCardMore {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.latestNewsSection .newsCardContainer .newsCardMore svg path {
  transition: fill 160ms ease;
}

.latestNewsSection .newsCardContainer .newsCardMore svg path {
  fill: #ff5100;
}

/* News Slider Styles */
.latestNewsSection {
  padding: 60px 0;
  background: linear-gradient(to bottom, #ffffff 0 52.5%, #2A7DE1 50% 100%);
  position: relative;
  overflow: hidden;
}

.latestNewsSection h1 {
  color: #2A7DE1;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

.newsSliderWrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 92px;
}

.latestNewsSection .newsCardContainer {
  overflow: hidden;
  flex: 1;
  margin-top: 0;
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50%);
}

.newsSlider {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease-in-out;
}

.newsSlider .newsCard {
  flex: 0 0 327px;
  min-width: 327px;
  max-width: 327px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.16);
  padding: 24px 24px 32px 24px;
  position: relative;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 160ms ease;
  margin-bottom: 0;
  height: auto;
  min-height: 280px;
}

.newsSlider .newsCard:hover {
  border: solid #ff5100 2px;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
}

.sliderArrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff5100;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(255, 81, 0, 0.3);
  z-index: 10;
}

.sliderArrow.sliderArrowPrev {
  position: absolute;
  right: -120px;
}

/* Hide right arrow by default */
.sliderArrow#nextSlide {
  display: none;
}

/* Show right arrow when active */
.sliderArrow#nextSlide.show {
  display: flex;
}

.sliderArrow:hover:not(:disabled) {
  background: #ff6b35;
  transform: scale(1.1);
  box-shadow: 0px 6px 16px rgba(255, 81, 0, 0.4);
}

.sliderArrow:disabled {
  background: #d3d3d3;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
  pointer-events: none;
}

.sliderArrow svg {
  width: 28px;
  height: 28px;
  display: block;
}

.sliderArrow svg path {
  fill: #ffffff;
}

.sliderArrow:disabled svg path {
  stroke: #999999;
}

.latestNewsSection .readNews {}

/* Responsive Slider Styles */
@media (max-width: 1200px) {
  .newsSlider .newsCard {
    flex: 0 0 327px;
    min-width: 327px;
    max-width: 327px;
  }
}

@media (max-width: 768px) {
  .latestNewsSection {
    padding: 40px 0;
  }

  .latestNewsSection h1 {
    font-size: 32px;
  }

  .newsSliderWrapper {
    gap: 0;
    margin-top: 32px;
  }

  /* Hide slider arrows on small devices */
  .sliderArrow {
    display: none !important;
  }

  /* Remove overflow and slider behavior */
  .latestNewsSection .newsCardContainer {
    margin-right: 0;
    padding-right: 0;
  }

  .newsSlider {
    flex-direction: column;
    gap: 24px;
    transform: none !important;
  }

  .newsSlider .newsCard {
    flex: 1 1 auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .newsSlider {
    gap: 20px;
  }
}

/* ----------VIDEO LIBRARY----------- */

.videoLibrarySection {
  padding: 60px 0;
}

.videoLibrarySection h1 {
  color: #2B7DE1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.videoLibrarySection .videoLibraryContent {
  padding-right: 58px;
  margin-top: 16px;
  margin-bottom: 26px;
}

.videoLibrarySection .videoLibraryContent h2 {
  color: #002169;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 24px;
  font-weight: 700;
}

.videoLibrarySection .videoLibraryContent h2 span {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.videoLibrarySection .videoLibraryContent .videoWrapper {
  display: flex;
  gap: 30px;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer {
  width: 326px;
  display: flex;
  flex-direction: column;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .video {
  height: 183px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .videoPlay {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff5100;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .videoPlay:hover {
  background: #002169;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .videoTittle {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
}

.videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer .videoSubTittle {
  font-size: 18px;
  font-weight: 700;
  color: #2A7DE1;
  margin-top: 12px;
}

/* Swiping effect for medium devices (tablets) */
@media (max-width: 991px) {
  .videoLibrarySection .container {
    padding-right: 0;
    max-width: 100%;
  }

  .videoLibrarySection .videoLibraryContent {
    padding-right: 0;
  }

  .videoLibrarySection .videoLibraryContent .videoWrapper {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0 20px 0;
    margin: 0;
    padding-left: 15px;
    padding-right: 0;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
  }

  .videoLibrarySection .videoLibraryContent .videoWrapper::-webkit-scrollbar {
    display: none;
  }

  .videoLibrarySection .videoLibraryContent .videoWrapper:active {
    cursor: grabbing;
  }

  .videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer {
    flex: 0 0 auto;
    width: 85%;
    max-width: 287px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: transform 0.2s ease;
  }

  .videoLibrarySection .videoLibraryContent .videoWrapper .videoContainer:last-child {
    margin-right: 15px;
  }
}

@media (max-width: 575px) {
  .videoLibrarySection .videoLibraryContent h2 {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    font-size: 24px;
    font-weight: 700;
  }
}

.videoViewSection {
  padding: 60px 0;
}

.videoViewSection .videoViewContent {
  padding-right: 58px;
}

.videoViewSection .videoViewContent .video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
}

/* Thumbnail overlay */
.videoViewSection .videoViewContent .video .video-thumbnail {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.videoViewSection .videoViewContent .video .video-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* Custom play button */
.videoViewSection .videoViewContent .video .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f26522;
  /* Orange */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
  .videoViewSection .videoViewContent .video {
    border-radius: 20px;
  }

  .videoViewSection .videoViewContent .video .video-thumbnail img {
    border-radius: 20px;
  }

  .videoViewSection .videoViewContent .video .video-thumbnail .play-button {
    width: 50px;
    height: 50px;
  }

  .videoViewSection .videoViewContent .video .video-thumbnail .play-button svg {
    width: 16px;
    height: 16px;
  }

  .videoViewSection .videoViewContent .videoInfo .subTitle {
    margin-top: 15px !important;
  }

  .videoViewSection .videoViewContent .videoInfo .videoDescription {
    margin-top: 15px !important;
  }
}

/* Vimeo wrapper hidden initially - controlled by inline style and JavaScript */
.videoViewSection .videoViewContent .videoInfo {
  margin-top: 30px;
}

.videoViewSection .videoViewContent .videoInfo h2 {
  color: #002169;
  font-size: 24px;
  font-weight: 700;
}

.videoViewSection .videoViewContent .videoInfo .subTitle {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin-top: 20px;
}

.videoViewSection .videoViewContent .videoInfo .subTitle span {
  font-weight: 700;
  color: #2A7DE1;
}

.videoViewSection .videoViewContent .videoInfo .videoDescription {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  margin-top: 30px;
}

.videoViewSection .videoViewContent .videoInfo .videoDescription span {
  font-weight: 700;
}

.accessHereSection .accessHere {
  padding-top: 50px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: solid 2px #FF5100;
}

.accessHereSection.leadershipLink .accessHere {
  border: none;
}

.accessHereSection .accessHere .accessHereText {
  font-size: 24px;
  font-weight: 700;
  color: #002169;
}

.accessHereSection .accessHere .accessHereLink {
  font-size: 24px;
  font-weight: 700;
  color: #002169;
  height: 60px;
  border-radius: 30px;
  border: solid 2px #FF5100;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.accessHereSection .accessHere .accessHereLink .link-text-hover {
  display: none;
}

.accessHereSection .accessHere .accessHereLink:hover {
  background: #FF5100;
  color: #ffffff;
}

.accessHereSection .accessHere .accessHereLink:hover .link-text {
  display: none;
}

.accessHereSection .accessHere .accessHereLink:hover .link-text-hover {
  display: inline;
}

.accessHereSection .accessHere .accessHereLink:hover svg circle {
  fill: #002169;
}

.accessHereSection .accessHere .accessHereLink svg {
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .accessHereSection .accessHere {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ----------------congress Hub---------------- */
.clinicalPipelineSection {width: 100%;}

.clinicalPipelineSection .filterBox {
  background: #ffffff;
  padding: 0px 0 0 0;
}

@media screen and (max-width:768px) {
  .clinicalPipelineSection .filterBox {
    padding: 0;
  }
}

.clinicalPipelineSection .filterBox h1 {
  color: #2B7DE1;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .clinicalPipelineSection .filterBox h1 {
    font-size: 28px;
  }
}

.clinicalPipelineSection .filterBox .filterWrapper .filter {
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  border-radius: 200px;
  display: flex;
  margin-top: 30px;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul {
  display: flex;
  margin-bottom: 0;
  width: 100%;
  justify-content: space-around;
  padding: 0;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul li {
  font-size: 24px;
  font-weight: 700;
  color: #FF5100;
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  border-right: solid 2px #F2F1F1;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul li:first-child {
  border-radius: 200px 0 0 200px;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul li:last-child {
  border-radius: 0 200px 200px 0;
  border-right: none;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul li:hover {
  background: #FF5100;
  color: #ffffff;
}

.clinicalPipelineSection .filterBox .filterWrapper .filter ul li.active {
  background: #FF5100;
  color: #ffffff;
}

.clinicalPipelineSection .filterBox .filterWrapper .searchWrapper {
  width: 100%;
  display: flex;
  gap: 26px;
  margin-top: 50px;
}

.clinicalPipelineSection .filterBox .filterWrapper .searchWrapper input {
  flex: 1;
  height: 60px;
  border: solid 1px #707070;
  border-radius: 200px;
  padding: 0 34px;
}

.clinicalPipelineSection .filterBox .filterWrapper .searchWrapper button {
  width: 157px;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  border: solid 1px #FF5100;
  color: #002169;
  font-size: 24px;
  font-weight: 700;
}

.clinicalPipelineSection .filterBox .filterWrapper .searchWrapper button:hover {
  background: #FF5100;
  color: #ffffff;
}

.clinicalPipelineSection .accessHereSection .accessHere {
  border: none;
}

@media (max-width: 991.98px) {
  .clinicalPipelineSection .filterBox .filterWrapper .filter ul {
    flex-direction: column;
  }

  .clinicalPipelineSection .filterBox .filterWrapper .filter ul li {
    height: 68px;
    border-right: none;
    border-bottom: solid 2px #F2F1F1;
  }

  .clinicalPipelineSection .filterBox .filterWrapper .filter ul li:first-child {
    border-radius: 20px 20px 0 0;
  }

  .clinicalPipelineSection .filterBox .filterWrapper .filter ul li:last-child {
    border-radius: 0 0 20px 20px;
    border-bottom: none;
  }

  .clinicalPipelineSection .filterBox .filterWrapper .filter {
    border-radius: 20px;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .clinicalPipelineSection .filterBox .filterWrapper .searchWrapper {
    flex-direction: column;
    gap: 15px;
  }

  .clinicalPipelineSection .filterBox .filterWrapper .searchWrapper input {
    height: 79px;
    padding: 29px;
  }
}

.recentPostTable {
  margin-top: 30px;
}

.recentPostTable .table-container {
  border: 2px solid #002a6e;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.recentPostTable table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f2f2f4;
}

.recentPostTable th,
td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 2px solid #fff;
  color: #002a6e;
}

.recentPostTable th {
  font-weight: 700;
  font-size: 18px;
}

.recentPostTable td {
  font-size: 18px;
  border-bottom: 2px solid #fff;
}

.recentPostTable td:first-child {
  border-right: 2px solid #fff;
}

.recentPostTable tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

.recentPostTable tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

.recentPostTable .header-cell {
  font-weight: 700;
  font-size: 18px;
  color: #002a6e;
  border-right: 2px solid #fff;
}

.recentPostTable tr:last-child td {
  border-bottom: none;
}

.recentPostTable .table-container table .small {
  display: none;
}

.recentPostTable .table-container table tbody.small {
  display: none;
}

@media (max-width: 767.98px) {
  .recentPostTable .table-container table .large {
    display: none;
  }

  .recentPostTable .table-container table tbody.large {
    display: none;
  }

  .recentPostTable .table-container table .small {
    display: table-row;
  }

  .recentPostTable .table-container table tbody.small {
    display: table-row-group;
  }

  .recentPostTable .table-container table tbody.small tr.small {
    display: table-row;
  }

  .recentPostTable .table-container table tbody.small tr.small th {
    display: table-cell;
    width: auto;
  }

  .recentPostTable .table-container table tbody.small tr.small .header-cell {
    width: 35%;
  }

  .recentPostTable .table-container table tbody.small tr.small th:not(.header-cell) {
    width: 32.5%;
    font-size: 16px;
    font-weight: 700;
  }

  .recentPostTable .table-container table tbody.small tr td:first-child {
    width: 35%;
    font-size: 16px;
    font-weight: 700;
  }

  .recentPostTable .table-container table tbody.small tr td:not(:first-child) {
    width: 32.5%;
  }

  .recentPostTable .table-container {
    padding: 5px;
  }

  .recentPostTable th,
  td {
    padding: 8px 16px;
  }
}


.legend {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 30px;
  font-size: 14px;
  margin-top: 0px;
}

@media screen and (max-width:768px) {
  .legend {
    justify-content: flex-start;
  }
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-box {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.legend-box.mono {
  background: #2B7DE9;
}

.legend-box.combo {
  background: #8B3A9C;
}

.header {
  display: grid;
  grid-template-columns: 490px repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}


.phase-label-heade {
  text-align: start !important;
  padding-left: 0 !important;
}

.trial-item {
  border-top: 2px solid #707070;
  padding-bottom: 0px;
}

.trial-item:last-child {
  border-bottom: 0px solid #707070;
}

.trial-header {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width:768px) {
  .trial-header {
    margin-bottom: 40px;
  }
}

.trial-header.purple-bar .timeline-wrapper .timeline-container .clinical-progress-bar {
  background-color: #8A1A9B;
}

.trial-header.purple-bar .milestone .milestone-text {
  color: #8A1A9B;
}

.trial-header.purple-bar .trial-info .top-milestone .milestone-text {
  color: #8A1A9B;
}

@media screen and (max-width:991px) {
  .trial-header {
    grid-template-columns: 350px 1fr;
  }

  .header {
    grid-template-columns: 350px repeat(3, 1fr);
  }
}

.subHeade-mobile-view {
  font-size: 18px !important;
  font-weight: bold !important;
  color: #002169 !important;
  display: none;
  margin-bottom: 10px !important;
}

@media screen and (max-width:768px) {
  .trial-header {
    display: flex;
    flex-direction: column;
  }

  .phase-markers .phase-marker {
    color: #002169;
  }

  .phase-label {
    display: none;
  }

  .subHeade-mobile-view {
    display: flex;
  }
}

.trial-info {
  padding-top: 20px;
}

@media screen and (max-width:768px) {
  .trial-info {
    padding-top: 40px;
  }
}

.trial-info h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.trial-info .subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 4px;
}

.trial-info .status {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.timeline-wrapper {
  background-color: #70707026;
  height: 105px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
}

@media screen and (max-width:768px) {
  .timeline-wrapper {
    padding-top: 20px;
    background-color: #F2F1F1BF;
  }
}

@media screen and (max-width:576px) {
  .timeline-wrapper {
    margin: 0 -25px;
  }
}

.timeline-container {
  position: relative;
  height: 50px;
  width: 100%;
  background: transparent;
  background: #E8E8E8;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}

@media screen and (max-width:768px) {
  .timeline-container {
    background: #E8E8E8;
    border-radius: 0;
    margin: 0 30px;
  }
}

.clinical-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background: #2B7DE9;
  width: 0;
  /* start hidden */
  transition: width 2s ease-out;
}

@keyframes fillProgress {
  from {
    width: 0;
  }

  to {
    width: var(--target-width);
  }
}

.phase-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
  z-index: 1;
}

.phase-marker {
  border-right: 2px dashed #ffffff;
  color: #eaeaea;
  text-align: center;
  padding-top: 5px;
  font-size: 14px;
  font-weight: 700;
}

.phase-marker:last-child {
  border-right: none;
}

.milestone {
  margin-top: 10px;
}

.milestone-label {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.milestone-text {
  font-size: 18px;
  color: #2B7DE9;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.milestone-text.normal {
  color: #1a1a1a !important;
  font-size: 18px;
  font-weight: 400;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #FF6B35;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.icon.external::before {
  content: "↗";
}

.icon.clock::before {
  content: "⟳";
}


.visit-link {
  font-size: 24px;
  display: block;
  margin-bottom: 60px;
}

.visit-link a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
}

.visit-link a:hover {
  text-decoration: underline;
}

.link-icon {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-left: 8px;
  font-size: 14px;
  vertical-align: middle;
}

.footnote {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footnote sup {
  font-size: 12px;
  top: -3px;
}

.subHeade {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #002169 !important;
}

.phase-label {
  text-align: center;
  padding: 0 10px;
  font-size: 18px !important;
}

.main-content {
  margin-top: 34px;
  font-size: 18px;
  line-height: 1.8;
}

.divider {
  border: none;
  border-top: 2px solid #ff6b35;
  opacity: 1 !important;
  margin: 0;
}

.highlight {
  font-weight: 500;
}

.risk-bg-control {
  padding: 50px 0;
  position: relative;
}

@media screen and (max-width:768px) {
  .risk-bg-control {
    padding: 15px 0;
  }
}

.risk-bg-control::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background-color: #2A7DE1;
}

.risk-wrapper {
  padding: 20px;
  border: 2px solid #002169;
  border-radius: 20px;
  z-index: 1;
  position: relative;
  background-color: white;
}

.risk-container {
  display: flex;
  gap: 20px;
}

.risk-section {
  flex: 1;
  background: #F2F1F1;
  border-radius: 12px;
  position: relative;
}

.risk-section-inner {
  padding: 15px;
}

.risk-section-inner.intermediate-risk {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  position: relative;
}

.intermediate-risk-content {
  text-align: center;
  margin: 120px 0;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  z-index: 1;
  background-color: #f2f1f1;
  padding: 20px 0;
}

.risk-section-inner.intermediate-risk .long-arrow {
  position: absolute;
  width: 1px;
  height: calc(100% - 150px);
  background-color: #ff5100;
  left: 50%;
}

@media screen and (max-width:768px) {
  .intermediate-risk-content {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .risk-section-inner.intermediate-risk .long-arrow {
    height: calc(100% - 130px);
  }
}

.risk-section-inner.intermediate-risk .long-arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #ff6600;
  transform: rotate(60deg);
  left: -7px;
  bottom: 0;
}

.slide-arrow {
  position: absolute;
  width: 1px;
  height: 40px;
  top: 55px;
  background-color: #ff5100;

}

.slide-arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #ff6600;
  transform: rotate(60deg);
  left: -7px;
  bottom: 0;
}

.slide-arrow.left {
  left: 35px;
  rotate: 45deg;
}

.slide-arrow.right {
  right: 35px;
  rotate: -45deg;
}

.risk-header {
  background: #003d7a;
  color: white;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.intermediate-risk {
  display: flex;
  flex-direction: column;
}

.high-risk {
  flex: 0 0 70%;
}

.treatment-box {
  background: white;
  border: 2px solid #2874d6;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
}

.treatment-box.light-blue-box {
  border: 2px solid #2874d6;
}

.treatment-box.light-blue-box .treatment-title {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
}

.treatment-box.light-blue-box .treatment-subtitle {
  color: #000000;
  font-size: 14px;
}

.treatment-title {
  color: #003d7a;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.treatment-subtitle {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

.info-section {
  padding: 42px 0;
}

@media screen and (max-width:768px) {
  .info-section {
    padding: 15px 0;
  }

}

.arrow {
  text-align: center;
  color: #ff6b35;
  font-size: 30px;
  margin: 10px 0;
  font-weight: bold;
}

.high-risk-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.naive-section {
  flex: 1;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width:768px) {
  .naive-section {
    flex-direction: column;
    gap: 15px;
  }

  .bcg-naive-wrapper {
    padding-bottom: 60px;
  }

  .slide-arrow.left {
    left: 35px;
    rotate: 0deg;
  }

  .slide-arrow.right {
    right: 35px;
    rotate: 0deg;
    height: 280px;
  }

  .mobile-pt60 {
    padding-top: 60px;
  }
}

.unresponsive-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.unresponsive-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bcg-naive-wrapper {
  position: relative;
}

.bcg-naive {
  background: white;
  border: 2px solid #003d7a;
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: #003d7a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  min-width: 200px;
}

.split-arrow {
  display: flex;
  justify-content: space-around;
  margin: 10px 0;
}

.split-arrow span {
  color: #ff6b35;
  font-size: 30px;
  font-weight: bold;
}

.bcg-exposed {
  border: 2px solid #003d7a;
  border-radius: 40px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: #003d7a;
  margin-bottom: 15px;
  width: fit-content;
}

.bcg-unresponsive {
  background: white;
  border: 2px solid #2874d6;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: #003d7a;
  margin-bottom: 15px;
}

.study-box {
  background: white;
  border: 2px solid #2874d6;
  border-radius: 10px;
  padding: 12px;
}

.study-title {
  color: #003d7a;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 4px;
}

.study-subtitle {
  color: #666;
  font-size: 12px;
}

.core-highlight {
  background: #e6f3ff;
  border-color: #2874d6;
}

@media (max-width: 768px) {
  .risk-container {
    flex-direction: column;
  }

  .high-risk-content {
    flex-direction: column;
  }

  h1 {
    font-size: 20px;
  }

  .bcg-naive {
    min-width: 100%;
  }
}

.text-highlight {
  color: #002169;
  font-weight: 700;
  font-size: 16px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.orange-a-tag {
  color: #ff6600 !important;
  text-decoration: none;
  font-weight: 700;
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline;
}


.email-section {
  margin-top: 40px;
  padding-top: 30px;
}

.email-section p,
.email-section a {
  font-size: 24px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-wrap: wrap;
  flex-wrap: wrap;
  word-break: break-all;
}

.button-icon {
    display: flex;
    width: 25px;
    height: 25px;
    background-color: #ff6600;
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    flex-shrink: 0;
    padding: 0;
}
 
@media screen and (max-width:768px) {
  .button-icon {
    width: 30px;
    height: 25px;
  }
}

.button-icon.arrow {
  margin: 0;
}

.button-icon.download {
  margin: 0;
}

.button-icon.arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  mask-image: url(../images/top-right-arrow.svg);
  background-color: white;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
}

.button-icon.download::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  mask-image: url(../images/download.svg);
  background-color: white;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0px 30px;
  }

  h1 {
    font-size: 26px;
  }
}

.gray-bg-section {
  background: #F2F1F1;
  padding: 50px 0;
}

.sub-main-heading {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #002169 !important;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.column .title {
  width: 100%;
}

.column.fit-width {
  width: 210px;
  background-color: #f2f1f1;
}

.column.flex-width {
  flex: 1;
}

.title {
  border: 2px solid #0a3c91;
  border-radius: 25px;
  padding: 5px 20px;
  color: #0a3c91;
  font-weight: 600;
  text-align: center;
}

.box {
  border: 2px solid #0a3c91;
  border-radius: 20px;
  background-color: white;
  padding: 10px 25px;
  text-align: center;
  width: 100%;
}

.box.light-blue-box {
  border: 2px solid #2874d6;
}

.box.light-blue-box h3,
.box.light-blue-box p {
  color: #000;
}


.box h3 {
  color: #0a3c91;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.naive-section-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media screen and (max-width:768px) {
  .naive-section-content {
    flex-direction: column;
    z-index: 1;
  }

  .column.fit-width {
    width: 100%;
  }
}

.ul-style {
  margin-left: 0;
  padding-left: 17px;
}

.ul-style li {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
  list-style: disc;
}

.mobile-visible {
  display: none;
  flex-direction: column;
}

.desktop-visible {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width:768px) {
  .mobile-visible {
    display: flex;
  }

  .desktop-visible {
    display: none;
  }
}


.textChangeHover .hover-text {
  display: none;
  text-wrap: wrap;
  flex-wrap: wrap;
}

.textChangeHover .text-link {
  display: flex;
  text-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  padding-bottom: 0;
}

.textChangeHover:hover .hover-text {
  display: flex;
}

.textChangeHover:hover .text-link {
  display: none;
}
@media screen and (max-width:768px) {
  .mobile-font18 p a {
    font-size: 18px !important;
  }
  .mobile-font18 p {
    font-size: 18px !important;
  }
  .email-section {
    margin-top: 0;
  }
}
.clinical-progress-bar-no-border-radius {
    border-radius: 0 !important;
}