@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.cage-nav {
  height: 50px;
  width: 50px;
  padding: 14px 10px;
  position: relative;
}
.cage-nav .navTrigger {
  cursor: pointer;
  width: 30px;
  height: 21px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cage-nav .navTrigger i {
  background-color: #fff;
  border-radius: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.cage-nav .navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  width: 20px;
}
.cage-nav .navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  width: 25px;
}
.cage-nav .navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.cage-nav .navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
  width: 100%;
}
.cage-nav .navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
  width: 100%;
}
.cage-nav .navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg);
  }
}
@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg);
  }
}
@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg);
  }
}
@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg);
  }
}
@media (max-width: 991.98px) {
  header .container-header {
    padding: 0 15px;
  }
  header .container-header .col-logo .logo {
    padding-left: 0;
  }
  header .container-header .col-logo .logo img {
    height: 45px;
  }
  header .container-header .col-menu {
    position: fixed !important;
    top: 80px !important;
    right: -100% !important;
    left: auto !important;
    width: 100% !important;
    height: calc(100vh - 80px) !important;
    background: #1C236B !important;
    padding: 30px 20px !important;
    -webkit-transition: right 0.4s ease, opacity 0.4s ease !important;
    transition: right 0.4s ease, opacity 0.4s ease !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    z-index: 9999 !important;
  }
  header .container-header .col-menu.mobile-active {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  header .container-header .col-menu .menu {
    width: 100%;
    height: 100%;
  }
  header .container-header .col-menu .menu ul {
    display: block !important;
    padding: 0;
    margin: 0;
  }
  header .container-header .col-menu .menu ul li {
    float: none !important;
    display: block !important;
    width: 100%;
    margin-bottom: 10px;
  }
  header .container-header .col-menu .menu ul li a {
    display: block !important;
    font-size: 16px;
    padding: 12px 15px;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  header .container-header .col-menu .menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  header .container-header .col-menu .menu ul li.active a {
    color: #EF6C00 !important;
    font-weight: 700;
  }
  header .container-header .col-menu .menu ul li.active:before {
    display: none !important;
  }
}
body {
  font-family: "Inter", sans-serif;
  cursor: context-menu;
  overflow-x: hidden;
  color: #333;
}
body main {
  overflow: hidden;
  min-height: 100vh;
  padding-top: 80px;
}
body.overflow-y-hidden {
  overflow-y: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none !important;
}
a:hover, a:visited, a:link, a:active {
  text-decoration: none;
  color: inherit;
}

.btn {
  outline: none !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-orange {
  background-color: #EF6C00;
  color: #fff;
  border: none;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.btn-orange:hover {
  background-color: rgb(198.2, 89.5631799163, 0);
  color: #fff;
}

.btn-navy {
  background-color: #1C236B;
  color: #fff;
  border: none;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.btn-navy:hover {
  background-color: #151A52;
  color: #fff;
}

.text-orange {
  color: #EF6C00 !important;
}

.text-navy {
  color: #1C236B !important;
}

.min-vh-50 {
  min-height: 480px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1C236B;
  text-transform: uppercase;
  display: inline-block;
}
.section-label.border-left-line {
  padding-left: 60px;
  position: relative;
}
.section-label.border-left-line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background-color: currentColor;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1C236B;
}
header.page {
  position: relative;
  background: #fff;
}
header .container-header .col-logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}
header .container-header .col-logo .logo img {
  height: 50px;
  width: auto;
}
header .container-header .col-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
header .container-header .col-menu .menu ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 200;
}
header .container-header .col-menu .menu ul li {
  padding: 0;
  float: left;
  position: relative;
}
header .container-header .col-menu .menu ul li a {
  padding: 8px 15px;
  display: block;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  color: #fff;
}
header .container-header .col-menu .menu ul li.active a {
  color: #fff;
  font-weight: 400;
}
header .container-header .col-menu .menu ul li.active:before {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 15px;
  width: calc(100% - 30px);
  height: 2px;
  background: #EF6C00;
}
header .container-header .col-menu .menu ul li:hover a {
  color: rgba(255, 255, 255, 0.8);
}
header .container-header .col-lang .lang-selector {
  color: #fff;
  font-size: 14px;
}
header .container-header .col-lang .lang-selector .divider {
  margin-right: 5px;
  opacity: 0.6;
}
header .container-header .col-lang .lang-selector .lang-flag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
header .container-header .col-lang .lang-selector .lang-flag .flag-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
header .container-header .col-lang .lang-selector .lang-flag.active, header .container-header .col-lang .lang-selector .lang-flag:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border-color: #fff;
}

.side-main-image {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-section {
  position: relative;
  width: 100%;
}
.hero-section .hero-swiper {
  width: 100%;
  height: calc(100dvh - 80px);
  position: relative;
}
.hero-section .hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero-section .hero-swiper .swiper-pagination {
  bottom: 20px;
}
.hero-section .hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #EF6C00;
  width: 24px;
  border-radius: 4px;
}
.hero-section .hero-swiper .swiper-button-next, .hero-section .hero-swiper .swiper-button-prev {
  color: #fff;
  width: 48px;
  height: 48px;
  background: rgba(21, 26, 82, 0.6);
  border-radius: 50%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.hero-section .hero-swiper .swiper-button-next:after, .hero-section .hero-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
.hero-section .hero-swiper .swiper-button-next:hover, .hero-section .hero-swiper .swiper-button-prev:hover {
  background: #EF6C00;
  color: #fff;
}

.section-feature-bar {
  background-color: #EF6C00;
}
.section-feature-bar .feature-card {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.section-feature-bar .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.18) !important;
}
.section-feature-bar .feature-card .icon-wrap {
  color: #fff;
}
.section-feature-bar .feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

.timeline-section {
  background-color: #151A52;
}
.timeline-section .section-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-left: none !important;
  padding-left: 0 !important;
}
.timeline-section .section-label::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #fff;
}
.timeline-section .col-intro {
  border-right: 1.5px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}
@media (max-width: 991.98px) {
  .timeline-section .col-intro {
    border-right: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
    padding-right: 0;
    padding-bottom: 25px;
    margin-bottom: 15px;
  }
}
.timeline-section .timeline-intro-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #EF6C00 !important;
  font-weight: 500;
}
.timeline-section .timeline-cards-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.timeline-section .timeline-cards-wrapper::-webkit-scrollbar {
  height: 6px;
}
.timeline-section .timeline-cards-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.timeline-section .timeline-cards-wrapper::-webkit-scrollbar-thumb {
  background: rgba(239, 108, 0, 0.35);
  border-radius: 10px;
}
.timeline-section .timeline-cards-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 108, 0, 0.6);
}
.timeline-section .timeline-card {
  background-color: transparent !important;
  border: none !important;
  border-right: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding-right: 30px !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc((100% - 60px) / 2.5) !important;
  min-height: 400px;
}
@media (max-width: 991.98px) {
  .timeline-section .timeline-card {
    width: calc((100% - 30px) / 1.3) !important;
    padding-right: 20px !important;
    border-right: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    min-height: auto;
  }
}
.timeline-section .timeline-card:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}
.timeline-section .timeline-card .year-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #fff !important;
}
.timeline-section .timeline-card .timeline-subheading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #EF6C00 !important;
  margin-bottom: 20px;
}
.timeline-section .timeline-card .timeline-list li {
  line-height: 1.65;
  font-size: 13px;
  color: #fff !important;
  opacity: 0.95;
  margin-bottom: 12px;
}
.timeline-section .btn-selanjutnya, .timeline-section .btn-sebelumnya {
  font-weight: 700;
  font-size: 14px;
  color: #fff !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.timeline-section .btn-selanjutnya:hover, .timeline-section .btn-sebelumnya:hover {
  color: #EF6C00 !important;
}

.publications-section {
  background-color: #fff !important;
}
.publications-section .warta-card {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.publications-section .warta-card .warta-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.publications-section .warta-card .warta-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.publications-section .warta-card .warta-content {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
}
.publications-section .warta-card .warta-content .category-tag {
  margin-bottom: 12px;
}
.publications-section .warta-card .warta-content .category-tag span {
  color: #EF6C00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #EF6C00;
  padding-bottom: 2px;
  display: inline-block;
}
.publications-section .warta-card .warta-content .warta-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff !important;
  margin-top: 5px;
}
.publications-section .warta-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
}
.publications-section .warta-card:hover .warta-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.publications-section .warta-card:hover .warta-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.publications-section .slider-controls-wrap .slider-nav-btn {
  background: transparent;
  border: none;
  color: #1C236B;
  font-size: 18px;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.publications-section .slider-controls-wrap .slider-nav-btn:hover {
  color: #EF6C00;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.publications-section .slider-controls-wrap .slider-nav-btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.publications-section .slider-controls-wrap .slider-pagination-dots {
  position: static !important;
  width: auto !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.publications-section .slider-controls-wrap .slider-pagination-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #1C236B;
  background: transparent;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 !important;
}
.publications-section .slider-controls-wrap .slider-pagination-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1C236B;
  border-color: #1C236B;
  border-radius: 3px;
  width: 12px;
  height: 12px;
}

.videos-section {
  background-color: #fff !important;
}
.videos-section .video-card {
  height: 260px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.videos-section .video-card .video-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.videos-section .video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.videos-section .video-card .video-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #333 !important;
  z-index: 2;
}
.videos-section .video-card .video-play-icon {
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.videos-section .video-card .video-play-icon i {
  font-size: 55px;
  color: #EF6C00;
  -webkit-filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.videos-section .video-card:hover .video-img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.videos-section .video-card:hover .video-play-icon {
  -webkit-transform: translate(-50%, -50%) scale(1.12);
          transform: translate(-50%, -50%) scale(1.12);
}

.member-locations-section {
  background-color: #fff !important;
  color: #000;
}
.member-locations-section .tab-btn {
  font-size: 16px;
  letter-spacing: 0.5px;
  background: transparent !important;
  color: #1C236B !important;
  font-weight: 700;
  border-radius: 0;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  padding: 4px 12px !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.member-locations-section .tab-btn.active {
  color: #EF6C00 !important;
  border-bottom: 3px solid #EF6C00 !important;
}
.member-locations-section .tab-btn:hover:not(.active) {
  color: #EF6C00 !important;
  opacity: 0.85;
}
.member-locations-section .map-img {
  max-height: 420px;
  -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
}
.member-locations-section .member-info-panel {
  border-color: rgba(0, 0, 0, 0.4) !important;
}
@media (max-width: 991.98px) {
  .member-locations-section .member-info-panel {
    border-left: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
    padding-top: 2rem !important;
  }
}
.member-locations-section .member-info-panel .member-name {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.member-locations-section .member-info-panel .member-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.member-locations-section .member-info-panel .member-stats-list {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  text-align: left;
}
.member-locations-section .member-info-panel .info-block {
  text-align: left;
}
.member-locations-section .member-info-panel .info-block h6 {
  font-size: 13px;
  font-weight: 700;
  color: #000 !important;
  letter-spacing: 0.5px;
}
.member-locations-section .member-info-panel .info-block p {
  color: #444;
  font-size: 13.5px;
  line-height: 1.6;
}

.volunteer-cta-section {
  background-color: #fff;
}
.volunteer-cta-section .volunteer-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.volunteer-cta-section .volunteer-cta-card .cta-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.volunteer-cta-section .volunteer-cta-card .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 48, 0.65);
  z-index: 2;
}
.volunteer-cta-section .volunteer-cta-card .cta-content {
  position: relative;
  z-index: 3;
  padding: 50px 30px;
  max-width: 860px;
  margin: 0 auto;
}
.volunteer-cta-section .volunteer-cta-card .cta-content .cta-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff !important;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .volunteer-cta-section .volunteer-cta-card .cta-content .cta-heading {
    font-size: 24px;
  }
}
.volunteer-cta-section .btn-join-volunteer {
  background-color: #1C236B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  display: inline-block;
}
.volunteer-cta-section .btn-join-volunteer:hover {
  background-color: rgb(19.5377777778, 24.4222222222, 74.6622222222);
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.volunteer-cta-section .btn-join-volunteer:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.stats-section {
  background-color: #EF6C00 !important;
}
.stats-section .stat-box .stat-icon {
  color: #fff;
  opacity: 0.9;
}
.stats-section .stat-box .stat-value {
  font-size: 36px;
  color: #fff;
}
.stats-section .stat-box .stat-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.supporters-section {
  background-color: #fff;
}
.supporters-section .supporters-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.supporters-section .supporters-swiper .swiper-slide {
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.supporters-section .supporters-img {
  max-height: 55px;
  width: auto;
  opacity: 0.85;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.supporters-section .supporters-img:hover {
  opacity: 1;
}

.contact-testimonial-section {
  background-color: #1C236B;
}
.contact-testimonial-section .contact-card, .contact-testimonial-section .testimonial-card {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: none !important;
}
.contact-testimonial-section .contact-card .form-control, .contact-testimonial-section .testimonial-card .form-control {
  background: transparent;
  color: #333;
  border-bottom: 1.5px solid #CBD5E1 !important;
  font-size: 14px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-testimonial-section .contact-card .form-control:focus, .contact-testimonial-section .testimonial-card .form-control:focus {
  border-color: #EF6C00 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-testimonial-section .contact-card p, .contact-testimonial-section .testimonial-card p {
  font-size: 13.5px;
  line-height: 1.65;
}
.contact-testimonial-section .testimonial-card .testimonial-swiper {
  height: 650px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-testimonial-section .testimonial-card .testimonial-swiper {
    height: 800px;
  }
}
.contact-testimonial-section .testimonial-card .testimonial-swiper .swiper-slide {
  height: auto !important;
}
.contact-testimonial-section .testimonial-card .testi-item {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-testimonial-section .testimonial-card .testi-item:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.contact-testimonial-section .testimonial-card .testi-item img {
  border: 1.5px solid #E2E8F0;
}
.contact-testimonial-section .testimonial-card .testi-item h5 {
  font-size: 16px;
  color: #1C236B !important;
  font-weight: 700;
}
.contact-testimonial-section .testimonial-card .testi-item span {
  font-size: 12px;
  font-weight: 500;
}
.contact-testimonial-section .testimonial-card .testi-item p {
  font-size: 13px;
  color: #4A5568 !important;
  line-height: 1.6;
}

.footer-permampu {
  background-color: #D9DCF9;
  border-top: none;
}
.footer-permampu .footer-avatars-row img {
  width: 56px !important;
  height: 56px !important;
  border: 3px solid #8F5C0C !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
}
.footer-permampu .footer-avatars-row img:hover {
  -webkit-transform: scale(1.15) translateY(-2px);
          transform: scale(1.15) translateY(-2px);
  border-color: #EF6C00 !important;
  z-index: 10;
}
.footer-permampu .footer-social-links a {
  color: #1C236B !important;
  font-weight: 600;
  font-size: 13px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-permampu .footer-social-links a .social-icon-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1C236B;
  color: #fff;
  font-size: 10px;
  margin-right: 8px;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer-permampu .footer-social-links a:hover {
  color: #EF6C00 !important;
}
.footer-permampu .footer-social-links a:hover .social-icon-wrapper {
  background-color: #EF6C00;
  color: #fff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* --- Programs Page Styling --- */
.programs-page .programs-hero {
  background-color: #1C236B;
  padding-top: 30px; /* space for header */
  padding-bottom: 75px;
}
@media (max-width: 991px) {
  .programs-page .programs-hero {
    padding-top: 100px;
  }
}
.programs-page .news-sidebar-card {
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.programs-page .news-sidebar-item {
  border-bottom: 1.5px solid #F1F5F9;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.programs-page .news-sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.programs-page .news-sidebar-item img {
  width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.programs-page .news-sidebar-item h6 {
  font-size: 14.5px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.45;
  margin-bottom: 4px;
}
.programs-page .news-sidebar-item h6 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.programs-page .news-sidebar-item h6 a:hover {
  color: #EF6C00;
}
.programs-page .news-sidebar-item .date {
  font-size: 11px;
  color: #A0AEC0;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.programs-page .news-sidebar-item p {
  font-size: 12.5px;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 0;
}
.programs-page .programs-grid-section {
  background-color: #fff;
  padding: 85px 0;
}
.programs-page .program-card {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.programs-page .program-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.programs-page .program-card .card-img-wrap {
  height: 220px;
  overflow: hidden;
}
.programs-page .program-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.programs-page .program-card:hover .card-img-wrap img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.programs-page .program-card .card-body-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.programs-page .program-card .card-body-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 12px;
}
.programs-page .program-card .card-body-content p {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bottom-testimonial-section {
  background-color: #fff;
  padding-bottom: 90px;
}
.bottom-testimonial-section .testimonial-banner-card {
  background-color: #1C236B;
  border-radius: 24px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  color: #fff;
}
@media (max-width: 768px) {
  .bottom-testimonial-section .testimonial-banner-card {
    padding: 40px 30px;
  }
}
.bottom-testimonial-section .program-testimonial-swiper {
  height: 310px;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .bottom-testimonial-section .program-testimonial-swiper {
    height: 380px;
  }
}
.bottom-testimonial-section .program-testimonial-swiper .swiper-slide {
  height: 100%;
}
.bottom-testimonial-section .testimonial-quote-box {
  background-color: #151A52;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-testimonial-section .testimonial-quote-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 24px;
}
.bottom-testimonial-section .testimonial-quote-box .author {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-align: right;
}

/* --- Programs Detail Page Styling --- */
.programs-detail-page {
  background-color: #fff;
  padding-top: 30px; /* space for header */
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .programs-detail-page {
    padding-top: 100px;
  }
}
.programs-detail-page .back-link {
  font-size: 13px;
  color: #718096 !important;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.programs-detail-page .back-link:hover {
  color: #EF6C00 !important;
}
.programs-detail-page .back-link:hover span {
  background-color: #EF6C00 !important;
}
.programs-detail-page .detail-hero-title {
  color: #1C236B;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 1px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .programs-detail-page .detail-hero-title {
    font-size: 28px;
  }
}
.programs-detail-page .main-detail-img {
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.programs-detail-page .main-detail-img img {
  width: 100%;
  height: auto;
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
.programs-detail-page .detail-body-text h3 {
  color: #1C236B;
  font-weight: 700;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.programs-detail-page .detail-body-text p {
  color: #4A5568;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.programs-detail-page .detail-body-text ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.programs-detail-page .detail-body-text ul li {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.programs-detail-page .detail-body-text ul li strong {
  color: #1C236B;
}
.programs-detail-page .detail-sidebar .search-box {
  position: relative;
  margin-bottom: 40px;
}
.programs-detail-page .detail-sidebar .search-box input {
  width: 100%;
  padding: 14px 20px 14px 45px;
  border-radius: 12px;
  border: 1.5px solid #E2E8F0;
  font-size: 14px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.programs-detail-page .detail-sidebar .search-box input:focus {
  border-color: #1C236B;
}
.programs-detail-page .detail-sidebar .search-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A0AEC0;
  font-size: 14px;
}
.programs-detail-page .detail-sidebar .other-programs-section {
  margin-bottom: 45px;
}
.programs-detail-page .detail-sidebar .other-programs-section .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 24px;
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 10px;
}
.programs-detail-page .detail-sidebar .other-program-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDF2F7;
}
.programs-detail-page .detail-sidebar .other-program-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.programs-detail-page .detail-sidebar .other-program-item img {
  width: 110px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.programs-detail-page .detail-sidebar .other-program-item h6 {
  font-size: 14px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.4;
  margin-bottom: 4px;
}
.programs-detail-page .detail-sidebar .other-program-item p {
  font-size: 11px;
  color: #718096;
  line-height: 1.4;
  margin-bottom: 6px;
}
.programs-detail-page .detail-sidebar .other-program-item .view-details-btn {
  font-size: 11px;
  font-weight: 700;
  color: #1C236B !important;
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.programs-detail-page .detail-sidebar .other-program-item .view-details-btn:hover {
  color: #EF6C00 !important;
}
.programs-detail-page .detail-sidebar .newsletter-card {
  background-color: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}
.programs-detail-page .detail-sidebar .newsletter-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 6px;
}
.programs-detail-page .detail-sidebar .newsletter-card h6 {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
}
.programs-detail-page .detail-sidebar .newsletter-card .newsletter-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #E2E8F0;
}
.programs-detail-page .detail-sidebar .newsletter-card .newsletter-img img {
  width: 100%;
  height: auto;
}
.programs-detail-page .detail-sidebar .newsletter-card .form-label {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  margin-bottom: 8px;
}
.programs-detail-page .detail-sidebar .newsletter-card input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #E2E8F0;
  font-size: 13.5px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background-color: #F8FAFC;
}
.programs-detail-page .detail-sidebar .newsletter-card input:focus {
  border-color: #1C236B;
  background-color: #fff;
}

/* --- Leaflet Custom Map Marker Style --- */
.custom-map-marker {
  position: relative;
}
.custom-map-marker .marker-pin {
  width: 16px;
  height: 16px;
  background-color: #EF6C00;
  border: 2.5px solid #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  position: absolute;
  left: 7px;
  top: 7px;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.custom-map-marker .marker-pulse {
  width: 30px;
  height: 30px;
  background-color: rgba(239, 108, 0, 0.4);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: pulse-marker 1.8s infinite ease-out;
          animation: pulse-marker 1.8s infinite ease-out;
  z-index: 1;
}
.custom-map-marker:hover .marker-pin {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background-color: #1C236B;
}

@-webkit-keyframes pulse-marker {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-marker {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}
/* Fix Leaflet tooltip styling to match site theme */
.leaflet-tooltip {
  background-color: #1C236B !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 10px !important;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-tooltip-top:before {
  border-top-color: #1C236B !important;
}

/* --- About Us Page Styling --- */
.about-page {
  background-color: #fff;
}
.about-page .about-hero {
  padding-top: 30px; /* space for header */
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .about-page .about-hero {
    padding-top: 100px;
  }
}
.about-page .about-hero .tagline {
  font-size: 12.5px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page .about-hero .tagline span {
  width: 30px;
  height: 1.5px;
  background-color: #718096;
  display: inline-block;
}
.about-page .about-hero .hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #1C236B;
  line-height: 1.25;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .about-page .about-hero .hero-title {
    font-size: 30px;
  }
}
.about-page .about-hero .intro-text {
  font-size: 16px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.6;
  margin-bottom: 16px;
}
.about-page .about-hero .desc-text {
  font-size: 14.5px;
  color: #718096;
  line-height: 1.75;
}
.about-page .about-video-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-bottom: -70px; /* Overlaps into the dark section below */
  z-index: 5;
  aspect-ratio: 16/9;
}
.about-page .about-video-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-page .about-video-banner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.about-page .about-video-banner .play-btn-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  background-color: #fff;
  color: #1C236B;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
.about-page .about-video-banner .play-btn-overlay:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  background-color: #EF6C00;
  color: #fff;
}
.about-page .about-mv-banner {
  background-color: #1C236B;
  padding-top: 150px; /* Extra padding top because of video banner overlap */
  padding-bottom: 90px;
  color: #fff;
}
.about-page .about-mv-banner .mv-tagline {
  font-size: 12px;
  font-weight: 700;
  color: #EF6C00;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}
.about-page .about-mv-banner h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.about-page .about-mv-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 0;
}
.about-page .about-org-section {
  padding: 90px 0;
  background-color: #fff;
}
.about-page .about-org-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1C236B;
  margin-bottom: 40px;
}
.about-page .about-org-section .org-value-item {
  margin-bottom: 30px;
}
.about-page .about-org-section .org-value-item:last-child {
  margin-bottom: 0;
}
.about-page .about-org-section .org-value-item .icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #EF6C00;
  color: #fff;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 4px 10px rgba(239, 108, 0, 0.25);
          box-shadow: 0 4px 10px rgba(239, 108, 0, 0.25);
}
.about-page .about-org-section .org-value-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 8px;
}
.about-page .about-org-section .org-value-item p {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.65;
  margin-bottom: 0;
}
.about-page .about-org-section .side-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-page .about-org-section .side-photos img {
  width: calc(50% - 10px);
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 450px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about-page .about-org-section .side-photos img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 576px) {
  .about-page .about-org-section .side-photos img {
    height: 300px;
  }
}

/* --- Contact Us Page Styling --- */
.contact-us-page {
  background-color: #fff;
}
.contact-us-page .contact-hero {
  background-color: #1C236B;
  padding-top: 30px; /* space for header */
  padding-bottom: 120px;
  color: #fff;
}
@media (max-width: 991px) {
  .contact-us-page .contact-hero {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
.contact-us-page .contact-hero .tagline {
  font-size: 12.5px;
  font-weight: 700;
  color: #EF6C00;
  letter-spacing: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-us-page .contact-hero .tagline span {
  width: 30px;
  height: 1.5px;
  background-color: #EF6C00;
  display: inline-block;
}
.contact-us-page .contact-hero .hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .contact-us-page .contact-hero .hero-title {
    font-size: 32px;
  }
}
.contact-us-page .contact-hero .hero-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 450px;
}
.contact-us-page .contact-hero .info-label {
  font-size: 11px;
  font-weight: 700;
  color: #EF6C00;
  letter-spacing: 1px;
  text-uppercase: true;
  margin-bottom: 4px;
  display: block;
}
.contact-us-page .contact-hero .info-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}
.contact-us-page .contact-hero .info-value.address-val {
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.contact-us-page .contact-hero .hero-social-links a {
  color: #fff;
  font-size: 18px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-us-page .contact-hero .hero-social-links a:hover {
  color: #EF6C00;
}
.contact-us-page .contact-form-container-sec {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}
.contact-us-page .contact-grid-card {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.contact-us-page .contact-info-panel-black {
  background-color: #05060F;
  color: #fff;
  padding: 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .contact-us-page .contact-info-panel-black {
    padding: 35px;
  }
}
.contact-us-page .contact-info-panel-black h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.contact-us-page .contact-info-panel-black p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-us-page .contact-info-panel-black .contact-item-row {
  margin-bottom: 24px;
}
.contact-us-page .contact-info-panel-black .contact-item-row:last-of-type {
  margin-bottom: 40px;
}
.contact-us-page .contact-info-panel-black .contact-item-row i {
  color: #EF6C00;
  font-size: 18px;
  width: 24px;
}
.contact-us-page .contact-info-panel-black .contact-item-row span {
  font-size: 14px;
  font-weight: 500;
}
.contact-us-page .contact-info-panel-black .panel-social-links a {
  color: #fff;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-us-page .contact-info-panel-black .panel-social-links a:hover {
  color: #EF6C00;
}
.contact-us-page .contact-form-panel-white {
  padding: 50px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .contact-us-page .contact-form-panel-white {
    padding: 35px;
  }
}
.contact-us-page .contact-form-panel-white .form-group-wrap {
  margin-bottom: 24px;
}
.contact-us-page .contact-form-panel-white label {
  font-size: 12px;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 8px;
  display: block;
}
.contact-us-page .contact-form-panel-white input, .contact-us-page .contact-form-panel-white textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #E2E8F0;
  font-size: 13.5px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background-color: #F8FAFC;
}
.contact-us-page .contact-form-panel-white input:focus, .contact-us-page .contact-form-panel-white textarea:focus {
  border-color: #1C236B;
  background-color: #fff;
}
.contact-us-page .contact-form-panel-white textarea {
  resize: none;
  height: 120px;
}
.contact-us-page .crop-field-banner {
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 90px;
}
.contact-us-page .crop-field-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.contact-us-page .faq-section-wrap {
  padding-bottom: 90px;
}
.contact-us-page .faq-section-wrap .faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #1C236B;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contact-us-page .faq-section-wrap .faq-title {
    font-size: 28px;
  }
}
.contact-us-page .faq-section-wrap .faq-desc {
  font-size: 14.5px;
  color: #718096;
  line-height: 1.6;
}
.contact-us-page .faq-section-wrap .faq-accordion-item {
  border-bottom: 1.5px solid #EDF2F7;
  padding: 24px 0;
}
.contact-us-page .faq-section-wrap .faq-accordion-item:first-child {
  border-top: 1.5px solid #EDF2F7;
}
.contact-us-page .faq-section-wrap .faq-accordion-item .faq-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  outline: none;
  color: #1C236B;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-us-page .faq-section-wrap .faq-accordion-item .faq-header-btn:hover {
  color: #EF6C00;
}
.contact-us-page .faq-section-wrap .faq-accordion-item .faq-header-btn .toggle-icon-circle {
  width: 32px;
  height: 32px;
  border: 1.5px solid #CBD5E1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: #64748B;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-us-page .faq-section-wrap .faq-accordion-item .faq-collapse-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.contact-us-page .faq-section-wrap .faq-accordion-item .faq-collapse-body p {
  font-size: 13.5px;
  color: #4A5568;
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 0;
}
.contact-us-page .faq-section-wrap .faq-accordion-item.active .faq-header-btn {
  color: #EF6C00;
}
.contact-us-page .faq-section-wrap .faq-accordion-item.active .faq-header-btn .toggle-icon-circle {
  background-color: #EF6C00;
  border-color: #EF6C00;
  color: #fff;
}
.contact-us-page .faq-section-wrap .faq-accordion-item.active .faq-collapse-body {
  max-height: 200px;
}

/* --- News Listing & Detail Page Styling --- */
.news-page {
  background-color: #fff;
}
.news-page .news-hero {
  background-color: #1C236B;
  padding-top: 30px;
  padding-bottom: 70px;
  color: #fff;
}
@media (max-width: 991px) {
  .news-page .news-hero {
    padding-top: 100px;
  }
}
.news-page .news-hero .tagline {
  font-size: 12px;
  font-weight: 700;
  color: #EF6C00;
  letter-spacing: 1px;
}
.news-page .news-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .news-page .news-hero h1 {
    font-size: 28px;
  }
}
.news-page .news-grid-section {
  padding: 80px 0;
}
.news-page .blog-card {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #F1F5F9;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-page .blog-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.news-page .blog-card .blog-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.news-page .blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.news-page .blog-card .blog-img-wrap .cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #EF6C00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}
.news-page .blog-card:hover .blog-img-wrap img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.news-page .blog-card .blog-body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.news-page .blog-card .blog-body .blog-date {
  font-size: 12px;
  color: #A0AEC0;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.news-page .blog-card .blog-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-page .blog-card .blog-body h4 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-page .blog-card .blog-body h4 a:hover {
  color: #EF6C00;
}
.news-page .blog-card .blog-body p {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.news-page .blog-card .blog-body .read-more-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #EF6C00;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-page .blog-card .blog-body .read-more-link:hover {
  color: #1C236B;
}
.news-page .pagination-wrap .page-link {
  border: 1.5px solid #E2E8F0;
  color: #1C236B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  margin: 0 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-page .pagination-wrap .page-link:hover {
  background-color: #1C236B;
  border-color: #1C236B;
  color: #fff;
}
.news-page .pagination-wrap .page-item.active .page-link {
  background-color: #EF6C00;
  border-color: #EF6C00;
  color: #fff;
}

.news-detail-page {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .news-detail-page {
    padding-top: 100px;
  }
}
.news-detail-page .back-link {
  font-size: 13px;
  color: #718096 !important;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-detail-page .back-link:hover {
  color: #EF6C00 !important;
}
.news-detail-page .back-link:hover span {
  background-color: #EF6C00 !important;
}
.news-detail-page .detail-category-row {
  margin-bottom: 12px;
}
.news-detail-page .detail-category-row .cat-lbl {
  font-weight: 700;
  color: #EF6C00;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-detail-page .detail-category-row .date-lbl {
  color: #A0AEC0;
  font-size: 12px;
  font-weight: 600;
}
.news-detail-page .news-title {
  font-size: 38px;
  font-weight: 800;
  color: #1C236B;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-detail-page .news-title {
    font-size: 28px;
  }
}
.news-detail-page .main-news-img {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.news-detail-page .main-news-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail-page .news-body-text {
  padding-top: 30px;
}
.news-detail-page .news-body-text p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.75;
  margin-bottom: 24px;
}
.news-detail-page .news-body-text blockquote {
  background-color: #F8FAFC;
  border-left: 4px solid #EF6C00;
  padding: 24px 30px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}
.news-detail-page .news-body-text blockquote p {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: #1C236B;
  line-height: 1.6;
  margin-bottom: 8px;
}
.news-detail-page .news-body-text blockquote cite {
  font-size: 13px;
  color: #718096;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-detail-page .detail-sidebar .widget-box {
  background-color: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
}
.news-detail-page .detail-sidebar .widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 24px;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 10px;
}
.news-detail-page .detail-sidebar .recent-news-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDF2F7;
}
.news-detail-page .detail-sidebar .recent-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.news-detail-page .detail-sidebar .recent-news-item img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.news-detail-page .detail-sidebar .recent-news-item h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-detail-page .detail-sidebar .recent-news-item h6 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-detail-page .detail-sidebar .recent-news-item h6 a:hover {
  color: #EF6C00;
}
.news-detail-page .detail-sidebar .recent-news-item .date {
  font-size: 11px;
  color: #A0AEC0;
  font-weight: 600;
}

/* --- Publications Listing & Detail Page Styling --- */
.publications-page {
  background-color: #fff;
}
.publications-page .pub-hero {
  background-color: #1C236B;
  padding-top: 30px;
  padding-bottom: 70px;
  color: #fff;
}
@media (max-width: 991px) {
  .publications-page .pub-hero {
    padding-top: 100px;
  }
}
.publications-page .pub-hero .tagline {
  font-size: 12px;
  font-weight: 700;
  color: #EF6C00;
  letter-spacing: 1px;
}
.publications-page .pub-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .publications-page .pub-hero h1 {
    font-size: 28px;
  }
}
.publications-page .pub-grid-section {
  padding: 80px 0;
}
.publications-page .doc-card {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #F1F5F9;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.publications-page .doc-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.publications-page .doc-card .doc-cover-wrap {
  background-color: #F8FAFC;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1.5px solid #F1F5F9;
  height: 240px;
}
.publications-page .doc-card .doc-cover-wrap img {
  max-height: 180px;
  width: auto;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.publications-page .doc-card:hover .doc-cover-wrap img {
  -webkit-transform: scale(1.05) rotate(1deg);
          transform: scale(1.05) rotate(1deg);
}
.publications-page .doc-card .doc-body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.publications-page .doc-card .doc-body .doc-meta {
  font-size: 11.5px;
  color: #A0AEC0;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.publications-page .doc-card .doc-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1C236B;
  line-height: 1.45;
  margin-bottom: 10px;
}
.publications-page .doc-card .doc-body h4 a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.publications-page .doc-card .doc-body h4 a:hover {
  color: #EF6C00;
}
.publications-page .doc-card .doc-body p {
  font-size: 13px;
  color: #718096;
  line-height: 1.55;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.publications-page .doc-card .doc-body .doc-action-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.publications-page .doc-card .doc-body .doc-action-btns .btn-download {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
}
.publications-page .doc-card .doc-body .doc-action-btns .btn-details {
  font-size: 12px;
  font-weight: 700;
  color: #718096 !important;
  text-decoration: underline;
}
.publications-page .doc-card .doc-body .doc-action-btns .btn-details:hover {
  color: #EF6C00 !important;
}

.publications-detail-page {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .publications-detail-page {
    padding-top: 100px;
  }
}
.publications-detail-page .back-link {
  font-size: 13px;
  color: #718096 !important;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.publications-detail-page .back-link:hover {
  color: #EF6C00 !important;
}
.publications-detail-page .back-link:hover span {
  background-color: #EF6C00 !important;
}
.publications-detail-page .doc-sidebar-box {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px;
  text-center: center;
}
.publications-detail-page .doc-sidebar-box .detail-cover {
  max-height: 300px;
  width: auto;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.publications-detail-page .doc-sidebar-box .meta-table {
  width: 100%;
  margin-bottom: 30px;
}
.publications-detail-page .doc-sidebar-box .meta-table tr {
  border-bottom: 1px solid #E2E8F0;
}
.publications-detail-page .doc-sidebar-box .meta-table tr:last-child {
  border-bottom: none;
}
.publications-detail-page .doc-sidebar-box .meta-table td {
  padding: 12px 0;
  font-size: 13.5px;
}
.publications-detail-page .doc-sidebar-box .meta-table td.label-td {
  color: #718096;
  font-weight: 600;
}
.publications-detail-page .doc-sidebar-box .meta-table td.value-td {
  color: #1C236B;
  font-weight: 700;
  text-align: right;
}
.publications-detail-page .pub-detail-title {
  font-size: 32px;
  font-weight: 800;
  color: #1C236B;
  line-height: 1.35;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .publications-detail-page .pub-detail-title {
    font-size: 24px;
  }
}
.publications-detail-page .abstract-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1C236B;
  margin-bottom: 16px;
}
.publications-detail-page .abstract-box p {
  font-size: 14.5px;
  color: #4A5568;
  line-height: 1.75;
  margin-bottom: 24px;
}
.publications-detail-page .abstract-box ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.publications-detail-page .abstract-box ul li {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.65;
  margin-bottom: 12px;
}